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.
Make sure you are using the latest version: run
youtube-dl --versionand ensure your version is 2016.11.02. If it's not read this FAQ entry and update. Issues with outdated version will be rejected.Before submitting an issue make sure you have:
What is the purpose of your issue?
Description of your issue, suggested solution and other information
If i download music with the following command, no metadata is saved:
youtube-dl -x --audio-format "mp3" --audio-quality 0 -o "/Music/%(uploader)s/%(title)s.%(ext)s" --metadata-from-title "%(artist)s - %(title)s" --add-metadata https://www.youtube.com/watch?v=0sjR0-EG3BMThe problem is, that for
--audio-quality 0the initial container is allways.webmwhich can't contain metadata. Therefor the converted.mp3also doesn't contain metadata.A workaround is to add the following command:
--format "bestaudio[ext=m4a]"Then the metadata is saved correct in the
.m4afile and therefor in the converted.mp3file.Searching for this problem i found multiple issues with the same or a similar problem:
Therefor i want to raise awareness to this bug and the workaround.
There is a issue with the same problem: #9730
There seems to be a fix but since 09.06.2016 there wasn't any activity. Was this bug forgotten?