I have tried recording a video for only 1 min with Titanium in Android using this function:
var intent = Titanium.Android.create Intent({action : 'android.media.action.VIDEO_CAPTURE'})
and I've set duration limit with intent.putExtra("android.intent.extra.durationLimit", 10000)
like in core android, but this property is not working in Titanium.So how can I set video recording duration in Titanium???
Thanks
You are doing the right thing.. You are just missing that
takes seconds, not mili-seconds.
Therefore it should be