Skip to content

Instantly share code, notes, and snippets.

@thibthibaut
Last active March 1, 2022 15:10
Show Gist options
  • Save thibthibaut/66ef881ad3f4f6b54cbcfd85e5aa6a0e to your computer and use it in GitHub Desktop.
Save thibthibaut/66ef881ad3f4f6b54cbcfd85e5aa6a0e to your computer and use it in GitHub Desktop.

Display raw data

/bin/cat *.data | ffplay -f rawvideo -pix_fmt rgb24 -s 640x480 -framerate 1 -i -  

Remove sound with FFMPEG

find *.mp4 | xargs -I '{}' ffmpeg -i '{}' -c copy -an ns_'{}'

Create a video/gif from a sequence of pictures

ffmpeg -i "%03d.png" -vf fps=20,scale=720:-1 logo.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment