How to convert MP3 to OGG audio format.
ffmpeg -i in.mp3 -ar 48000 -vn -c:a libvorbis out.ogg |
If you have sample rate errors, use -vn.
cloud engineer
How to convert MP3 to OGG audio format.
ffmpeg -i in.mp3 -ar 48000 -vn -c:a libvorbis out.ogg |
ffmpeg -i in.mp3 -ar 48000 -vn -c:a libvorbis out.ogg
If you have sample rate errors, use -vn.