aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/defense.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/defense.py')
-rw-r--r--youtube_dl/extractor/defense.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/defense.py b/youtube_dl/extractor/defense.py
index c5529f8d4..3ffed3d44 100644
--- a/youtube_dl/extractor/defense.py
+++ b/youtube_dl/extractor/defense.py
@@ -26,13 +26,13 @@ class DefenseGouvFrIE(InfoExtractor):
video_id = self._search_regex(
r"flashvars.pvg_id=\"(\d+)\";",
webpage, 'ID')
-
+
json_url = ('http://static.videos.gouv.fr/brightcovehub/export/json/'
+ video_id)
info = self._download_webpage(json_url, title,
'Downloading JSON config')
video_url = json.loads(info)['renditions'][0]['url']
-
+
return {'id': video_id,
'ext': 'mp4',
'url': video_url,