I use the ACTION_VIDEO_CAPTURE intent to capture videos with the default Camera app. But the slow motion button gets disabled (gray) when the app open. Yet, it works perfectly when I launch manually the app.
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
takeVideoIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(mediaFile));
takeVideoIntent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
takeVideoIntent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, TIME_CAPTURE);
startActivityForResult(takeVideoIntent, REQUEST_VIDEO_CAPTURE);
I tested it on Galaxy S4. How could I activate the slow motion button? Does anyone have been able to call the default camera app with the slow motion activated?
Thanks :)