You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
303 B
Bash
5 lines
303 B
Bash
#!/bin/dash
|
|
# Convert directories and subdirectories from other audio formats to opus
|
|
# Public domain, you probably couldn't even copyright a script this short
|
|
find ./ -type f \( -iname \*.flac -o -iname \*.mp3 -o -iname \*.ogg \) -exec sh -c 'i="{}"; ffmpeg -y -i "$i" "${i%.*}.opus" && rm -f "$i"' \;
|