aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/wsj.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/wsj.py')
-rw-r--r--hypervideo_dl/extractor/wsj.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/hypervideo_dl/extractor/wsj.py b/hypervideo_dl/extractor/wsj.py
index 67236f3..86e2646 100644
--- a/hypervideo_dl/extractor/wsj.py
+++ b/hypervideo_dl/extractor/wsj.py
@@ -1,6 +1,3 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
from .common import InfoExtractor
from ..utils import (
int_or_none,
@@ -85,7 +82,6 @@ class WSJIE(InfoExtractor):
'height': int_or_none(v.get('height')),
'fps': float_or_none(v.get('fps')),
})
- self._sort_formats(formats)
return {
'id': video_id,
@@ -119,5 +115,6 @@ class WSJArticleIE(InfoExtractor):
article_id = self._match_id(url)
webpage = self._download_webpage(url, article_id)
video_id = self._search_regex(
- r'data-src=["\']([a-fA-F0-9-]{36})', webpage, 'video id')
+ r'(?:id=["\']video|video-|iframe\.html\?guid=|data-src=["\'])([a-fA-F0-9-]{36})',
+ webpage, 'video id')
return self.url_result('wsj:%s' % video_id, WSJIE.ie_key(), video_id)