Is it possible to set a maximum time allowed for android recording using intent?

前端 未结 6 735
天命终不由人
天命终不由人 2021-01-31 03:44

I am using the android.provider.MediaStore.ACTION_VIDEO_CAPTURE. I was wondering if there is a way to change the maximum time allowed per recording. I TRIED ADDING

6条回答
  •  孤街浪徒
    2021-01-31 04:27

    For 30 seconds time, try this code.

    intent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 30);
    

提交回复
热议问题