diff options
author | gfabiano <gfabiano40@gmail.com> | 2017-06-14 23:38:21 +0200 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2017-06-15 21:41:49 +0700 |
commit | 0ea6efbb7a1434b83c871577845383a472324cb5 (patch) | |
tree | 4017d4d75fc38da2418f494687b0f60d797e10d5 /youtube_dl | |
parent | 6a9cb29509a3b1fa2c1ffce82acb2fa7a2699c29 (diff) |
[xfileshare] Add support for fastvideo.me
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/xfileshare.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/xfileshare.py b/youtube_dl/extractor/xfileshare.py index a32789ef4..74aac85a3 100644 --- a/youtube_dl/extractor/xfileshare.py +++ b/youtube_dl/extractor/xfileshare.py @@ -30,6 +30,7 @@ class XFileShareIE(InfoExtractor): (r'vidbom\.com', 'VidBom'), (r'vidlo\.us', 'vidlo'), (r'rapidvideo\.(?:cool|org)', 'RapidVideo.TV'), + (r'fastvideo\.me', 'FastVideo.me'), ) IE_DESC = 'XFileShare based sites: %s' % ', '.join(list(zip(*_SITES))[1]) @@ -112,6 +113,9 @@ class XFileShareIE(InfoExtractor): }, { 'url': 'http://www.rapidvideo.cool/b667kprndr8w', 'only_matching': True, + }, { + 'url': 'http://www.fastvideo.me/k8604r8nk8sn/FAST_FURIOUS_8_-_Trailer_italiano_ufficiale.mp4.html', + 'only_matching': True }] def _real_extract(self, url): |