Browse Source

[dreisat] Make ‘index.php’ optional in the url (fixes #2080)

totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
71cd2a571e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/dreisat.py

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

@ -10,7 +10,7 @@ from ..utils import (
class DreiSatIE(InfoExtractor):
IE_NAME = '3sat'
_VALID_URL = r'(?:http://)?(?:www\.)?3sat\.de/mediathek/index\.php\?(?:(?:mode|display)=[^&]+&)*obj=(?P<id>[0-9]+)$'
_VALID_URL = r'(?:http://)?(?:www\.)?3sat\.de/mediathek/(?:index\.php)?\?(?:(?:mode|display)=[^&]+&)*obj=(?P<id>[0-9]+)$'
_TEST = {
u"url": u"http://www.3sat.de/mediathek/index.php?obj=36983",
u'file': u'36983.mp4',


Loading…
Cancel
Save