mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-06 01:22:35 +00:00
[arte] Always look for the JSON URL (Fixes #1002)
This commit is contained in:
parent
d93e4dcbb7
commit
b227060388
@ -77,10 +77,6 @@ class ArteTvIE(InfoExtractor):
|
|||||||
|
|
||||||
def _extract_emission(self, url, video_id, lang):
|
def _extract_emission(self, url, video_id, lang):
|
||||||
"""Extract from www.arte.tv/guide"""
|
"""Extract from www.arte.tv/guide"""
|
||||||
if video_id.replace('-','').isdigit():
|
|
||||||
json_url = 'http://org-www.arte.tv/papi/tvguide/videos/stream/player/F/%s_PLUS7-F/ALL/ALL.json' % video_id
|
|
||||||
else:
|
|
||||||
# We don't know the real id of the video, we have to search in the webpage
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
json_url = self._html_search_regex(r'arte_vp_url="(.*?)"', webpage, 'json url')
|
json_url = self._html_search_regex(r'arte_vp_url="(.*?)"', webpage, 'json url')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user