fix incorrectly setting vaapi output when copying codec
This commit is contained in:
parent
5746939c06
commit
083bcb07c2
1 changed files with 12 additions and 10 deletions
|
@ -257,16 +257,18 @@ impl Ffmpeg {
|
|||
|
||||
// append encoding options
|
||||
const QUALITY: &str = "22";
|
||||
if vaapi {
|
||||
cmd.arg("-c:v").arg("h264_vaapi");
|
||||
if self.video_bitrate.is_none() {
|
||||
cmd.arg("-rc_mode").arg("CQP");
|
||||
cmd.arg("-global_quality").arg(QUALITY);
|
||||
}
|
||||
} else if venc {
|
||||
cmd.arg("-c:v").arg("libx264");
|
||||
if self.video_bitrate.is_none() {
|
||||
cmd.arg("-crf").arg(QUALITY);
|
||||
if venc {
|
||||
if vaapi {
|
||||
cmd.arg("-c:v").arg("h264_vaapi");
|
||||
if self.video_bitrate.is_none() {
|
||||
cmd.arg("-rc_mode").arg("CQP");
|
||||
cmd.arg("-global_quality").arg(QUALITY);
|
||||
}
|
||||
} else {
|
||||
cmd.arg("-c:v").arg("libx264");
|
||||
if self.video_bitrate.is_none() {
|
||||
cmd.arg("-crf").arg(QUALITY);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
cmd.arg("-c:v").arg("copy");
|
||||
|
|
Loading…
Reference in a new issue