We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924ef87 commit af0c1a9Copy full SHA for af0c1a9
src/encoding.rs
@@ -33,9 +33,13 @@ pub fn generate_command(state: &AV1Studio) -> Command {
33
// Build command arguments
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");
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");
43
44
if !state.scenes_file.is_empty() {
45
cmd.arg("--scenes").arg(&state.scenes_file);
0 commit comments