We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 159f3f2 commit 7815b19Copy full SHA for 7815b19
src/encoding.rs
@@ -34,12 +34,12 @@ pub fn generate_command(state: &AV1Studio) -> Command {
34
if !state.input_file.is_empty() {
35
cmd.arg("-i").arg(&state.input_file);
36
} else {
37
- println!("ERROR : Input file path needs to be provided\n");
+ eprintln!("ERROR : Input file path needs to be provided\n");
38
}
39
if !state.output_file.is_empty() {
40
cmd.arg("-o").arg(&state.output_file);
41
42
- println!("ERROR : Output file path needs to be provided\n");
+ eprintln!("ERROR : Output file path needs to be provided\n");
43
44
if !state.scenes_file.is_empty() {
45
cmd.arg("--scenes").arg(&state.scenes_file);
0 commit comments