summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-10-05 07:53:02 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-10-05 07:53:02 +0200
commitb81f484b60c5e06e7d30720b104d01245c466e14 (patch)
treee42993b9b344304ae610af7adcc520ef2a026e47
parent5e69192ef74f9dd4057905d2ffc2d4afb051fb57 (diff)
downloadyoutube-dl-b81f484b60c5e06e7d30720b104d01245c466e14.tar.gz
youtube-dl-b81f484b60c5e06e7d30720b104d01245c466e14.tar.xz
youtube-dl-b81f484b60c5e06e7d30720b104d01245c466e14.zip
[gorillavid] Add support for movpod.in (Fixes #3881)
-rw-r--r--youtube_dl/extractor/gorillavid.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/gorillavid.py b/youtube_dl/extractor/gorillavid.py
index ca5f7c417..8c3ad8c7d 100644
--- a/youtube_dl/extractor/gorillavid.py
+++ b/youtube_dl/extractor/gorillavid.py
@@ -12,10 +12,10 @@ from ..utils import (
 
 
 class GorillaVidIE(InfoExtractor):
-    IE_DESC = 'GorillaVid.in and daclips.in'
+    IE_DESC = 'GorillaVid.in, daclips.in and movpod.in'
     _VALID_URL = r'''(?x)
         https?://(?P<host>(?:www\.)?
-            (?:daclips\.in|gorillavid\.in))/
+            (?:daclips\.in|gorillavid\.in|movpod\.in))/
         (?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:-[0-9]+x[0-9]+\.html)?
     '''
 
@@ -46,6 +46,9 @@ class GorillaVidIE(InfoExtractor):
             'title': 'Micro Pig piglets ready on 16th July 2009',
             'thumbnail': 're:http://.*\.jpg',
         },
+    }, {
+        'url': 'http://movpod.in/0wguyyxi1yca',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):