Trim, Crop, Mirror and Flip videos with Footage
Trim, Crop, Mirror and Flip videos with Footage
www.omglinux.com New App to Trim, Crop, Mirror & Flip Videos on Linux - OMG! Linux
A new app available from Flathub makes it easy to edit short videos on Linux. The GTK4/libadwaita app Footage is not a fully-fledged video editor but it
3
comments
Trim
ffmpeg -ss [start] -to [stop] -i in.mp4 -c copy out.mp4
Crop
ffmpeg -i in.mp4 -vf "crop=out_w:out_h:x:y" out.mp4
Mirror
ffmpeg -i in.mp4 -vf vflip -c:a copy out.mp4
Rotate
ffmpeg -i in.mp4 -vf "transpose=1" out.mp4
... Not gonna lie - its nice to also have a GUI for this!
11ReplyPermanently Deleted
5ReplyNice! I was looking for something like this the other day. Also great that it's available on Flathub.
Who are these people downvoting these posts? 😆
4ReplyBut can it rotate?
1Reply