如何在Android HTC WildFire S中添加视频录制限制?

时间:2012-09-19 12:22:48

标签: android android-camera

使用以下代码我设置视频录制限制,但它不起作用?

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进行编码。

来自Docs

0 个答案:

没有答案