aboutsummaryrefslogtreecommitdiffstats
path: root/unix/m4a_to_mp3.sh
diff options
context:
space:
mode:
Diffstat (limited to 'unix/m4a_to_mp3.sh')
-rwxr-xr-xunix/m4a_to_mp3.sh8
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
-