From fce38e5dbb413587860dfd86f8858ad6324d07cf Mon Sep 17 00:00:00 2001 From: Adrian Date: Sun, 4 Aug 2024 09:03:19 +0200 Subject: [PATCH] Release v0.1.9 --- Cargo.toml | 2 +- README.md | 2 +- src/bin.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 655b8e0..82a48a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mp4-merge" -version = "0.1.8" +version = "0.1.9" edition = "2021" authors = ["Adrian "] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 1884058..cbe62d0 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ mp4_merge IN_FILE1.mp4 IN_FILE2.mp4 IN_FILE3.mp4 ... --out result.mp4 ```toml [dependencies] -mp4-merge = "0.1.8" +mp4-merge = "0.1.9" ``` ```rust let files = ["IN_FILE1.mp4", "IN_FILE2.mp4"]; diff --git a/src/bin.rs b/src/bin.rs index f0bcb06..b2b478f 100644 --- a/src/bin.rs +++ b/src/bin.rs @@ -34,7 +34,7 @@ fn main() { if output_file.is_none() { eprintln!("Output file not specified!"); return; } let final_output_file = output_file.as_ref().unwrap(); - + println!("Output file {:?}", final_output_file); join_files(&files, final_output_file, |progress| {