youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 430826c9d4ea837d17339a0a10832bab45c42956
parent 9d048a17d818764e7f0d24519a09a36442d455ea
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 22 Aug 2014 22:46:42 +0200

Merge pull request #3568 from MikeCol/xhamster_load

changed _VALID_URL to allow for country specific subdomains
Diffstat:
Myoutube_dl/extractor/xhamster.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/xhamster.py b/youtube_dl/extractor/xhamster.py @@ -14,7 +14,7 @@ from ..utils import ( class XHamsterIE(InfoExtractor): """Information Extractor for xHamster""" - _VALID_URL = r'http://(?:www\.)?xhamster\.com/movies/(?P<id>[0-9]+)/(?P<seo>.+?)\.html(?:\?.*)?' + _VALID_URL = r'http://(?:.+?\.)?xhamster\.com/movies/(?P<id>[0-9]+)/(?P<seo>.+?)\.html(?:\?.*)?' _TESTS = [ { 'url': 'http://xhamster.com/movies/1509445/femaleagent_shy_beauty_takes_the_bait.html',