| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-11-08 22:04:44 +0100 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-11-08 22:04:44 +0100 |
| commit | 77c5d0d8749d676d04340a783f4a76a4cb012959 (patch) | |
| tree | c3e47f80752efe1d537276d9b4fa9ce4b786ab99 | |
Adds the AA to MP3 script.
| -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 |


