mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
Thanks to @brickleroux for finding out the problem
This commit is contained in:
parent
d6aa68ce75
commit
fafec39d41
@ -51,9 +51,9 @@ class SpiegeltvIE(InfoExtractor):
|
|||||||
is_wide = media_json['is_wide']
|
is_wide = media_json['is_wide']
|
||||||
|
|
||||||
server_json = self._download_json(
|
server_json = self._download_json(
|
||||||
'http://www.spiegel.tv/streaming_servers/', video_id,
|
'http://spiegeltv-prod-static.s3.amazonaws.com/projectConfigs/projectConfig.json',
|
||||||
note='Downloading server information')
|
video_id, note='Downloading server information')
|
||||||
server = server_json[0]['endpoint']
|
server = server_json['streamingserver'][0]['endpoint']
|
||||||
|
|
||||||
thumbnails = []
|
thumbnails = []
|
||||||
for image in media_json['images']:
|
for image in media_json['images']:
|
||||||
@ -76,5 +76,6 @@ class SpiegeltvIE(InfoExtractor):
|
|||||||
'ext': 'm4v',
|
'ext': 'm4v',
|
||||||
'description': description,
|
'description': description,
|
||||||
'duration': duration,
|
'duration': duration,
|
||||||
'thumbnails': thumbnails
|
'thumbnails': thumbnails,
|
||||||
|
'rtmp_live': True,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user