I'm using ffmpeg in android to crop video. To do it I use command:
ffmpeg -i movie.mp4 -vf "crop=640:256:0:400" -strict -2 YourCroppedMovie.mp4
My problem is that it is incredible slow. Cropping 10sec movie taking some about 30sec. Is there any way to speed it up?
Ok try to make the change to your command like this:
ffmpeg -i movie.mp4 -vf "crop=640:256:0:400" -threads 5 -preset ultrafast -strict -2 YourCroppedMovie.mp4
I tried this and reduce execution time from 46 secs to 4 secs. It's too fast now... :-)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With