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

前端 未结 6 747
天命终不由人
天命终不由人 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:25

    Here's a Kotlin update to launch ACTION_VIDEO_CAPTURE Intent with EXTRA_DURATION_LIMIT set to 60 seconds. As for putExtra(MediaStore.EXTRA_DURATION_LIMIT, 60) is taking in seconds as the value for the duration limit.

    val recordVideoIntent = Intent(MediaStore.ACTION_VIDEO_CAPTURE)
    
    recordVideoIntent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 60)
    startActivityForResult(recordVideoIntent, INTENT_VIDEO_RECORD_REQUEST)
    

提交回复
热议问题