aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAttila-Mihaly Balazs <gpgh@grey-panther.net>2018-03-27 18:02:04 +0300
committerSergey M <dstftw@gmail.com>2018-03-27 22:02:04 +0700
commit99c3091850118d08c14c78f5cc6ab5ce73f4196a (patch)
tree8380c4dc549550d3a4e74e35ecb706ad2f732cd9
parentbbd9d8c17075055ddfd9873092a29a3e21566805 (diff)
downloadyoutube-dl-99c3091850118d08c14c78f5cc6ab5ce73f4196a.tar.xz
[videa] Extend _VALID_URL
-rw-r--r--youtube_dl/extractor/videa.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/youtube_dl/extractor/videa.py b/youtube_dl/extractor/videa.py
index 311df58f4..d0e34c819 100644
--- a/youtube_dl/extractor/videa.py
+++ b/youtube_dl/extractor/videa.py
@@ -16,7 +16,7 @@ from ..utils import (
class VideaIE(InfoExtractor):
_VALID_URL = r'''(?x)
https?://
- videa\.hu/
+ videa(?:kid)?\.hu/
(?:
videok/(?:[^/]+/)*[^?#&]+-|
player\?.*?\bv=|
@@ -31,7 +31,7 @@ class VideaIE(InfoExtractor):
'id': '8YfIAjxwWGwT8HVQ',
'ext': 'mp4',
'title': 'Az őrült kígyász 285 kígyót enged szabadon',
- 'thumbnail': 'http://videa.hu/static/still/1.4.1.1007274.1204470.3',
+ 'thumbnail': r're:^https?://.*',
'duration': 21,
},
}, {
@@ -43,6 +43,15 @@ class VideaIE(InfoExtractor):
}, {
'url': 'http://videa.hu/player/v/8YfIAjxwWGwT8HVQ?autoplay=1',
'only_matching': True,
+ }, {
+ 'url': 'https://videakid.hu/videok/origo/jarmuvek/supercars-elozes-jAHDWfWSJH5XuFhH',
+ 'only_matching': True,
+ }, {
+ 'url': 'https://videakid.hu/player?v=8YfIAjxwWGwT8HVQ',
+ 'only_matching': True,
+ }, {
+ 'url': 'https://videakid.hu/player/v/8YfIAjxwWGwT8HVQ?autoplay=1',
+ 'only_matching': True,
}]
@staticmethod