>>49690
Yeah, those 4 work fine because they have always been .webms.
>>49528 these are the one that caused me problems.
>>49528
Okay, if anyone is interested in this: For .png and .jpg you have to add -loop 1 in front of -i pic.png
>ffmpeg -i audio.ogg -loop 1 -i pic.png -c:a copy output.webm
For .gif you have to use -stream_loop -1 the same way with -shortest together. But then you will run into the issue of the .gif finish playing with some dead air at the end. The solution is probably to use setpts for .gifs aswell.
>ffmpeg -i audio.ogg -stream_loop -1 -i pic.png -c:a copy -shortest output.webm
I don't think there are many .gif soundposts so I will probably test this tomorrow