Merge pull request #887 from anisse/master

Fetch all entries that are in a youtube playlist

Also add a test.
This commit is contained in:
Jaime Marquínez Ferrándiz 2013-06-19 12:51:26 +02:00
commit 213b715893
2 changed files with 7 additions and 1 deletions

View file

@ -1576,7 +1576,7 @@ class YoutubePlaylistIE(InfoExtractor):
|
((?:PL|EC|UU)[0-9A-Za-z-_]{10,})
)"""
_TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json'
_TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json&safeSearch=none'
_MAX_RESULTS = 50
IE_NAME = u'youtube:playlist'