mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-18 06:09:17 +00:00
[extractor/tumblr] support twitch_live provider
This commit is contained in:
parent
7a1f3a1c70
commit
2a298347e1
|
@ -345,6 +345,10 @@ class TumblrIE(InfoExtractor):
|
|||
'repost_count': int,
|
||||
},
|
||||
'playlist_count': 2,
|
||||
}, {
|
||||
# twitch_live provider - error when linked account is not live
|
||||
'url': 'https://www.tumblr.com/anarcho-skamunist/722224493650722816/hollow-knight-stream-right-now-going-to-fight',
|
||||
'only_matching': True,
|
||||
}]
|
||||
|
||||
_providers = {
|
||||
|
@ -354,6 +358,7 @@ class TumblrIE(InfoExtractor):
|
|||
'youtube': 'Youtube',
|
||||
'dailymotion': 'Dailymotion',
|
||||
'tiktok': 'TikTok',
|
||||
'twitch_live': 'TwitchStream',
|
||||
}
|
||||
# these are known providers, but we don't know which entity type
|
||||
# we are supposed to extract, so we use matching by url
|
||||
|
|
Loading…
Reference in a new issue