8 lines
197 B
Bash
8 lines
197 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
for file in ./*.mp3; do
|
||
|
echo "ffmpeg -i '$file' -c:a copy -map 0:0 '../reencode/$file'";
|
||
|
ffmpeg -i "$file" -c:a copy -map 0:0 "../reencode/$file";
|
||
|
done
|