a914-gowtham / android-video-trimmer

Helps to trim local videos with compress option on Android applications using Exoplayer 2 and FFmpeg.
Other
372 stars 117 forks source link

How to trim video without showing range selection? #25

Closed surajpunemaha closed 3 years ago

surajpunemaha commented 3 years ago

I want to trim video without providing UI for range selection. Is it possible? if yes how?

a914-gowtham commented 3 years ago

Sorry, you can't do that. it makes no sense to this trimming lib. you can only hide the controller seek bar by using the below snippet. or else you could pull the code and make changes for your requirement.

TrimVideo.activity(String.valueOf(videoUri))
          .setHideSeekBar(true)
          .start(this);