mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-01-28 19:58:38 +01:00
include additional parameters for video-session
This commit is contained in:
parent
9ac6340cc2
commit
626a901584
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue