From 7ef7093eb794a89421a3743396a29ba4d8ae0363 Mon Sep 17 00:00:00 2001 From: chaos Date: Wed, 9 Aug 2023 22:35:12 +0100 Subject: [PATCH] fix transcode command --- src/commands/transcode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/transcode.rs b/src/commands/transcode.rs index ac165c2..14fd8df 100644 --- a/src/commands/transcode.rs +++ b/src/commands/transcode.rs @@ -27,7 +27,7 @@ pub fn transcode_command( println!("Transcoding"); let input_file = File::from_path("".to_string(), PathBuf::from(&transcode_args.source)); - let output_file = File::from_path("".to_string(), PathBuf::from(&transcode_args.source)); + let output_file = File::from_path("".to_string(), PathBuf::from(&transcode_args.dest)); let transcode_config = transcode_preset_or_config( transcode_args.transcode_preset.as_ref(),