aboutsummaryrefslogtreecommitdiff
path: root/stream
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-01-04 21:21:14 +0100
committermetamuffin <metamuffin@disroot.org>2024-01-04 21:21:14 +0100
commit8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb (patch)
tree4698241eee4ff97c5787374f23ae1e28e8a70762 /stream
parent0e0d05a59b3db59d065ade4a08792125b891dc1a (diff)
downloadjellything-8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb.tar
jellything-8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb.tar.bz2
jellything-8de1ab1c18e6be051132e2bfe6a6d78b3f8c7dbb.tar.zst
recursive import
Diffstat (limited to 'stream')
-rw-r--r--stream/src/lib.rs2
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 },
}