Reputation: 1669
I want to trim a video in android while its playing using a seek bar where user can select the duration (for example : video trim in AndroVid android app).
Is it possible to implement it using Android's video view?
I am also using FFMPEG, so once user selects the duration, i can trim using FFMPEG code. But any pointers on how this can be done on UI like AndroiVid is appreciated.
Upvotes: 3
Views: 2465
Reputation: 2870
It is possible, in Android you can implement a RangeSeekBar with the start and end of your video trim
Upvotes: 2