diff --git a/yt_dlp/extractor/globo.py b/yt_dlp/extractor/globo.py index 5f8c6a5ac6..4910c07401 100644 --- a/yt_dlp/extractor/globo.py +++ b/yt_dlp/extractor/globo.py @@ -62,13 +62,16 @@ class GloboIE(InfoExtractor): info = self._download_json( 'https://cloud-jarvis.globo.com/graphql', video_id, - query={'operationName': 'getVideoView', - 'variables': f'{{"videoId":{video_id}}}', - 'query': self._VIDEO_VIEW}, - headers={'content-type': 'application/json', - 'x-platform-id': 'web', - 'x-device-id': 'desktop', - 'x-client-version': '2024.12-5'})['data']['video'] + query={ + 'operationName': 'getVideoView', + 'variables': f'{{"videoId":{video_id}}}', + 'query': self._VIDEO_VIEW, + }, headers={ + 'content-type': 'application/json', + 'x-platform-id': 'web', + 'x-device-id': 'desktop', + 'x-client-version': '2024.12-5', + })['data']['video'] formats = [] video = self._download_json(