ffmpeg -i IMG_9353.JPG -pix_fmt yuv420p -y qqq.y4m
x264 qqq.y4m --preset placebo --tune stillimage --crf 33 -o qqq.mkv

How to extract the picture now? qqq.mkv is non-empty, size depends on "crf" option, but all players (mplayer -vo pnm, ffmpeg -i qqq.mkv -y qqq.ppm, vlc) consider the video as empty and does not show anything at all (not produce any output files).

link|improve this question

64% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Gstreamer works in this case

gst-launch filesrc location=qqq.mkv ! decodebin ! pnmenc  ! multifilesink location=r.ppm

If it fails, freezes or fails to produce files with "pnmenc" you can use "pngenc", "y4menc", "jpegenc" and other image codecs for saving.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.