LoginSignup
3
5

【Android】adbコマンドによる端末の動画キャプチャとPCへのダウンロード

Last updated at Posted at 2017-07-22

adbコマンドによるAndroid端末の動画キャプチャの手順

次の手順を順に行う

1.USBケーブルでPCとスマホを接続する

2.動画キャプチャを開始するために、次のコマンドを実行する。

adb shell screenrecord --bit-rate 500000 --size 720×1280 /sdcard/cap.mp4

3.動画のキャプチャを停止する

Ctrl + c

4.スマホに保存された動画ファイルをPCにダウンロードするために、次のコマンドを実行する

adb pull /sdcard/cap.mp4 ~/Desktop
3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5