I took a look at Default ffmpeg codec when nothing is specified. I see that the default codec is likely libx264
for video. Is this the same answer for using an FFMPEG command to make a JPG?
If it's libx264
, what would be a good alternative codec to generate an image? I took a look at https://johnvansickle.com/ffmpeg/git-readme.txt, and I can't seem to find anything on what those codecs do. For example, searching libzimg
just comes up with pages of people enabling it in a long list of options. https://ffmpeg.org/ffmpeg-codecs.html has no mention of zimg
.
My current command is ffmpeg -loglevel quiet -report -timelimit 9 -timeout 9 -i www.example.com/manifest -vframes 1 output.jpg -y
. I want to make sure I know what codec is being used when doing this.
I'm using https://johnvansickle.com/ffmpeg/git-readme.txt, which has mjpeg
listed. I just want to be sure that this would be the default, when nothing is specified. (I can specify things going forward, but want to know what would have been used before).