linux convert mp3 to ogg
# single file
ffmpeg -i input.mp3 -c:a libvorbis -q:a 4 output.ogg
# whole directory
for f in ./*.mp3; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f/%mp3/ogg}"; done
linux convert mp3 to ogg
# single file
ffmpeg -i input.mp3 -c:a libvorbis -q:a 4 output.ogg
# whole directory
for f in ./*.mp3; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f/%mp3/ogg}"; done
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us