mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 05:02:33 +01:00
GenericIE: try to find videos from twitter cards info
This commit is contained in:
parent
f380401bbd
commit
fb8f7280bc
@ -1373,6 +1373,9 @@ def _real_extract(self, url):
|
|||||||
if mobj is None:
|
if mobj is None:
|
||||||
# Broaden the search a little bit: JWPlayer JS loader
|
# Broaden the search a little bit: JWPlayer JS loader
|
||||||
mobj = re.search(r'[^A-Za-z0-9]?file:\s*["\'](http[^\'"&]*)', webpage)
|
mobj = re.search(r'[^A-Za-z0-9]?file:\s*["\'](http[^\'"&]*)', webpage)
|
||||||
|
if mobj is None:
|
||||||
|
# Try to find twitter cards info
|
||||||
|
mobj = re.search(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
|
||||||
if mobj is None:
|
if mobj is None:
|
||||||
raise ExtractorError(u'Invalid URL: %s' % url)
|
raise ExtractorError(u'Invalid URL: %s' % url)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user