If you have android 4.4+ device you can record screen of the device using android sdk on your pc.! :good:
The screenrecord command is a shell utility for recording the display of devices running Android 4.4 (API level 19) and higher. The utility records screen activity to an MPEG-4 file, which you can then download and use as part of a video presentation. This utility is useful for developers who want to create promotional or training videos without using a separate recording device.
Before I dive into how to record the screen of your Android device, you need to know the way to use this feature is through the Android Debug Bridge (ADB) [which is in ANDROID SDK you can see further details in Video]
OK, Launch into the command line with your Android 4.4 device connected to your computer(USB DEBUGGING ENABLED) and enter the command to record your screen:
adb shell screenrecord /sdcard/video.mp4
You can further customize the bitrate at which it captures video, the duration it records (the default duration is 3-minutes).
Another example of a command to record a video would be :
adb shell screenrecord --bit-rate 7000000 --time-limit 25 /sdcard/video2.mp4
The above command would record at 7Mbps, instead of the default 4Mbps, for a duration of 25-seconds and save it to the SD Card on your device with the name of video2.mp4 . You can find a full list of commands for screenrecord here on the Android Developer Site.
You can watch the video for complete Guide of tutorial : :good: https://www.youtube.com/watch?v=20h7Kms57So
The screenrecord command is a shell utility for recording the display of devices running Android 4.4 (API level 19) and higher. The utility records screen activity to an MPEG-4 file, which you can then download and use as part of a video presentation. This utility is useful for developers who want to create promotional or training videos without using a separate recording device.
Before I dive into how to record the screen of your Android device, you need to know the way to use this feature is through the Android Debug Bridge (ADB) [which is in ANDROID SDK you can see further details in Video]
OK, Launch into the command line with your Android 4.4 device connected to your computer(USB DEBUGGING ENABLED) and enter the command to record your screen:
adb shell screenrecord /sdcard/video.mp4
You can further customize the bitrate at which it captures video, the duration it records (the default duration is 3-minutes).
Another example of a command to record a video would be :
adb shell screenrecord --bit-rate 7000000 --time-limit 25 /sdcard/video2.mp4
The above command would record at 7Mbps, instead of the default 4Mbps, for a duration of 25-seconds and save it to the SD Card on your device with the name of video2.mp4 . You can find a full list of commands for screenrecord here on the Android Developer Site.
You can watch the video for complete Guide of tutorial : :good: https://www.youtube.com/watch?v=20h7Kms57So