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.
Checklist
Description
When downloading videos from a YouTube playlist, there's no way to pick out the unlisted ones. Looking at youtube-dl's JSON output, there seems to be no indicator that a video is unlisted. There seems to be no indicator for private videos either, although I haven't tested this.
Adding a "visibility" entry or something similar to the JSON output would solve this. I imagine the possible values would be
"visibility": "public","visibility": "unlisted", and"visibility": "private".Adding an option to filter downloads by visibility would also be nice, i.e.
--visibility privateor--visibility public,unlisted.