diff options
author | Aaron LI <aly@aaronly.me> | 2017-11-03 18:31:03 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-11-03 18:31:03 +0800 |
commit | bc87a53a283d7dec8c52cccf4689fb2d9765a277 (patch) | |
tree | 8a859562087f2999f901cce4eced0827c4a2b944 /unix/m4a_to_mp3.sh | |
parent | b50463d171ade46f549c5331e8ad317b410ac0f2 (diff) | |
download | atoolbox-bc87a53a283d7dec8c52cccf4689fb2d9765a277.tar.bz2 |
Move several scripts from unix/ to cli/
Diffstat (limited to 'unix/m4a_to_mp3.sh')
-rwxr-xr-x | unix/m4a_to_mp3.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/unix/m4a_to_mp3.sh b/unix/m4a_to_mp3.sh deleted file mode 100755 index 5d06cd9..0000000 --- a/unix/m4a_to_mp3.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -bitrate=192 - -for i in *.m4a; do - faad -o - "$i" | lame -h -b $bitrate - "${i%m4a}mp3" -done - |