From: Philipp Hagemeister Date: Thu, 25 Jul 2013 07:34:12 +0000 (+0200) Subject: [ina] Fix URL detection (Fixes #1121) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=0a99956f711d492c6ca08cd086d3d4b5024fd10f;hp=755eb0320ed127fe2f24af13343ae587a63daf22;p=youtube-dl [ina] Fix URL detection (Fixes #1121) --- diff --git a/youtube_dl/extractor/ina.py b/youtube_dl/extractor/ina.py index 962c59214..ce1ff32a1 100644 --- a/youtube_dl/extractor/ina.py +++ b/youtube_dl/extractor/ina.py @@ -5,7 +5,7 @@ from .common import InfoExtractor class InaIE(InfoExtractor): """Information Extractor for Ina.fr""" - _VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?PI[0-9]+)/.*' + _VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?P[A-F0-9]+)/.*' _TEST = { u'url': u'www.ina.fr/video/I12055569/francois-hollande-je-crois-que-c-est-clair-video.html', u'file': u'I12055569.mp4',