diff options
Diffstat (limited to '')
-rw-r--r-- | yt_dlp/extractor/redge.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/redge.py b/yt_dlp/extractor/redge.py index 875d6f8..7cb91ee 100644 --- a/yt_dlp/extractor/redge.py +++ b/yt_dlp/extractor/redge.py @@ -51,14 +51,14 @@ class RedCDNLivxIE(InfoExtractor): 'only_matching': True, }] - """ + ''' Known methods (first in url path): - `livedash` - DASH MPD - `livehls` - HTTP Live Streaming - `livess` - IIS Smooth Streaming - `nvr` - CCTV mode, directly returns a file, typically flv, avc1, aac - `sc` - shoutcast/icecast (audio streams, like radio) - """ + ''' def _real_extract(self, url): tenant, path = self._match_valid_url(url).group('tenant', 'id') |