From 46c35aa10bd6c802dd39304412a3454b830f91c7 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Mon, 30 Mar 2026 15:55:27 +0200 Subject: [PATCH] add a raw profile for MOV muxer --- src/main.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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: &[], + } + }, + ]), ]; -- 2.39.5