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.
Use PagedList in YoutubeFeedsInfoExtractor #10184
Comments
|
The current implementation downloads the whole playlist and then fetch the first 20 videos. It's possible and should be just download the first few pages. |
|
+1 for this one! |
$ youtube-dl --netrc :ytsubs --playlist-end 20 --verbose
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'--netrc', u':ytsubs', u'--playlist-end', u'20', u'--verbose']
[debug] Encodings: locale UTF-8, fs UTF-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2016.07.26.2
[debug] Python version 2.7.6 - Linux-3.16.0-38-generic-x86_64-with-LinuxMint-17.2-rafaela
[debug] Proxy map: {}
[youtube:subscriptions] Downloading login page
[youtube:subscriptions] Logging in
[youtube:subscriptions] Youtube Subscriptions: Downloading webpage
[youtube:subscriptions] Youtube Subscriptions: Downloading page #1
[youtube:subscriptions] Youtube Subscriptions: Downloading page #2
and it just keeps going on ...
what am i doing wrong?!