Adb screenrecord command not working on my android tv

I have an Android TV with Android 5.0.2. I am trying to use the screenrecord command from adb commands but it never starts recording, it just generates an empty mp4 file.

As you can see in the picture, I am using this command correctly with the default, but it keeps "Configuring" for a few minutes. I tried resizing it to a smaller size like 1280x720 but it didn't change anything.

cmd using the screenrecord command.

+3


source to share


1 answer


Have you tried running screenrecord in a root shell?

adb shell
su
screenrecord --verbose --time-limit 25 /sdcard/video.mp4

      



or

adb root
adb shell
screenrecord --verbose --time-limit 25 /sdcard/video.mp4

      

0


source







All Articles