Created
February 24, 2018 17:27
-
-
Save tamimibrahim17/491ed245285335121f01d36a4dcc953c to your computer and use it in GitHub Desktop.
Convert webm to mp3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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