zombietextures/sounds/flactoogg.sh
zombie 1bb78ec558
added button01 and commentary sounds
hazardcourse was mildly changed, not really relavent in this commit
2023-10-01 20:51:56 -04:00

8 lines
162 B
Bash

#!/bin/bash
find . -type f -name '*.flac' -exec bash -c '
for file; do
ffmpeg -i "$file" -c:a libvorbis -b:a 128k "${file%.flac}.ogg";
done
' bash {} +