前幾天看到秋百萬一篇關於對手機屏幕進行錄製並製做成gif文件的文章,深受啓發。本身決定進行總結,加深理解,也方便之後查看和使用。html
// 錄製默認分辨率,默認4Mbps,時間爲180s的MP4視頻,而且保存到sdcard上 1. adb shell screenrecord /sdcard/yourFileName.mp4 // 將該MP4文件保存到PC上 2. adb pull /sdcard/yourFileName.mp4 ~/mp4File/
方法: 使用screenrecord
命令錄製好mp4視頻後,將mp4導出到pc上播放,再用GifGrabber進行錄屏。這時候就能夠獲得你想要的gif文件了。android
方法: 使用screenrecord
命令錄製好mp4視頻後,將mp4導出到ezgif.com轉換成gif文件。git
使用這種方式須要注意
screenrecord
命令只支持Android4.4以上系統,關於screenrecord更詳細介紹,請戳這裏http://developer.android.com/intl/zh-cn/tools/help/shell.html#screenrecordgithub
使用這種方式能直接導出gif文件web
可在mac上對Android手機和智能手錶進行一鍵截屏、錄製視頻和安裝APK等操做。chrome
Android系統上最好用的屏幕錄製軟件無需Root,支持Android5.0以上系統。猜想這個應用的核心也是執行screenrecord
命令。shell
使用這種方式這裏獲得是mp4文件,按照上面的方法轉成gif文件便可app
秋百萬: http://www.liaohuqiu.net/posts/make-gif-for-android-app/
qiujuer: http://blog.csdn.net/qiujuer/article/details/42506741post