mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-23 11:31:29 +01:00
Merge 2e3b852851
into f919729538
This commit is contained in:
commit
1bffb091b0
|
@ -129,6 +129,11 @@ def extract_format(format_id, format_url):
|
|||
format_url = format_url[0]
|
||||
extract_format(format_id, format_url)
|
||||
|
||||
og_url = self._search_regex(
|
||||
r'<meta property="og:url" content="(.*?)"', webpage, 'og:url', default=None)
|
||||
if og_url:
|
||||
video_id = self._search_regex(r'https://spankbang.com/([^/]+)/', og_url, 'video ID', default=None)
|
||||
|
||||
info = self._search_json_ld(webpage, video_id, default={})
|
||||
|
||||
title = self._html_search_regex(
|
||||
|
|
Loading…
Reference in New Issue
Block a user