diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-25 09:34:12 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-25 09:34:12 +0200 |
commit | 0a99956f711d492c6ca08cd086d3d4b5024fd10f (patch) | |
tree | e34ead56a422372ffaf90dcb8eb47fad85189568 /youtube_dl | |
parent | 755eb0320ed127fe2f24af13343ae587a63daf22 (diff) |
[ina] Fix URL detection (Fixes #1121)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/ina.py | 2 |
1 files changed, 1 insertions, 1 deletions
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/(?P<id>I[0-9]+)/.*' + _VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?P<id>[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', |