Files
mhdzumair 95843cc3c9 Implement LiveTVExtractor and improve error handling
Added LiveTVExtractor for extracting M3U8 and MPD streams. Enhanced error handling by introducing ExtractorError and updated existing extractors to use this new error class. Removed support for unused request headers and integrated caching for extractor results.
2024-11-17 18:28:52 +05:30

18 lines
291 B
Python

SUPPORTED_RESPONSE_HEADERS = [
"accept-ranges",
"content-type",
"content-length",
"content-range",
"connection",
"transfer-encoding",
"last-modified",
"etag",
"cache-control",
"expires",
]
SUPPORTED_REQUEST_HEADERS = [
"range",
"if-range",
]