FFMpeg video transpose -
i have movie rotated 90, 180 or 270 degrees. process video , make , save processed copy in place. problem in processed move rotation not included e.g. input video ratated 180 degrees output video not rotated @ all. here commad:
ffmpeg -i movie.mp4 -vf crop=480:480:80:0 -strict -2 testmovie.mp4
how can apply rotation input movie output movie.
running these 2 produce file out2.mp4
rotated 90 degrees, , cropped afterwards. different result?
ffmpeg -i in.mp4 -vf "transpose=1" out1.mp4 ffmpeg -i out1.mp4 -vf "crop=480:480:80:0" out2.mp4
Comments
Post a Comment