1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 19:49:33 +00:00
This commit is contained in:
MinePlayersPE 2021-06-06 10:36:02 +07:00 committed by GitHub
parent ff2e049d3e
commit c7684156c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,7 +166,6 @@ class VidioPremierIE(VidioBaseIE):
def _playlist_entries(self, playlist, series_id, series_name, season_name, display_id):
playlist_url = 'https://api.vidio.com/content_profiles/%s/playlists/%s/playlist_items' % (series_id, playlist['id'])
playlist_name = playlist.get('name')
entries = []
index = 1
@ -255,7 +254,7 @@ class VidioLiveIE(VidioBaseIE):
if stream_meta.get('stream_token_url'):
token_json = self._download_json(
'https://www.vidio.com/live/%s/tokens' % video_id,
display_id, note='Downloading HLS token JSON', data=b'')
display_id, note='Downloading HLS token JSON', data=b'')
formats.extend(self._extract_m3u8_formats(
stream_meta['stream_token_url'] + '?' + token_json.get('token', ''), display_id, 'mp4', 'm3u8_native'))
if stream_meta.get('stream_dash_url'):