projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
393ca8c
)
[arte:+7] Fix typo
author
Sergey M․
<dstftw@gmail.com>
Sun, 20 Sep 2015 05:47:03 +0000
(11:47 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Sun, 20 Sep 2015 05:47:03 +0000
(11:47 +0600)
youtube_dl/extractor/arte.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/arte.py
b/youtube_dl/extractor/arte.py
index 9ecb6786c240c9999a93d835cbad8e43f1001ef2..2a00da3ee0b7f865cb2b14e2c4920361c35022f8 100644
(file)
--- a/
youtube_dl/extractor/arte.py
+++ b/
youtube_dl/extractor/arte.py
@@
-85,7
+85,7
@@
class ArteTVPlus7IE(InfoExtractor):
if not json_url:
iframe_url = self._html_search_regex(
r'<iframe[^>]+src=(["\'])(?P<url>.+\bjson_url=.+?)\1',
- webpage, 'iframe url', group='
iframe
url')
+ webpage, 'iframe url', group='url')
json_url = compat_parse_qs(
compat_urllib_parse_urlparse(iframe_url).query)['json_url'][0]
return self._extract_from_json_url(json_url, video_id, lang)