mirror of
https://github.com/Viren070/mediaflow-proxy.git
synced 2025-12-01 23:22:12 +01:00
95843cc3c9
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.
18 lines
291 B
Python
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",
|
|
]
|