From: Kostya Shishkov Date: Mon, 30 Mar 2026 13:55:27 +0000 (+0200) Subject: add a raw profile for MOV muxer X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=46c35aa10bd6c802dd39304412a3454b830f91c7;p=nihav-encoder.git add a raw profile for MOV muxer --- diff --git a/src/main.rs b/src/main.rs index f9b8ab0..61c5b2c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -911,4 +911,16 @@ const PROFILES: &[(&str, &[ProfileDef])] = &[ } }, ]), + ("mov", + &[ + ProfileDef { + name: "raw", + profile: EncodingProfile { + vname: "rawvideo", + voptions: &[("pixfmt", Some("rgb24"))], + aname: "pcm", + aoptions: &[], + } + }, + ]), ];