How can I limit recording when using intents?
I tried this code:
Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE); intent.putExtra(\"android
you should be try with MediaRecorder mRecorder = new MediaRecorder(); and mRecorder.setMaxDuration(5000) // 5 seconds;