Last active
September 23, 2018 08:44
-
-
Save hotwatermorning/b41ac4a9ddd0b05bc2e9f2ce7b104966 to your computer and use it in GitHub Desktop.
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
# 指定したディレクトリ直下にあるaifファイルをmp3に変換 | |
if [ $# -ne 1 ]; then | |
echo "need a directory." | |
echo "usage $0 <target_dir>" | |
exit 1 | |
fi | |
echo "Target Dir : $1" | |
find "$1" -name "*.aif" -maxdepth 1 -print0 | while IFS= read -r -d '' file; do | |
echo "Fullpath: $file" | |
base=`basename "$file" | sed -e 's/\.aif//g'` | |
parent=`basename "\`dirname \"$file\"\`"` | |
mkdir -p "$parent" | |
/usr/local/bin/ffmpeg -i "$file" -f mp3 -b:a 320k "$parent/$base.mp3" < /dev/null | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment