Browse Source

[comedycentral] Recognize ‘video-collections’ urls (#2072)

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

+ 3
- 1
youtube_dl/extractor/comedycentral.py View File

@ -12,7 +12,9 @@ from ..utils import (
class ComedyCentralIE(MTVServicesInfoExtractor):
_VALID_URL = r'https?://(?:www.)?comedycentral.com/(video-clips|episodes|cc-studios)/(?P<title>.*)'
_VALID_URL = r'''(?x)https?://(?:www.)?comedycentral.com/
(video-clips|episodes|cc-studios|video-collections)
/(?P<title>.*)'''
_FEED_URL = u'http://comedycentral.com/feeds/mrss/'
_TEST = {


Loading…
Cancel
Save