Skip to content

Commit

Permalink
YouTube playlist fix; closes #365 and #331
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed Jun 30, 2012
1 parent 65dc7d0 commit d4e16d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified youtube-dl
Binary file not shown.
Binary file modified youtube-dl.exe
Binary file not shown.
6 changes: 3 additions & 3 deletions youtube_dl/InfoExtractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ def __init__(self, downloader=None):
InfoExtractor.__init__(self, downloader)

def report_download_page(self, query, pagenum):
"""Report attempt to download playlist page with given number."""
"""Report attempt to download search page with given number."""
query = query.decode(preferredencoding())
self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))

Expand Down Expand Up @@ -1468,8 +1468,8 @@ class YoutubePlaylistIE(InfoExtractor):

_VALID_URL = r'(?:https?://)?(?:\w+\.)?youtube\.com/(?:(?:course|view_play_list|my_playlists|artist|playlist)\?.*?(p|a|list)=|user/.*?/user/|p/|user/.*?#[pg]/c/)(?:PL)?([0-9A-Za-z-_]+)(?:/.*?/([0-9A-Za-z_-]+))?.*'
_TEMPLATE_URL = 'http://www.youtube.com/%s?%s=%s&page=%s&gl=US&hl=en'
_VIDEO_INDICATOR_TEMPLATE = r'/watch\?v=(.+?)&list=PL%s&'
_MORE_PAGES_INDICATOR = r'(?m)>\s*Next\s*</a>'
_VIDEO_INDICATOR_TEMPLATE = r'/watch\?v=(.+?)&amp;list=(PL)?%s&'
_MORE_PAGES_INDICATOR = r'yt-uix-pager-next'
IE_NAME = u'youtube:playlist'

def __init__(self, downloader=None):
Expand Down

0 comments on commit d4e16d3

Please sign in to comment.