Skip to content

Instantly share code, notes, and snippets.

@ibaaj
Created May 11, 2016 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ibaaj/98ca2eaa3fac2feea769591e0d8a6acc to your computer and use it in GitHub Desktop.
Save ibaaj/98ca2eaa3fac2feea769591e0d8a6acc to your computer and use it in GitHub Desktop.
oldmovie avec MLT framework
#!/bin/zsh
len=30
x=""
for i in *.mp4
do
x="$x $i -mix $len -mixer luma "
done
x="melt$x -filter greyscale -filter oldfilm -consumer avformat:fade_$(date +%s).mp4 vcodec=libx264 b=5000k acodec=aac ab=70k"
eval $x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment