使用下面的代码我设置了视频录制的限制,但它不能工作?
My Device version is 2.3.3.(Higher than API-8)
我想补充limit 60 seconds.
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE);
cameraIntent.putExtra(android.provider.MediaStore.EXTRA_DURATION_LIMIT,60);
//OR cameraIntent.putExtra("android.intent.extra.durationLimit",60);
startActivityForResult(cameraIntent,TAKE_VIDEO);
是否有任何使用隐式意图的解决方案?或者我必须使用 Camera 和 SurfaceView For Limit 进行编码。
来自文档