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.
What is the purpose of your issue?
Description of your issue, suggested solution and other information
when running youtube-dl, i usually want to make sure to have as much (meta)data available locally as i would have if i used the video page online; thus, my typical command line arguments are
--all-subs --write-description --write-info-json --write-annotations --write-all-thumbnails. (no--all-formatsfor that is not likely to contain any information that can't to a reasonable approximation be obtained from the best format; under the same argument,--write-thumbnailmight be the better choice here.)even if i were sure that i'm not missing a feature (i did miss
--all-subsfor some time), such an invocation is not future-proof against new metadata extraction features (eg. if at some point there'll be a--write-user-comments). would you consider adding a--mirroror similar flag that enables a sane set of "i want to be able to run a mirror of this if the site goes down" flags like there is for wget?