Skip to content

Commit

Permalink
Fix: ffprobe is wrongly executed instead of ffmpeg by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kaegi committed Aug 15, 2019
1 parent f73f600 commit 23a5ae7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion alass-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alass-cli"
version = "1.0.0"
version = "1.0.1"
authors = ["kaegi <kaegi.dev@gmail.com>"]
description = "Automatic Language-Agnostic Subtitle Synchronization (Command Line Tool)"
repository = "https://github.com/kaegi/alass"
Expand Down
2 changes: 1 addition & 1 deletion alass-cli/src/video_decoder/ffmpeg_binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl VideoDecoderFFmpegBinary {
}

let ffmpeg_path: PathBuf = std::env::var_os("ALASS_FFMPEG_PATH")
.unwrap_or(OsString::from("ffprobe"))
.unwrap_or(OsString::from("ffmpeg"))
.into();

let args: Vec<OsString> = vec![
Expand Down

0 comments on commit 23a5ae7

Please sign in to comment.