Last active
August 29, 2015 13:57
-
-
Save madeingnecca/9545101 to your computer and use it in GitHub Desktop.
MULTIMEDIA - video utils
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Crop video file via ffmpeg | |
ffmpeg -i in.mp4 -filter:v "crop=out_w:out_h:x:y" out.mp4 | |
# Crop video file via ffmpeg2theora | |
ffmpeg2theora in.mp4 --cropright 6 | |
# Video with image background (NOT TESTED) | |
http://stackoverflow.com/questions/7340149/how-do-i-make-a-video-with-a-static-image-background-in-ffmpeg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment