aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/cbssports.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-08-20 13:25:32 +0100
committerRemita Amine <remitamine@gmail.com>2016-08-20 13:25:32 +0100
commitdabe15701b3c12ef7e6af1f3333e1d3e39149592 (patch)
tree506ed8db0b24c1bf7ba0cb2446099f206769b8ea /youtube_dl/extractor/cbssports.py
parent4245f55880c42e670cebd5a8a2b10929be834682 (diff)
downloadyoutube-dl-dabe15701b3c12ef7e6af1f3333e1d3e39149592.zip
youtube-dl-dabe15701b3c12ef7e6af1f3333e1d3e39149592.tar.gz
youtube-dl-dabe15701b3c12ef7e6af1f3333e1d3e39149592.tar.bz2
[cbs, cbsnews] fix extraction(fixes #10393)
Diffstat (limited to 'youtube_dl/extractor/cbssports.py')
-rw-r--r--youtube_dl/extractor/cbssports.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cbssports.py b/youtube_dl/extractor/cbssports.py
index 78ca44b..bf79156 100644
--- a/youtube_dl/extractor/cbssports.py
+++ b/youtube_dl/extractor/cbssports.py
@@ -23,6 +23,9 @@ class CBSSportsIE(CBSBaseIE):
}
}]
+ def _extract_video_info(self, filter_query, video_id):
+ return self._extract_feed_info('dJ5BDC', 'VxxJg8Ymh8sE', filter_query, video_id)
+
def _real_extract(self, url):
video_id = self._match_id(url)
return self._extract_video_info('byId=%s' % video_id, video_id)