aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-01-16 00:36:49 +0600
committerSergey M․ <dstftw@gmail.com>2016-01-16 00:36:49 +0600
commitb4e44234bc481747b88c330b0e30a13dbc0fc99a (patch)
tree7e105ccb46a5b290cb95af221c69cbfcbcc916fc /youtube_dl
parent4ca2a3cf3cf0227025f09cfe6e75a37f884442a5 (diff)
downloadyoutube-dl-b4e44234bc481747b88c330b0e30a13dbc0fc99a.tar.xz
[ae] Use JSON-LD for TV series metadata
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/ae.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ae.py b/youtube_dl/extractor/ae.py
index a3b9f1ca4..3bc7c12fc 100644
--- a/youtube_dl/extractor/ae.py
+++ b/youtube_dl/extractor/ae.py
@@ -55,4 +55,9 @@ class AEIE(InfoExtractor):
]
video_url = self._search_regex(video_url_re, webpage, 'video url')
- return self.url_result(smuggle_url(video_url, {'sig': {'key': 'crazyjava', 'secret': 's3cr3t'}}))
+ info = self._search_json_ld(webpage, video_id, fatal=False)
+ info.update({
+ '_type': 'url_transparent',
+ 'url': smuggle_url(video_url, {'sig': {'key': 'crazyjava', 'secret': 's3cr3t'}}),
+ })
+ return info