user3171796
user3171796

Reputation: 215

How to increase time duration of taking a video of Android Studio

I would like to know how to increase time duration of taking a video of Android Studio? I developed application and would like to explain the function using the video but it's only 3 mins to take a video as default and it's not enough to me. please kindly advice me.

Upvotes: 10

Views: 3618

Answers (1)

Andrew Gable
Andrew Gable

Reputation: 2752

Android Studio's screen record and screen recording via command line using adb seems to have a maximum limit of three minutes.

Here is the adb screen record documention which states --time-limit Sets the maximum recording time, in seconds. The default and maximum value is 180 (3 minutes).

You might want to look at recording two separate videos, then putting them together in a Video Editing program.

Upvotes: 6

Related Questions