diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-04 21:21:14 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-04 21:21:14 +0100 |
commit | 8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb (patch) | |
tree | 4698241eee4ff97c5787374f23ae1e28e8a70762 /stream/src/lib.rs | |
parent | 0e0d05a59b3db59d065ade4a08792125b891dc1a (diff) | |
download | jellything-8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb.tar jellything-8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb.tar.bz2 jellything-8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb.tar.zst |
recursive import
Diffstat (limited to 'stream/src/lib.rs')
-rw-r--r-- | stream/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/src/lib.rs b/stream/src/lib.rs index 8d4ee3a..fcd3f9d 100644 --- a/stream/src/lib.rs +++ b/stream/src/lib.rs @@ -39,7 +39,7 @@ pub fn stream_head(spec: &StreamSpec) -> StreamHead { StreamFormat::Original => StreamHead { content_type: "video/x-matroska", range_supported: true }, StreamFormat::Matroska => StreamHead { content_type: webm_or_mkv, range_supported: true }, StreamFormat::HlsMaster | StreamFormat::HlsVariant => StreamHead { content_type: "application/vnd.apple.mpegurl", range_supported: false }, - StreamFormat::JhlsIndex => StreamHead { content_type: "application/jellything-jhls+json", range_supported: false }, + StreamFormat::JhlsIndex => StreamHead { content_type: "application/jellything-seekindex+json", range_supported: false }, StreamFormat::Webvtt => StreamHead { content_type: "text/vtt", range_supported: false }, StreamFormat::Snippet => StreamHead { content_type: webm_or_mkv, range_supported: false }, } |