mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 04:06:56 +01:00
parent
2a938746f3
commit
e48b3875ec
@ -240,13 +240,15 @@ def build_innertube_clients():
|
|||||||
base_client, *variant = client.split('_')
|
base_client, *variant = client.split('_')
|
||||||
ytcfg['priority'] = 10 * priority(base_client)
|
ytcfg['priority'] = 10 * priority(base_client)
|
||||||
|
|
||||||
if variant == ['embedded']:
|
if not variant:
|
||||||
ytcfg['INNERTUBE_CONTEXT']['thirdParty'] = THIRD_PARTY
|
INNERTUBE_CLIENTS[f'{client}_agegate'] = agegate_ytcfg = copy.deepcopy(ytcfg)
|
||||||
INNERTUBE_CLIENTS[f'{base_client}_agegate'] = agegate_ytcfg = copy.deepcopy(ytcfg)
|
|
||||||
agegate_ytcfg['INNERTUBE_CONTEXT']['client']['clientScreen'] = 'EMBED'
|
agegate_ytcfg['INNERTUBE_CONTEXT']['client']['clientScreen'] = 'EMBED'
|
||||||
|
agegate_ytcfg['INNERTUBE_CONTEXT']['thirdParty'] = THIRD_PARTY
|
||||||
agegate_ytcfg['priority'] -= 1
|
agegate_ytcfg['priority'] -= 1
|
||||||
|
elif variant == ['embedded']:
|
||||||
|
ytcfg['INNERTUBE_CONTEXT']['thirdParty'] = THIRD_PARTY
|
||||||
ytcfg['priority'] -= 2
|
ytcfg['priority'] -= 2
|
||||||
elif variant:
|
else:
|
||||||
ytcfg['priority'] -= 3
|
ytcfg['priority'] -= 3
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user