mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
[breakcom] Cover more URLs with _VALID_URL (Closes #3876)
This commit is contained in:
parent
8489578df4
commit
f78c01f68b
|
@ -7,25 +7,27 @@
|
||||||
|
|
||||||
|
|
||||||
class BreakIE(InfoExtractor):
|
class BreakIE(InfoExtractor):
|
||||||
_VALID_URL = r'http://(?:www\.)?break\.com/video/([^/]+)'
|
_VALID_URL = r'http://(?:www\.)?break\.com/video/(?:[^/]+/)*.+-(?P<id>\d+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'http://www.break.com/video/when-girls-act-like-guys-2468056',
|
'url': 'http://www.break.com/video/when-girls-act-like-guys-2468056',
|
||||||
'md5': 'a3513fb1547fba4fb6cfac1bffc6c46b',
|
'md5': '33aa4ff477ecd124d18d7b5d23b87ce5',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '2468056',
|
'id': '2468056',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'When Girls Act Like D-Bags',
|
'title': 'When Girls Act Like D-Bags',
|
||||||
}
|
}
|
||||||
}
|
}, {
|
||||||
|
'url': 'http://www.break.com/video/ugc/baby-flex-2773063',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
video_id = self._match_id(url)
|
||||||
video_id = mobj.group(1).split("-")[-1]
|
webpage = self._download_webpage(
|
||||||
embed_url = 'http://www.break.com/embed/%s' % video_id
|
'http://www.break.com/embed/%s' % video_id, video_id)
|
||||||
webpage = self._download_webpage(embed_url, video_id)
|
info = json.loads(self._search_regex(
|
||||||
info_json = self._search_regex(r'var embedVars = ({.*})\s*?</script>',
|
r'var embedVars = ({.*})\s*?</script>',
|
||||||
webpage, 'info json', flags=re.DOTALL)
|
webpage, 'info json', flags=re.DOTALL))
|
||||||
info = json.loads(info_json)
|
|
||||||
video_url = info['videoUri']
|
video_url = info['videoUri']
|
||||||
youtube_id = info.get('youtubeId')
|
youtube_id = info.get('youtubeId')
|
||||||
if youtube_id:
|
if youtube_id:
|
||||||
|
|
Loading…
Reference in a new issue