mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-21 13:54:22 -07:00
[cbs, cbsnews] fix extraction(fixes #10393)
This commit is contained in:
parent
4245f55880
commit
dabe15701b
3 changed files with 38 additions and 21 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue