mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-06-28 13:45:55 +00:00
include additional parameters for video-session
This commit is contained in:
parent
9ac6340cc2
commit
626a901584
@ -1,5 +1,6 @@
|
|||||||
import json
|
import json
|
||||||
import re
|
import re
|
||||||
|
import uuid
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
@ -84,7 +85,10 @@ class GloboIE(InfoExtractor):
|
|||||||
'video_id': video_id,
|
'video_id': video_id,
|
||||||
'quality': 'max',
|
'quality': 'max',
|
||||||
'content_protection': 'widevine',
|
'content_protection': 'widevine',
|
||||||
'vsid': '2938bc7c-9376-d4b7-ee91-ce46dbbf9f4d',
|
'vsid': f'{uuid.uuid4()}',
|
||||||
|
'consumption': 'streaming',
|
||||||
|
'capabilities': {'low_latency': True},
|
||||||
|
'metadata': {'name': 'web', 'device': {'type': 'desktop', 'os': {}}},
|
||||||
'tz': '-03:00',
|
'tz': '-03:00',
|
||||||
'Authorization': try_get(self._get_cookies('https://globo.com'),
|
'Authorization': try_get(self._get_cookies('https://globo.com'),
|
||||||
lambda x: f'Bearer {x["GLBID"].value}') or '',
|
lambda x: f'Bearer {x["GLBID"].value}') or '',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user