A seekable one-frame FLV video (with audio)?
Posted
by
George Stephanos
on Super User
See other posts from Super User
or by George Stephanos
Published on 2011-06-09T00:35:02Z
Indexed on
2012/06/19
9:19 UTC
Read the original article
Hit count: 234
ffmpeg
Is it possible to generate an FLV out of an MP3 and a JPG, without uselessly looping the image and still be able to seek the audio ?
This command generates a non-seekable video:
ffmpeg -y -i audio.mp3 -i image.jpg -r 1 -acodec copy video.flv
and this one generates a seekable one, but with uselessly looping the image occupying both space and time:
ffmpeg -y -loop_input -i audio.mp3 -i image.jpg -r 1 -acodec copy video.flv -shortest
© Super User or respective owner