summary refs log tree commit diff
diff options
context:
space:
mode:
authorhmlinaric <mlinaric.hrvoje@gmail.com>2018-08-21 19:06:27 +0200
committerSergey M <dstftw@gmail.com>2018-08-22 00:06:27 +0700
commit28f96cf407cecbac21fe2c7d3417928dae3ab3b5 (patch)
tree252a80cf3143b9c4ce12fdedf3249e9c04e9efd8
parenteda86b4335a464c2744adb537f1296eff24f5bde (diff)
downloadyoutube-dl-28f96cf407cecbac21fe2c7d3417928dae3ab3b5.tar.gz
youtube-dl-28f96cf407cecbac21fe2c7d3417928dae3ab3b5.tar.xz
youtube-dl-28f96cf407cecbac21fe2c7d3417928dae3ab3b5.zip
[6play] Add support for play.rtl.hr
-rw-r--r--youtube_dl/extractor/sixplay.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/sixplay.py b/youtube_dl/extractor/sixplay.py
index a363221bc..207ab4477 100644
--- a/youtube_dl/extractor/sixplay.py
+++ b/youtube_dl/extractor/sixplay.py
@@ -19,7 +19,7 @@ from ..utils import (
 
 class SixPlayIE(InfoExtractor):
     IE_NAME = '6play'
-    _VALID_URL = r'(?:6play:|https?://(?:www\.)?(?P<domain>6play\.fr|rtlplay.be)/.+?-c_)(?P<id>[0-9]+)'
+    _VALID_URL = r'(?:6play:|https?://(?:www\.)?(?P<domain>6play\.fr|rtlplay\.be|play\.rtl\.hr)/.+?-c_)(?P<id>[0-9]+)'
     _TESTS = [{
         'url': 'https://www.6play.fr/minute-par-minute-p_9533/le-but-qui-a-marque-lhistoire-du-football-francais-c_12041051',
         'md5': '31fcd112637baa0c2ab92c4fcd8baf27',
@@ -32,6 +32,9 @@ class SixPlayIE(InfoExtractor):
     }, {
         'url': 'https://www.rtlplay.be/rtl-info-13h-p_8551/les-titres-du-rtlinfo-13h-c_12045869',
         'only_matching': True,
+    }, {
+        'url': 'https://play.rtl.hr/pj-masks-p_9455/epizoda-34-sezona-1-catboyevo-cudo-na-dva-kotaca-c_11984989',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):
@@ -39,6 +42,7 @@ class SixPlayIE(InfoExtractor):
         service, consumer_name = {
             '6play.fr': ('6play', 'm6web'),
             'rtlplay.be': ('rtlbe_rtl_play', 'rtlbe'),
+            'play.rtl.hr': ('rtlhr_rtl_play', 'rtlhr'),
         }.get(domain, ('6play', 'm6web'))
 
         data = self._download_json(