From 99f61a7e85da09143eaf3a9e886e15a0b6842f68 Mon Sep 17 00:00:00 2001 From: Lorenzo Pistone Date: Thu, 14 Feb 2019 17:55:29 +0100 Subject: [PATCH] cleanup --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2825e4a..db8a6ed 100644 --- a/README.md +++ b/README.md @@ -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 ```