Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android studio 3.0 recording video is not working

I trying to record video on my emulator. I can see the record option in logcat tab and it records but the file saved is not in mp4 and it do not open. How to fix this issue? I am trying on emulator. Is there any restriction on the resolution for recording video

like image 588
png Avatar asked Oct 29 '22 23:10

png


1 Answers

Try command line

Start recording:

adb shell screenrecord /sdcard/video.mp4

Stop Recording Ctrl-C

Save on PC

adb pull /sdcard/video.mp4 video.mp4
like image 110
tsik Avatar answered Nov 11 '22 12:11

tsik