diff --git a/Cargo.toml b/Cargo.toml index b74cd09..acbaaf2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ffmpeg-sidecar" -version = "1.1.0" +version = "1.1.1" edition = "2021" description = "Wrap a standalone FFmpeg binary in an intuitive Iterator interface." authors = ["Nathan Babcock "] diff --git a/src/command.rs b/src/command.rs index 46f68a2..a1a19d1 100644 --- a/src/command.rs +++ b/src/command.rs @@ -609,7 +609,7 @@ impl FfmpegCommand { /// The interactive "Would you like to overwrite?" prompt is problematic, /// since it won't be parsed by the log parser and the process will appear /// to hang indefinitely without any indication of what's happening. - pub fn prevent_overwrite_prompt(&mut self) -> &mut Self { + fn prevent_overwrite_prompt(&mut self) -> &mut Self { let is_overwrite_arg = |arg| arg == "-y" || arg == "-n" || arg == "-nostdin"; if !self.get_args().any(is_overwrite_arg) { self.no_overwrite();