Reputation: 11331
I am asking for some pointers or guidance on how to implement the video recording feature that vine and Instagram use on Android.
That is, when user tap and hold, the video start recording. When user release, the video recording pause, but when user tap and hold again, the video will continue recording until it reaches a limit of X second.
Thank you
Upvotes: 4
Views: 2836
Reputation: 2885
I received same task several days ago. I would like to share my thoughts with you, I think You could record several files (MediaRecorder.start() / MediaRecorder.stop() will produce several video files) and combine them in one. For combine process MP4Parser looks nice.
Hope it helped you ;)
Upvotes: 4