I have an .ogg file (containing speech) with 192kbps quality that i'd like to reduce to 32kbps (to save space)
How can i do this?
So far i've tried this:
ffmpeg -i filename.ogg -ab 32k -f ogg new-filename.ogg
But i get this error:
[libvorbis @ 0x56157365ab60] encoder setup failed
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!
Am i using the wrong command? Is there a better approach i can take to save space? Please note that i only have access to the 192kbps file (not the original)
Grateful for help!