[vimeo:likes] Support large like lists (Fixes #3847)

This commit is contained in:
Philipp Hagemeister 2014-09-29 00:36:06 +02:00
parent d2e32f7df5
commit 9c44d2429b
4 changed files with 89 additions and 29 deletions

View file

@ -26,7 +26,7 @@ from ..utils import (
get_element_by_attribute,
ExtractorError,
int_or_none,
PagedList,
OnDemandPagedList,
unescapeHTML,
unified_strdate,
orderedSet,
@ -1341,7 +1341,7 @@ class YoutubeUserIE(InfoExtractor):
'id': video_id,
'title': title,
}
url_results = PagedList(download_page, self._GDATA_PAGE_SIZE)
url_results = OnDemandPagedList(download_page, self._GDATA_PAGE_SIZE)
return self.playlist_result(url_results, playlist_title=username)