vtl: update ffmpeg option sameq/qscale

This commit is contained in:
Robin Gareus 2013-06-16 15:30:15 +02:00
parent d3f92cd1fb
commit 24af570d06

View file

@ -581,7 +581,7 @@ ExportVideoDialog::encode_pass (int pass)
ffs["-acodec"] = audio_codec_combo.get_active_text();
if (video_bitrate_combo.get_active_text() == "retain" ) {
ffs["-sameq"] = "-y"; // we use '-y' as dummy parameter for non key/value options
ffs["-qscale"] = "0";
} else {
ffs["-b:v"] = video_bitrate_combo.get_active_text();
}