Skip to content

Commit

Permalink
Release v0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianEddy committed Aug 4, 2024
1 parent e10e9ec commit fce38e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mp4-merge"
version = "0.1.8"
version = "0.1.9"
edition = "2021"
authors = ["Adrian <adrian.eddy@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
Expand Down
2 changes: 1 addition & 1 deletion src/bin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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| {
Expand Down

0 comments on commit fce38e5

Please sign in to comment.