Reputation: 637
I am used developing the app videos uploading for 10sec thats way i cut the video for 10sec.I do lot of research but getting any proper result.please tell me anyone .This is most important for me.If u want to give the solution most favourable for me. Is there any default video editing feature in android. Advance thanks to all
Upvotes: 1
Views: 2971
Reputation: 2452
Recently i had same problem and did some research about that. I found 2 solutions
First one is easier but have limitations. If you're using mp4 files you can try mp4Parser. I manage to trim videos pretty easy from the trimming videos example.
Second one is very flexible but much harder to use. If are in need give it a try and use FFmpeg library. I believe it is written in c or c++ so you need to use NDK to compile it and force it to run on Android. There are plenty of tutorials (for example from roman10) how to do so. Notice that people sugest to do it on linux because its much more easier than on Windows. (I didn't manage to compile it on Windows).
Upvotes: 1