This commit is contained in:
Lorenzo Pistone 2019-02-14 17:55:29 +01:00
parent 124c08cfb8
commit 99f61a7e85
1 changed files with 0 additions and 1 deletions

View File

@ -25,7 +25,6 @@ The script `tag_ogg` in the source tree can be used to automatically add the tra
Use `oggify` with the `tag_ogg` helper script as described above, then convert with ffmpeg:
```
for ogg in *.ogg; do
dest=$(sed 's/ogg$/mp3/' <<< "$ogg")
ffmpeg -i "$ogg" -map_metadata 0:s:0 -id3v2_version 3 -codec:a libmp3lame -qscale:a 2 "$(basename "$ogg" .ogg).mp3"
done
```