Skip to content

Instantly share code, notes, and snippets.

@alasin
Created February 19, 2016 07:15
Show Gist options
  • Save alasin/a258e8517ad4fcd973db to your computer and use it in GitHub Desktop.
Save alasin/a258e8517ad4fcd973db to your computer and use it in GitHub Desktop.
FFmpeg useful conversions
JPG -> YUV
ffmpeg -i test-640x480.jpg -s 640x480 -pix_fmt yuv420p test-yuv420p.yuv
YUV -> JPG
ffmpeg -s 640x480 -pix_fmt yuv420p -i test-yuv420p.yuv test-640x480.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment