[wsj] Add support for barrons.com (closes #13470)
authorSergey M․ <dstftw@gmail.com>
Sat, 24 Jun 2017 19:14:10 +0000 (02:14 +0700)
committerSergey M․ <dstftw@gmail.com>
Sat, 24 Jun 2017 19:15:35 +0000 (02:15 +0700)
youtube_dl/extractor/wsj.py

index 45cfca7c52e92fa8f4aa8e06e633d5198e3066d3..9b5487710e9d1b73a2e26983bacde9e2e8891761 100644 (file)
@@ -13,7 +13,7 @@ class WSJIE(InfoExtractor):
     _VALID_URL = r'''(?x)
                         (?:
                             https?://video-api\.wsj\.com/api-video/player/iframe\.html\?.*?\bguid=|
-                            https?://(?:www\.)?wsj\.com/video/[^/]+/|
+                            https?://(?:www\.)?(?:wsj|barrons)\.com/video/[^/]+/|
                             wsj:
                         )
                         (?P<id>[a-fA-F0-9-]{36})
@@ -35,6 +35,9 @@ class WSJIE(InfoExtractor):
     }, {
         'url': 'http://www.wsj.com/video/can-alphabet-build-a-smarter-city/359DDAA8-9AC1-489C-82E6-0429C1E430E0.html',
         'only_matching': True,
+    }, {
+        'url': 'http://www.barrons.com/video/capitalism-deserves-more-respect-from-millennials/F301217E-6F46-43AE-B8D2-B7180D642EE9.html',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):