Last active
June 3, 2025 17:56
-
-
Save kerma/c52e93eef3b3e50d7237 to your computer and use it in GitHub Desktop.
Revisions
-
kerma revised this gist
Feb 16, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ # on os x use brew to get ffmpeg with libfdk_aac brew install ffmpeg --with-fdk-aac # convert and use m4a as file extension find . -name '*.flac' -exec sh -c 'ffmpeg -i "$1" -c:a libfdk_aac -b:a 320k "${1%.flac}.m4a"' _ {} \; -
kerma revised this gist
Feb 16, 2016 . No changes.There are no files selected for viewing
-
kerma created this gist
Feb 16, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # on os x use brew to get ffmpeg with libfdk_aac brew install ffmpeg --with-fdk-aac # convert and use m4a as filename prefix find . -name '*.flac' -exec sh -c 'ffmpeg -i "$1" -c:a libfdk_aac -b:a 320k "${1%.flac}.m4a"' _ {} \;