2
I'm trying to convert a set of .PNG files and a .WAV file into an Ogg Vorbis video using ffmpeg on Windows 7. When I run "ffmpeg -codecs" I can see libvorbis listed, but when I try to use it in a command:
ffmpeg.exe -f image2 -r 1 -i "dir\%04d.png" -i "dir\audio.wav" -vcodec libvorbis -r 25 out.ogv
I get the error:
Invalid encoder type 'libvorbis'
Wow, the .mp4 file is 10.2MB. The same data in .ogv is 87.6MB. – parsley72 – 2014-07-12T22:23:20.237
Ah, removing the "-r 25" brings it down to 16.4MB. – parsley72 – 2014-07-12T22:31:08.110
The file size depends on the quality too. You have to experiment with that. – slhck – 2014-07-13T11:09:57.870