mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[twitch] Add support for bookmarks
This commit is contained in:
parent
0920e5830f
commit
c2e64f71d0
2 changed files with 37 additions and 5 deletions
|
@ -467,6 +467,7 @@
|
||||||
TwitchVodIE,
|
TwitchVodIE,
|
||||||
TwitchProfileIE,
|
TwitchProfileIE,
|
||||||
TwitchPastBroadcastsIE,
|
TwitchPastBroadcastsIE,
|
||||||
|
TwitchBookmarksIE,
|
||||||
TwitchStreamIE,
|
TwitchStreamIE,
|
||||||
)
|
)
|
||||||
from .ubu import UbuIE
|
from .ubu import UbuIE
|
||||||
|
|
|
@ -220,12 +220,18 @@ def _extract_playlist(self, channel_id):
|
||||||
response = self._download_json(
|
response = self._download_json(
|
||||||
self._PLAYLIST_URL % (channel_id, offset, limit),
|
self._PLAYLIST_URL % (channel_id, offset, limit),
|
||||||
channel_id, 'Downloading %s videos JSON page %d' % (self._PLAYLIST_TYPE, counter))
|
channel_id, 'Downloading %s videos JSON page %d' % (self._PLAYLIST_TYPE, counter))
|
||||||
videos = response['videos']
|
page_entries = self._extract_playlist_page(response)
|
||||||
if not videos:
|
if not page_entries:
|
||||||
break
|
break
|
||||||
entries.extend([self.url_result(video['url']) for video in videos])
|
entries.extend(page_entries)
|
||||||
offset += limit
|
offset += limit
|
||||||
return self.playlist_result(entries, channel_id, channel_name)
|
return self.playlist_result(
|
||||||
|
[self.url_result(entry) for entry in set(entries)],
|
||||||
|
channel_id, channel_name)
|
||||||
|
|
||||||
|
def _extract_playlist_page(self, response):
|
||||||
|
videos = response.get('videos')
|
||||||
|
return [video['url'] for video in videos] if videos else []
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
return self._extract_playlist(self._match_id(url))
|
return self._extract_playlist(self._match_id(url))
|
||||||
|
@ -262,6 +268,31 @@ class TwitchPastBroadcastsIE(TwitchPlaylistBaseIE):
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class TwitchBookmarksIE(TwitchPlaylistBaseIE):
|
||||||
|
IE_NAME = 'twitch:bookmarks'
|
||||||
|
_VALID_URL = r'%s/(?P<id>[^/]+)/profile/bookmarks/?(?:\#.*)?$' % TwitchBaseIE._VALID_URL_BASE
|
||||||
|
_PLAYLIST_URL = '%s/api/bookmark/?user=%%s&offset=%%d&limit=%%d' % TwitchBaseIE._API_BASE
|
||||||
|
_PLAYLIST_TYPE = 'bookmarks'
|
||||||
|
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://www.twitch.tv/ognos/profile/bookmarks',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'ognos',
|
||||||
|
'title': 'Ognos',
|
||||||
|
},
|
||||||
|
'playlist_mincount': 3,
|
||||||
|
}
|
||||||
|
|
||||||
|
def _extract_playlist_page(self, response):
|
||||||
|
entries = []
|
||||||
|
for bookmark in response.get('bookmarks', []):
|
||||||
|
video = bookmark.get('video')
|
||||||
|
if not video:
|
||||||
|
continue
|
||||||
|
entries.append(video['url'])
|
||||||
|
return entries
|
||||||
|
|
||||||
|
|
||||||
class TwitchStreamIE(TwitchBaseIE):
|
class TwitchStreamIE(TwitchBaseIE):
|
||||||
IE_NAME = 'twitch:stream'
|
IE_NAME = 'twitch:stream'
|
||||||
_VALID_URL = r'%s/(?P<id>[^/]+)/?(?:\#.*)?$' % TwitchBaseIE._VALID_URL_BASE
|
_VALID_URL = r'%s/(?P<id>[^/]+)/?(?:\#.*)?$' % TwitchBaseIE._VALID_URL_BASE
|
||||||
|
@ -348,4 +379,4 @@ def _real_extract(self, url):
|
||||||
'view_count': view_count,
|
'view_count': view_count,
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'is_live': True,
|
'is_live': True,
|
||||||
}
|
}
|
Loading…
Reference in a new issue