diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-03-05 15:04:47 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-03-05 15:04:47 +0100 |
| commit | 3fd3df27b1611867d8a2a224a7849bd4505406fa (patch) | |
| tree | 26669ddc088c8c2d1b9ea1fcdab12c708fb3a248 /stream/src/stream_info.rs | |
| parent | bc5f0f8ee3532f078674758212b222e009846e3a (diff) | |
| download | jellything-3fd3df27b1611867d8a2a224a7849bd4505406fa.tar jellything-3fd3df27b1611867d8a2a224a7849bd4505406fa.tar.bz2 jellything-3fd3df27b1611867d8a2a224a7849bd4505406fa.tar.zst | |
rename mpeg4 mp4
Diffstat (limited to 'stream/src/stream_info.rs')
| -rw-r--r-- | stream/src/stream_info.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs index adebda8..c1f09ce 100644 --- a/stream/src/stream_info.rs +++ b/stream/src/stream_info.rs @@ -184,7 +184,7 @@ fn containers_by_codec(codec: &str) -> Vec<StreamContainer> { 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, MPEG4], + "V_MPEG4/ISO/AVC" | "V_MPEGH/ISO/HEVC" | "A_AAC" => vec![Matroska, MP4], "S_TEXT/UTF8" | "S_TEXT/WEBVTT" => vec![Matroska, WebVTT, WebM, JVTT], _ => vec![Matroska], } |