Created
February 19, 2016 07:15
-
-
Save alasin/a258e8517ad4fcd973db to your computer and use it in GitHub Desktop.
FFmpeg useful conversions
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
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