From 7dee77aaf7b663f65c7f0da514839b7ccc965f52 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Thu, 12 Mar 2026 15:07:24 +0100 Subject: dont write clusters to intermediate buffer --- stream/src/stream_info.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'stream') diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs index 0d4350f..71ccb1f 100644 --- a/stream/src/stream_info.rs +++ b/stream/src/stream_info.rs @@ -184,7 +184,8 @@ fn containers_by_codec(codec: &str) -> Vec { use StreamContainer::*; match codec { "V_VP8" | "V_VP9" | "V_AV1" | "A_OPUS" | "A_VORBIS" => vec![Matroska, WebM], - "V_MPEG4/ISO/AVC" | "V_MPEGH/ISO/HEVC" | "A_AAC" => vec![Matroska, MP4], + "V_MPEG4/ISO/AVC" => vec![Matroska, MP4], + // "V_MPEG4/ISO/AVC" | "V_MPEGH/ISO/HEVC" | "A_AAC" => vec![Matroska, MP4], // TODO not supported yet "S_TEXT/UTF8" | "S_TEXT/WEBVTT" => vec![Matroska, WebVTT, WebM, JVTT], _ => vec![Matroska], } -- cgit v1.3