Android視訊錄製命令screenrecord
你要知道:
- screenrecord是一個shell命令
- 支援Android4.4(API level 19)以上
- 支援視訊格式: mp4
一些限制
- 某些裝置可能無法直接錄製,原因是解析度太高,如果遇到此類問題,請試著指定較低的解析度
- 不支援錄製過程中螢幕旋轉,如果錄製過程中旋轉,有可能畫面被切斷
- 錄製視訊的時候聲音不會被錄下來
開始錄製命令:
adb shell screenrecord /sdcard/demo.mp4
說明:錄製手機螢幕,視訊格式為mp4,存放到手機sd卡里,預設錄製時間為180s
限制錄製時間:
引數: --time-limit
adb shell screenrecord --time-limit 10 /sdcard/demo.mp4
說明:限制視訊錄製時間為10s,如果不限制,預設180s
指定視訊解析度大小:
引數: --size
adb shell screenrecord --size 1280*720 /sdcard/demo.mp4
說明:錄製視訊,解析度為1280*720,如果不指定預設使用手機的解析度,為獲得最佳效果,請使用裝置上的高階視訊編碼(AVC)支援的大小
指定視訊的位元率
引數: --bit-rate
adb shell screenrecord --bit-rate 6000000 /sdcard/demo.mp4
說明:指定視訊的位元率為6Mbps,如果不指定,預設為4Mbps. 你可以增加位元率以提高視訊質量或為了讓檔案更小而降低位元率
在命令列顯示log
引數: --verbose
bixiaopeng@bixiaopeng wirelessqa$ adb shell screenrecord --time-limit 10 --verbose /sdcard/demo.mp4
Main display is 1080x1920 @60.00fps (orientation=0)
Configuring recorder for 1080x1920 video at 4.00Mbps
Content area is 1080x1920 at offset x=0 y=0
Time limit reached
Encoder stopping; recorded 96 frames in 10 seconds
Stopping encoder and muxer
Executing: /system/bin/am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE -d file:///sdcard/demo.mp4
Broadcasting: Intent { act=android.intent.action.MEDIA_SCANNER_SCAN_FILE dat=file:///sdcard/demo.mp4 }
Broadcast completed: result=0
旋轉90度
引數: --rotate
說明:此功能為實驗性的,好不好用不知道
檢視幫助命令
引數: --help
bixiaopeng@bixiaopeng ~$ adb shell screenrecord --help
Usage: screenrecord [options] <filename>
Records the device's display to a .mp4 file.
Options:
--size WIDTHxHEIGHT
Set the video size, e.g. "1280x720". Default is the device's main
display resolution (if supported), 1280x720 if not. For best results,
use a size supported by the AVC encoder.
--bit-rate RATE
Set the video bit rate, in megabits per second. Default 4Mbps.
--time-limit TIME
Set the maximum recording time, in seconds. Default / maximum is 180.
--rotate
Rotate the output 90 degrees.
--verbose
Display interesting information on stdout.
--help
Show this message.
Recording continues until Ctrl-C is hit or the time limit is reached.
匯出視訊:
adb pull /sdcard/demo.mp4
相關文章
- [Android]Android視訊錄製命令screenrecordAndroid
- Android擴充系列(9)--Android視訊錄製screenrecord命令Android
- ffmpeg命令錄製windows音視訊Windows
- Android音視訊之MediaRecorder音視訊錄製Android
- Android錄製視訊的全面屏適配Android
- 【秒懂音視訊開發】19_視訊錄製01_命令列命令列
- Android 音視訊錄製硬編碼實現Android
- iOS開發:音訊播放、錄音、視訊播放、拍照、視訊錄製iOS音訊
- android短視訊錄製與頭像跟隨(一)Android
- Linux下錄製視訊Linux
- Android WebView 實現檔案選擇、拍照、錄製視訊、錄音AndroidWebView
- iOS開發系列--音訊播放、錄音、視訊播放、拍照、視訊錄製(轉)iOS音訊
- Chrome 新功能 - 錄製小視訊Chrome
- Camera2錄製視訊(一):音訊的錄製及編碼音訊
- Android切換前後置攝像頭並錄製視訊Android
- 收藏一個《視訊錄製的教程》
- px30-android8.1-USB攝像頭錄製視訊異常Android
- 利用Android Studio截圖和錄製視訊並轉為gifAndroid
- 安卓手機怎麼錄製直播視訊安卓
- iOS ARKit錄製視訊(AVAssetWriter & 有聲音)iOS
- iOS開發 AVFoundation 自定義視訊錄製iOS
- WPF下的視訊錄製介面設計
- 音訊錄製及視覺化處理音訊視覺化
- 【秒懂音視訊開發】08_音訊錄製音訊
- 自定義相機採集及視訊編輯(1)-短視訊錄製
- 在伺服器端錄製語音視訊伺服器
- Android音訊處理知識(一)MediaRecorder錄製音訊Android音訊
- Android短視訊中如何實現720P磨皮美顏錄製?Android
- 聲網多人視訊錄製與合成支援掉線再錄製 | 掘金技術徵文
- Linux下使用"avconv"捕捉錄製桌面視訊及音訊Linux音訊
- iOS 三種錄製視訊方式詳細對比iOS
- 音訊錄製:三星電腦如何錄製音訊?音訊
- 電腦錄音工具有什麼,怎麼錄製電視音訊?音訊
- 怎麼錄製電腦螢幕視訊?好用的錄屏方法分享
- iOS採集錄製音視訊API選擇推薦iOSAPI
- Replaykit2(IOS11+)視訊錄製詳解iOS
- WebRTC網頁開啟攝像頭並錄製視訊Web網頁
- 如何實現在服務端錄製視訊會議?服務端