a914-gowtham / android-video-trimmer

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

Question about set timer #103

Open drewness9999 opened 4 months ago

drewness9999 commented 4 months ago

I was able to import but what if your trying to do a set duration (similar to whatsapp stories). 10 second minimum and a 90 second maximum?

Any ideas?

imageedit_1_9179818240

a914-gowtham commented 4 months ago
// TrimType.MIN_MAX_DURATION
TrimVideo.activity(videoUri)
          .setTrimType(TrimType.MIN_MAX_DURATION)
          .setMinToMax(10, 90)  //seconds
          .start(this,startForResult);

@drewness9999 You can use this

drewness9999 commented 4 months ago

Thanks it works