1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-06 00:49:20 +02:00

[ie/peloton] Fix _skip

Authored by: bashonly
This commit is contained in:
bashonly
2024-06-11 23:52:42 -05:00
parent 03c126874a
commit 79ff3b92fc

View File

@ -41,7 +41,7 @@ class PelotonIE(InfoExtractor):
}, 'params': { }, 'params': {
'skip_download': 'm3u8', 'skip_download': 'm3u8',
}, },
'_skip': 'Account needed', 'skip': 'Account needed',
}, { }, {
'url': 'https://members.onepeloton.com/classes/player/26603d53d6bb4de1b340514864a6a6a8', 'url': 'https://members.onepeloton.com/classes/player/26603d53d6bb4de1b340514864a6a6a8',
'info_dict': { 'info_dict': {
@ -61,7 +61,7 @@ class PelotonIE(InfoExtractor):
}, 'params': { }, 'params': {
'skip_download': 'm3u8', 'skip_download': 'm3u8',
}, },
'_skip': 'Account needed', 'skip': 'Account needed',
}] }]
_MANIFEST_URL_TEMPLATE = '%s?hdnea=%s' _MANIFEST_URL_TEMPLATE = '%s?hdnea=%s'
@ -199,7 +199,7 @@ class PelotonLiveIE(InfoExtractor):
'params': { 'params': {
'skip_download': 'm3u8', 'skip_download': 'm3u8',
}, },
'_skip': 'Account needed', 'skip': 'Account needed',
} }
def _real_extract(self, url): def _real_extract(self, url):