aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-09-06 07:24:47 +0600
committerSergey M․ <dstftw@gmail.com>2015-09-06 07:24:47 +0600
commite94cb5ae7e61627b3772c57c85195d0ce5fcf5bf (patch)
treece1aaf218f9b81e76c5212b35da10763edda0766
parente213c98df179270a33b67ef64fa53a73f93ab4c9 (diff)
downloadyoutube-dl-e94cb5ae7e61627b3772c57c85195d0ce5fcf5bf.tar.xz
[gorillavid] Add support for filehoot.com
-rw-r--r--youtube_dl/extractor/gorillavid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/gorillavid.py b/youtube_dl/extractor/gorillavid.py
index 6226b90c8..1024a5c22 100644
--- a/youtube_dl/extractor/gorillavid.py
+++ b/youtube_dl/extractor/gorillavid.py
@@ -15,10 +15,10 @@ from ..utils import (
class GorillaVidIE(InfoExtractor):
- IE_DESC = 'GorillaVid.in, daclips.in, movpod.in, fastvideo.in and realvid.net'
+ IE_DESC = 'GorillaVid.in, daclips.in, movpod.in, fastvideo.in, realvid.net and filehoot.com'
_VALID_URL = r'''(?x)
https?://(?P<host>(?:www\.)?
- (?:daclips\.in|gorillavid\.in|movpod\.in|fastvideo\.in|realvid\.net))/
+ (?:daclips\.in|gorillavid\.in|movpod\.in|fastvideo\.in|realvid\.net|filehoot\.com))/
(?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)?
'''