Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #linux #convert #ogg
ADD COMMENT
Topic
Name
1+7 =