Created
November 7, 2016 07:54
-
-
Save trickart/2ecd5d401acbd2ea05491b5a91ff5590 to your computer and use it in GitHub Desktop.
small script for convert music file to mp3 using ffmpeg
This file contains hidden or 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
#!/bin/bash | |
echo $1 | |
echo ${1%.*} | |
ffmpeg -i "$1" -map_metadata 0 -acodec libmp3lame -f mp3 "${1%.*}".mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment