ADB screenrecord command not found

前端 未结 4 1118
栀梦
栀梦 2021-02-15 08:16

I am unable to run adb shell screenrecord /sdcard/my.mp4

Device specification that i am trying to run this command:

  • Honor 5C
  • Android
4条回答
  •  南笙
    南笙 (楼主)
    2021-02-15 08:31

    You need to undestand whe does adb shell screenrecord /sdcard/my.mp4 mean. It means execution "screenrecord" command in your phone's shell. You could do the same by installing any terminal emulator on your phone, run it and type (on phone) screenrecord /sdcard/my.mp4

    You are getting "command not found" error, it means there is no "screenrecord" command available. Most devices should have it included, but it seems your device have it missing.

提交回复
热议问题