mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 01:13:15 +00:00
[extractor/twitch] Update _CLIENT_ID
and add extractor-arg (#7200)
Closes #7058, Closes #7183 Authored by: bashonly
This commit is contained in:
parent
f41b949a2e
commit
01231feb14
|
@ -1846,6 +1846,9 @@ #### twitter
|
||||||
### wrestleuniverse
|
### wrestleuniverse
|
||||||
* `device_id`: UUID value assigned by the website and used to enforce device limits for paid livestream content. Can be found in browser local storage
|
* `device_id`: UUID value assigned by the website and used to enforce device limits for paid livestream content. Can be found in browser local storage
|
||||||
|
|
||||||
|
#### twitchstream (Twitch)
|
||||||
|
* `client_id`: Client ID value to be sent with GraphQL requests, e.g. `twitchstream:client_id=kimne78kx3ncx6brgo4mv6wki5h1ko`
|
||||||
|
|
||||||
**Note**: These options may be changed/removed in the future without concern for backward compatibility
|
**Note**: These options may be changed/removed in the future without concern for backward compatibility
|
||||||
|
|
||||||
<!-- MANPAGE: MOVE "INSTALLATION" SECTION HERE -->
|
<!-- MANPAGE: MOVE "INSTALLATION" SECTION HERE -->
|
||||||
|
|
|
@ -41,7 +41,6 @@ class TwitchBaseIE(InfoExtractor):
|
||||||
_USHER_BASE = 'https://usher.ttvnw.net'
|
_USHER_BASE = 'https://usher.ttvnw.net'
|
||||||
_LOGIN_FORM_URL = 'https://www.twitch.tv/login'
|
_LOGIN_FORM_URL = 'https://www.twitch.tv/login'
|
||||||
_LOGIN_POST_URL = 'https://passport.twitch.tv/login'
|
_LOGIN_POST_URL = 'https://passport.twitch.tv/login'
|
||||||
_CLIENT_ID = 'kimne78kx3ncx6brgo4mv6wki5h1ko'
|
|
||||||
_NETRC_MACHINE = 'twitch'
|
_NETRC_MACHINE = 'twitch'
|
||||||
|
|
||||||
_OPERATION_HASHES = {
|
_OPERATION_HASHES = {
|
||||||
|
@ -58,6 +57,11 @@ class TwitchBaseIE(InfoExtractor):
|
||||||
'VideoPlayer_VODSeekbarPreviewVideo': '07e99e4d56c5a7c67117a154777b0baf85a5ffefa393b213f4bc712ccaf85dd6',
|
'VideoPlayer_VODSeekbarPreviewVideo': '07e99e4d56c5a7c67117a154777b0baf85a5ffefa393b213f4bc712ccaf85dd6',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@property
|
||||||
|
def _CLIENT_ID(self):
|
||||||
|
return self._configuration_arg(
|
||||||
|
'client_id', ['ue6666qo983tsx6so1t0vnawi233wa'], ie_key=TwitchStreamIE, casesense=True)[0]
|
||||||
|
|
||||||
def _perform_login(self, username, password):
|
def _perform_login(self, username, password):
|
||||||
def fail(message):
|
def fail(message):
|
||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
|
|
Loading…
Reference in a new issue