diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-08-24 04:00:35 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-08-24 04:00:35 +0700 |
commit | beff09505cc4a7a980901c6e48adc1620aa417aa (patch) | |
tree | 4f166f81d1fb8baf85ce64f7b0d1948d3cb62a72 /youtube_dl | |
parent | 135e6a1c107f49e7968013a57c33eea615406b96 (diff) |
[xfileshare] Add support for vidto.se (closes #17317)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/xfileshare.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/xfileshare.py b/youtube_dl/extractor/xfileshare.py index bc3239f68..b38c7a7b3 100644 --- a/youtube_dl/extractor/xfileshare.py +++ b/youtube_dl/extractor/xfileshare.py @@ -23,7 +23,7 @@ class XFileShareIE(InfoExtractor): (r'powerwatch\.pw', 'PowerWatch'), (r'rapidvideo\.ws', 'Rapidvideo.ws'), (r'thevideobee\.to', 'TheVideoBee'), - (r'vidto\.me', 'Vidto'), + (r'vidto\.(?:me|se)', 'Vidto'), (r'streamin\.to', 'Streamin.To'), (r'xvidstage\.com', 'XVIDSTAGE'), (r'vidabc\.com', 'Vid ABC'), @@ -115,7 +115,10 @@ class XFileShareIE(InfoExtractor): 'only_matching': True, }, { 'url': 'http://www.fastvideo.me/k8604r8nk8sn/FAST_FURIOUS_8_-_Trailer_italiano_ufficiale.mp4.html', - 'only_matching': True + 'only_matching': True, + }, { + 'url': 'http://vidto.se/1tx1pf6t12cg.html', + 'only_matching': True, }] @staticmethod |