summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'aa_to_mp3.sh')
-rwxr-xr-xaa_to_mp3.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/aa_to_mp3.sh b/aa_to_mp3.sh
new file mode 100755
index 0000000..c11f0fa
--- /dev/null
+++ b/aa_to_mp3.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+for file in $@; do
+ ffmpeg -i "$file" -codec copy "$(basename "$file" .aa).mp3"
+done