diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-25 09:52:53 +0200 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-25 09:52:58 +0200 | 
| commit | 27669bd11d70d2b169a27e5e8b40b0205d14f1df (patch) | |
| tree | 7dc6182dc8e43e260396d42449e5da2e7fde2abc | |
| parent | 6625f82940b2701e2ccc9a6cf5808056b075e16b (diff) | |
[ina] Allow I at start of video IDs
| -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 ce1ff32a1..652f19b7b 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>[A-F0-9]+)/.*' +    _VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?P<id>I?[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', | 
