Karthi
Karthi

Reputation: 13752

Android Video recording with controls?

I need to capture the video with standard controls , at present i can capture the video using mediarecorder, I need a timer to show duration of video recording and some standard control to record video. Is there any other class is available?

Upvotes: 0

Views: 485

Answers (1)

Zelimir
Zelimir

Reputation: 11028

Standard approach to record video in Android is to use Intent MediaStore.ACTION_VIDEO_CAPTURE. You get timer and controls like when you start standard video capture. The only additional option is that you can accept or reject recorded video, since recorded video info is returned back via Intent result (so you can also conclude if user canceled video recording).

Upvotes: 1

Related Questions