To get this branch, use:
bzr branch
http://gegoxaren.bato24.eu/bzr/useful/trunk-1
1
by Gustav Hartvigsson
Inital code.
|
1
|
#!/usr/bin/env bash
|
2
|
|
3
|
# Convert Audiobooks (mp3) to Opus with cover-art preserved.
|
4
|
|
5
|
for i in *.mp3; do
|
6
|
name=`echo "$i" | cut -d'.' -f1`
|
7
|
echo "$name"
|
8
|
ffmpeg -i "$i" -f flac - | opusenc - "${name}.opus"
|
9
|
done
|