aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/medialaan.py
diff options
context:
space:
mode:
authormidas02 <midas02@users.noreply.github.com>2017-04-18 05:44:33 +0200
committerSergey M․ <dstftw@gmail.com>2017-05-28 06:27:52 +0700
commit4050be78e5c2e5b77a747c20db0a12e11a218db5 (patch)
tree649a8071a33fa3f82ee7745718ccf976e9a92b9a /youtube_dl/extractor/medialaan.py
parent4d9fc40100eee316da261c9e60eed9dab5c8ef71 (diff)
downloadyoutube-dl-4050be78e5c2e5b77a747c20db0a12e11a218db5.tar.xz
[medialaan] Fix videos with missing videoUrl
A rough trick to get around the two different json styles medialaan seems to be using. Fix for these example videos: https://vtmkzoom.be/video?aid=45724 https://vtmkzoom.be/video?aid=45425
Diffstat (limited to 'youtube_dl/extractor/medialaan.py')
-rw-r--r--youtube_dl/extractor/medialaan.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/youtube_dl/extractor/medialaan.py b/youtube_dl/extractor/medialaan.py
index 6e067474b..fc8f2550b 100644
--- a/youtube_dl/extractor/medialaan.py
+++ b/youtube_dl/extractor/medialaan.py
@@ -17,7 +17,7 @@ from ..utils import (
class MedialaanIE(InfoExtractor):
_VALID_URL = r'''(?x)
https?://
- (?:www\.)?
+ (?:www\.|nieuws\.)?
(?:
(?P<site_id>vtm|q2|vtmkzoom)\.be/
(?:
@@ -85,6 +85,22 @@ class MedialaanIE(InfoExtractor):
# clip
'url': 'http://vtmkzoom.be/k3-dansstudio/een-nieuw-seizoen-van-k3-dansstudio',
'only_matching': True,
+ }, {
+ # http/s redirect
+ 'url': 'https://vtmkzoom.be/video?aid=45724',
+ 'info_dict': {
+ 'id': '257136373657000',
+ 'ext': 'mp4',
+ 'title': 'K3 Dansstudio Ushuaia afl.6',
+ },
+ 'params': {
+ 'skip_download': True,
+ },
+ 'skip': 'Requires account credentials',
+ }, {
+ # nieuws.vtm.be
+ 'url': 'https://nieuws.vtm.be/stadion/stadion/genk-nog-moeilijk-programma',
+ 'only_matching': True,
}]
def _real_initialize(self):
@@ -146,6 +162,8 @@ class MedialaanIE(InfoExtractor):
video_id, transform_source=lambda s: '[%s]' % s, fatal=False)
if player:
video = player[-1]
+ if video['videoUrl'] in ('http', 'https'):
+ return self.url_result(video['url'], MedialaanIE.ie_key())
info = {
'id': video_id,
'url': video['videoUrl'],