Created
December 26, 2018 09:34
-
-
Save sk22/354318b610a5fe79890d2bd992e9a51f to your computer and use it in GitHub Desktop.
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
| // Linux: | |
| clear; for f in *.flac; do ffmpeg -y -i "$f" -acodec libmp3lame -ab 320k "${f%.flac}.mp3"; done | |
| // Windows: | |
| forfiles /c "ffmpeg -y -i @file -map_metadata 0 -id3v2_version 3 -ab 320k @fname.mp3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment