Skip to content

Commit

Permalink
Fix the filter_complex argument (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
samrat committed Feb 18, 2024
1 parent ee2e4c0 commit a3bd828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<S: AsRef<str>>(&mut self, filtergraph: S) -> &mut Self {
self.arg("-filtergraph");
self.arg("-filter_complex");
self.arg(filtergraph.as_ref());
self
}
Expand Down

0 comments on commit a3bd828

Please sign in to comment.