Browse Source

[vrt] Extend _VALUD_URL

totalwebcasting
Sergey M․ 9 years ago
parent
commit
18c782ab26
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      youtube_dl/extractor/vrt.py

+ 5
- 1
youtube_dl/extractor/vrt.py View File

@ -8,7 +8,7 @@ from ..utils import float_or_none
class VRTIE(InfoExtractor):
_VALID_URL = r'https?://(?:deredactie|sporza|cobra)\.be/cm/(?:[^/]+/)+(?P<id>[^/]+)/*'
_VALID_URL = r'https?://(?:deredactie|sporza|cobra(?:\.canvas)?)\.be/cm/(?:[^/]+/)+(?P<id>[^/]+)/*'
_TESTS = [
# deredactie.be
{
@ -52,6 +52,10 @@ class VRTIE(InfoExtractor):
'duration': 661,
}
},
{
'url': 'http://cobra.canvas.be/cm/cobra/videozone/rubriek/film-videozone/1.2377055',
'only_matching': True,
}
]
def _real_extract(self, url):


Loading…
Cancel
Save