aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-01-31 01:29:00 +0700
committerSergey M․ <dstftw@gmail.com>2018-01-31 01:29:00 +0700
commitd6b152915cca2e249d72a816dee6a958e4cd5843 (patch)
tree85c7136ff642fdecbdeb4e3032aeb5f2cfa9bef7
parent69a934e9ad778ee8ff98b97a52de7da93d9e7066 (diff)
downloadyoutube-dl-d6b152915cca2e249d72a816dee6a958e4cd5843.tar.xz
[dplay] Relax _VALID_URL (closes #15458)
-rw-r--r--youtube_dl/extractor/dplay.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/dplay.py b/youtube_dl/extractor/dplay.py
index a08dace43..b73446773 100644
--- a/youtube_dl/extractor/dplay.py
+++ b/youtube_dl/extractor/dplay.py
@@ -26,7 +26,7 @@ from ..utils import (
class DPlayIE(InfoExtractor):
- _VALID_URL = r'https?://(?P<domain>www\.(?P<host>dplay\.(?P<country>dk|se|no)))/(?:videoer/)?(?P<id>[^/]+/[^/?#]+)'
+ _VALID_URL = r'https?://(?P<domain>www\.(?P<host>dplay\.(?P<country>dk|se|no)))/(?:video(?:er|s)/)?(?P<id>[^/]+/[^/?#]+)'
_TESTS = [{
# non geo restricted, via secure api, unsigned download hls URL
@@ -89,9 +89,12 @@ class DPlayIE(InfoExtractor):
'skip_download': True,
},
}, {
- # geo restricted, bypassable via X-Forwarded-For
+
'url': 'https://www.dplay.dk/videoer/singleliv/season-5-episode-3',
'only_matching': True,
+ }, {
+ 'url': 'https://www.dplay.se/videos/sofias-anglar/sofias-anglar-1001',
+ 'only_matching': True,
}]
def _real_extract(self, url):