Unable to set minimum video length on Android

I used the code below to set a minimum video recording duration, but it does not work. I tested it on Android 2.2 and Android 2.3.3.

intent.putExtra("android.intent.extra.durationLimit", 60); 

What is the right way to do this?

+4
source share
1 answer

I use

target.putExtra (MediaStore.EXTRA_DURATION_LIMIT, 60);

0
source

Source: https://habr.com/ru/post/1388303/


All Articles