aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcorone17 <reino@degeelebosch.nl>2015-06-29 00:59:18 +0200
committercorone17 <reino@degeelebosch.nl>2015-06-29 00:59:18 +0200
commitbea41c7f3fa4f9072ad2f5354938ab1c8cef0a6d (patch)
tree20faa8e6fe22a7b8c855543e6f5cbdaec3fa9ec4
parent1bbe660dfa713d377fdf0eeec6b6d6a5fa8c86d9 (diff)
downloadyoutube-dl-bea41c7f3fa4f9072ad2f5354938ab1c8cef0a6d.tar.xz
Update rtlnl.py
Better to extract 'http://manifest.us.rtl.nl' from the json, I'd say. And I think it's better to use the default json-url to make it more futureproof. Succesfully tested with tarball.
-rw-r--r--youtube_dl/extractor/rtlnl.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/rtlnl.py b/youtube_dl/extractor/rtlnl.py
index 41d202c28..e708e0093 100644
--- a/youtube_dl/extractor/rtlnl.py
+++ b/youtube_dl/extractor/rtlnl.py
@@ -51,7 +51,7 @@ class RtlNlIE(InfoExtractor):
def _real_extract(self, url):
uuid = self._match_id(url)
info = self._download_json(
- 'http://www.rtl.nl/system/s4m/vfd/version=2/uuid=%s/fmt=flash/' % uuid,
+ 'http://www.rtl.nl/system/s4m/vfd/version=2/uuid=%s/fmt=adaptive/' % uuid,
uuid)
material = info['material'][0]
@@ -60,8 +60,8 @@ class RtlNlIE(InfoExtractor):
description = material.get('synopsis') or info['episodes'][0]['synopsis']
# Use unencrypted m3u8 streams (See https://github.com/rg3/youtube-dl/issues/4118)
- videopath = material['videopath'].replace('.f4m', '.m3u8')
- m3u8_url = 'http://manifest.us.rtl.nl' + videopath
+ videopath = material['videopath'].replace('adaptive', 'flash')
+ m3u8_url = info['meta']['videohost'] + videopath
formats = self._extract_m3u8_formats(m3u8_url, uuid, ext='mp4')