Skip to content

Instantly share code, notes, and snippets.

@tamimibrahim17
Created February 24, 2018 17:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamimibrahim17/491ed245285335121f01d36a4dcc953c to your computer and use it in GitHub Desktop.
Save tamimibrahim17/491ed245285335121f01d36a4dcc953c to your computer and use it in GitHub Desktop.
Convert webm to mp3
FILE="the-file-location.webm"
ffmpeg -i "${FILE}" -vn -ab 128k -ar 44100 -y "${FILE%.webm}.mp3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment