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 2019.03.01. 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?
If the purpose of this issue is a bug report, site support request or you are not completely sure provide the full verbose output as follows:
Description of your issue, suggested solution and other information
By default, the FFmpeg metadata postprocessing assumes that if a "track" is defined for a video (in this case a YouTube video), then the "track" will be used as the title instead of "title".
This behavior is defined here: https://github.com/rg3/youtube-dl/blob/398e1e21d6cbf6eb1e8e7e84de4fad30b7d59613/youtube_dl/postprocessor/ffmpeg.py#L450
This is problematic for videos such as https://www.youtube.com/watch?v=J9J6WmbKfD8 where "track" is provided by YouTube's ContentID, whereas the true video title is more meaningful.
An option should be added to at least select the title source for metadata embedding. Something similar to
-oas suggested in #17027 would be ideal.