Skip to content

Commit

Permalink
remove kill_on_drop(true) from Command (#193)
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Butler <[email protected]>
  • Loading branch information
whipstein and alexheretic authored Dec 22, 2024
1 parent a06596d commit 8e0d142
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/target
/aur
*.log
.DS_Store
*.json
3 changes: 1 addition & 2 deletions src/vmaf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ pub fn run(
);

let mut cmd = Command::new("ffmpeg");
cmd.kill_on_drop(true)
.arg2_opt("-r", fps)
cmd.arg2_opt("-r", fps)
.arg2("-i", distorted)
.arg2_opt("-r", fps)
.arg2("-i", reference)
Expand Down

0 comments on commit 8e0d142

Please sign in to comment.