| summaryrefslogtreecommitdiff |
diff options
| -rwxr-xr-x | aa_to_mp3.sh | 4 |
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 |


