about summary refs log tree commit diff
path: root/youtube_dl/extractor/cbslocal.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-08-15 13:37:37 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-08-15 13:37:37 +0800
commit760845ce9965b57484f232a162b9bb4ad3a505a7 (patch)
treee948474bf2d50e5af3f3c4beecf411695526af8d /youtube_dl/extractor/cbslocal.py
parent5c2d08722139118d8de27d43d6210e18ab1da9d5 (diff)
downloadyoutube-dl-760845ce9965b57484f232a162b9bb4ad3a505a7.tar.gz
youtube-dl-760845ce9965b57484f232a162b9bb4ad3a505a7.tar.xz
youtube-dl-760845ce9965b57484f232a162b9bb4ad3a505a7.zip
[cbslocal] Adapt to SendtoNewsIE
Diffstat (limited to 'youtube_dl/extractor/cbslocal.py')
-rw-r--r--youtube_dl/extractor/cbslocal.py18
1 files changed, 6 insertions, 12 deletions
diff --git a/youtube_dl/extractor/cbslocal.py b/youtube_dl/extractor/cbslocal.py
index 008c5fe32..4bcd104af 100644
--- a/youtube_dl/extractor/cbslocal.py
+++ b/youtube_dl/extractor/cbslocal.py
@@ -41,13 +41,8 @@ class CBSLocalIE(AnvatoIE):
         'url': 'http://cleveland.cbslocal.com/2016/05/16/indians-score-season-high-15-runs-in-blowout-win-over-reds-rapid-reaction/',
         'info_dict': {
             'id': 'GxfCe0Zo7D-175909-5588',
-            'ext': 'mp4',
-            'title': 'Recap: CLE 15, CIN 6',
-            'description': '5/16/16: Indians\' bats explode for 15 runs in a win',
-            'upload_date': '20160516',
-            'timestamp': 1463433840,
-            'duration': 49,
         },
+        'playlist_count': 9,
         'params': {
             # m3u8 download
             'skip_download': True,
@@ -60,12 +55,11 @@ class CBSLocalIE(AnvatoIE):
 
         sendtonews_url = SendtoNewsIE._extract_url(webpage)
         if sendtonews_url:
-            info_dict = {
-                '_type': 'url_transparent',
-                'url': compat_urlparse.urljoin(url, sendtonews_url),
-            }
-        else:
-            info_dict = self._extract_anvato_videos(webpage, display_id)
+            return self.url_result(
+                compat_urlparse.urljoin(url, sendtonews_url),
+                ie=SendtoNewsIE.ie_key())
+
+        info_dict = self._extract_anvato_videos(webpage, display_id)
 
         time_str = self._html_search_regex(
             r'class="entry-date">([^<]+)<', webpage, 'released date', fatal=False)