[cnn] Match more affilliates
authorPhilipp Hagemeister <phihag@phihag.de>
Tue, 7 Apr 2015 12:59:13 +0000 (14:59 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Tue, 7 Apr 2015 12:59:13 +0000 (14:59 +0200)
youtube_dl/extractor/cnn.py

index 0a77e951c52ebe9b3a1307203e31d0658c2c89cc..5efc5f4fe556a4424542b441a83f2d6dbd5bc8e7 100644 (file)
@@ -12,7 +12,7 @@ from ..utils import (
 
 class CNNIE(InfoExtractor):
     _VALID_URL = r'''(?x)https?://(?:(?:edition|www)\.)?cnn\.com/video/(?:data/.+?|\?)/
-        (?P<path>.+?/(?P<title>[^/]+?)(?:\.(?:cnn|hln|ktvk)(?:-ap)?|(?=&)))'''
+        (?P<path>.+?/(?P<title>[^/]+?)(?:\.(?:[a-z]{3,5})(?:-ap)?|(?=&)))'''
 
     _TESTS = [{
         'url': 'http://edition.cnn.com/video/?/video/sports/2013/06/09/nadal-1-on-1.cnn',
@@ -48,6 +48,9 @@ class CNNIE(InfoExtractor):
     }, {
         'url': 'http://cnn.com/video/?/video/politics/2015/03/27/pkg-arizona-senator-church-attendance-mandatory.ktvk',
         'only_matching': True,
+    }, {
+        'url': 'http://cnn.com/video/?/video/us/2015/04/06/dnt-baker-refuses-anti-gay-order.wkmg',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):