How to screen record with Genymotion SaaS (Cloud)?

Last updated: 5 months ago.

With the screen capture widget

The screen capture widget is available from the device display.

By command line

The adb shell screenrecord command records the device screen.

Steps

1. Install and configure gmsaas CLI.

2. Connect the device to adb using gmsaas.

3. Use the adb shell screenrecord [--time-limit] <DESTINATION> command.

Example

For example, to record your screen to /sdcard/Download/screenrec.mp4:

adb shell screenrecord /sdcard/Download/screenrec.mp4

Note

The default recording time limit is 180 seconds (3 minutes). This can be changed with the --time-limit option. Maximum value is 86400 (24 hours). For example, to record the screen for 5 minutes (300 seconds):

adb shell screenrecord --time-limit 300 /sdcard/test5min.mp4

Was this article helpful?

Need more help?

Request Technical Support

Related articles