Created
October 4, 2020 09:35
-
-
Save lucidbeaming/405cd6de545214d976edcf5b3f2708be to your computer and use it in GitHub Desktop.
FFMPEG commands to shuffle and glitch time in videos
This file contains hidden or 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
ffmpeg -i inputfile.mov -vf "frei0r=nervous" -c:a aac -b:a 192k -c:v libx264 -crf 20 -pix_fmt yuv420p -preset ultrafast outputfile.mov | |
ffmpeg -i inputfile.mov -vf "random=frames=5" -c:a aac -b:a 192k -c:v libx264 -crf 20 -pix_fmt yuv420p -preset ultrafast outputfile.mov | |
ffmpeg -i inputfile.mov -vf "shuffleframes=9 2 1 3 4 4 6 7 5 0 8" -c:a aac -b:a 192k -c:v libx264 -crf 20 -pix_fmt yuv420p -preset ultrafast outputfile.mov |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment