From c1a409f19a0f279d525090310ae4c623345326d4 Mon Sep 17 00:00:00 2001 From: Samrat Man Singh Date: Sun, 18 Feb 2024 00:52:35 +0000 Subject: [PATCH] Fix the `filter_complex` argument --- src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.rs b/src/command.rs index e872a70..149256a 100644 --- a/src/command.rs +++ b/src/command.rs @@ -466,7 +466,7 @@ impl FfmpegCommand { /// Note that with this option it is possible to use only lavfi sources /// without normal input files. pub fn filter_complex>(&mut self, filtergraph: S) -> &mut Self { - self.arg("-filtergraph"); + self.arg("-filter_complex"); self.arg(filtergraph.as_ref()); self }