diff options
author | Remita Amine <remitamine@gmail.com> | 2016-08-20 13:25:32 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-08-20 13:25:32 +0100 |
commit | dabe15701b3c12ef7e6af1f3333e1d3e39149592 (patch) | |
tree | 506ed8db0b24c1bf7ba0cb2446099f206769b8ea /youtube_dl/extractor/cbssports.py | |
parent | 4245f55880c42e670cebd5a8a2b10929be834682 (diff) |
[cbs, cbsnews] fix extraction(fixes #10393)
Diffstat (limited to 'youtube_dl/extractor/cbssports.py')
-rw-r--r-- | youtube_dl/extractor/cbssports.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cbssports.py b/youtube_dl/extractor/cbssports.py index 78ca44b02..bf7915626 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) |