diff options
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], } |