Skip to content

Instantly share code, notes, and snippets.

@mstevenson
Created June 12, 2016 21:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mstevenson/2c57fa4839bdfc5f23d98e0325ad047f to your computer and use it in GitHub Desktop.
Save mstevenson/2c57fa4839bdfc5f23d98e0325ad047f to your computer and use it in GitHub Desktop.
Convert Ogg to MP3 with ffmpeg
for name in *.ogg; do ffmpeg -i "$name" -ab 128k -map_metadata 0:s:0 "${name/.ogg/.mp3}"; done;
@aslmx
Copy link

aslmx commented Mar 24, 2022

works also fine for converting *.wav to *.mp3
👍

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment