diff --git a/Cargo.lock b/Cargo.lock index 1166495..2843fa8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -303,7 +303,7 @@ dependencies = [ [[package]] name = "gopro-chaptered-video-assembler" -version = "0.5.0" +version = "0.5.1" dependencies = [ "assert_cmd", "clap", diff --git a/Cargo.toml b/Cargo.toml index 8a99b4b..af58063 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gopro-chaptered-video-assembler" -version = "0.5.0" +version = "0.5.1" edition = "2021" authors = ["Aaron Lichtman "] description = "Assembles all chaptered GoPro video files in a directory into 'complete' files." diff --git a/README.md b/README.md index ca9bddb..1b9ed8d 100644 --- a/README.md +++ b/README.md @@ -65,14 +65,11 @@ Debugging in VSCode works well. ## Example Usage ```bash -$ gopro-chaptered-video-assembler --input "/media/alichtman/Extreme SSD/Rock-Climbing/Gunks/High Exposure/" --output combined +$ gopro-chaptered-video-assembler --input "/media/alichtman/Extreme SSD/Rock-Climbing/Gunks/High Exposure/" --output output ╔═══════════════════════════════════════╗ -║ gopro-chaptered-video-assembler 0.4.0 ║ +║ gopro-chaptered-video-assembler 0.5.1 ║ ╚═══════════════════════════════════════╝ -01:49:33 [INFO] combined directory does not exist, attempting to create it now... -01:49:33 [INFO] /media/alichtman/Extreme SSD/Rock-Climbing/Gunks/High Exposure/combined directory exists, using it... 01:49:33 [INFO] Found 39 files in directory: /media/alichtman/Extreme SSD/Rock-Climbing/Gunks/High Exposure -01:49:33 [WARN] Failed to parse GoPro video file: combined is a directory 01:49:33 [INFO] Found 5 video(s) with 11 total chapters to combine 01:49:33 [INFO] { 7515: [ @@ -146,7 +143,7 @@ Proceed? (y/n) ... ``` -The `combined` directory will be created in the current directory, and all output files will be found there. +The `output` directory will be created in the current directory, and all output files will be found there. Additionally, paths with apostrophes (and theoretically other special characters) are supported: diff --git a/src/main.rs b/src/main.rs index de6bbdd..2f568d4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,7 +26,7 @@ fn main() { initialize_logging(); print_header(); let args = CliArgs::parse(); - print!("{:#?}", args); + // print!("{:#?}", args); // Canonicalize input path up front. We don't handle the output path until later to avoid creating the output path if the user cancels the operation. let input_dir = args