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?