How to limit audio recording time using Intent?

前端 未结 4 1206
青春惊慌失措
青春惊慌失措 2021-02-19 00:47

How can I limit recording when using intents?

I tried this code:

 Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
 intent.putExtra(\"android         


        
4条回答
  •  我寻月下人不归
    2021-02-19 01:46

    you should be try with MediaRecorder mRecorder = new MediaRecorder(); and mRecorder.setMaxDuration(5000) // 5 seconds;

提交回复
热议问题