new (stubs of) scripts/ updated scripts

This commit is contained in:
2023-01-18 22:34:00 +01:00
parent 4ac6ee989c
commit 418ecb2f3f
5 changed files with 35 additions and 0 deletions

7
scripts/reencode_audio.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
for file in ./*.$1; 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