Last active
December 5, 2016 04:19
-
-
Save alexhemard/48dccff8fb70d99f1b19 to your computer and use it in GitHub Desktop.
convert all flac files in a folder to mp3
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
for f in *.flac; do ffmpeg -i "$f" -acodec libmp3lame -ab 320k "${f%.flac}.mp3"; done |
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 | |
for f in *.7z; do 7za e "$f" -o"${f%.7z}"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment