Browse Source

[ina] Fix URL detection (Fixes #1121)

rtmp_test
Philipp Hagemeister 11 years ago
parent
commit
0a99956f71
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/ina.py

+ 1
- 1
youtube_dl/extractor/ina.py View File

@ -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',


Loading…
Cancel
Save