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

前端 未结 6 737
天命终不由人
天命终不由人 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条回答
  •  -上瘾入骨i
    2021-01-31 04:48

    Actually, MediaStore.EXTRA_DURATION_LIMIT provide time in seconds, NOT in miliseconds! So you just need to change your value from 60000 to 60 ;) Android Documentation

提交回复
热议问题