fix: remove niceness to threads arg from ffmpeg command builder.
renice.rs already fixes niceness.
This commit is contained in:
parent
b07a9b3d8e
commit
17cca457b9
1 changed files with 0 additions and 5 deletions
|
@ -49,11 +49,6 @@ impl FFmpegCommandOptions {
|
|||
args.push(threads.to_string());
|
||||
}
|
||||
|
||||
if let Some(niceness) = self.niceness {
|
||||
args.push("-threads".to_string());
|
||||
args.push(niceness.to_string());
|
||||
}
|
||||
|
||||
if let Some(allow_overwrite) = self.overwrite {
|
||||
if allow_overwrite {
|
||||
args.push("-y".to_string());
|
||||
|
|
Loading…
Reference in a new issue