Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
mp3 tagging doesn't work as one might expect #21785
Comments
|
Output template is a template for downloaded file. Never hardcode ext for it. |
It would be nice if this would be better explained in the manfile. |
Checklist
Description
If you run
youtube-dl --extract-audio --audio-format mp3 "https://youtu.be/Sqk3B2041uk" --output test.mp3
id3v2 -t "cooltitle" -a "coolartist" test.mp3
and open the resulting test.mp3 file using rythmbox, rythmbox doesn't know that the titel is "cooltitle" and that the artist is "coolartist".
But if you run
youtube-dl --extract-audio --audio-format mp3 "https://youtu.be/Sqk3B2041uk" --output "test.%(ext)s"
id3v2 -t "cooltitle" -a "coolartist" test.mp3
instead it works.
I think it is very unintuitive that the first version doesn't work. It would be nice if that would change, because I don't want other people to write the first one and then ask themselves for hours why this doesn't work.