13
0

vtl: update to ffmpeg v1.2.1 [lib]x264 option.

This commit is contained in:
Robin Gareus 2013-09-08 18:26:02 +02:00
parent 5ec69e2374
commit 25cd52b392

View File

@ -257,8 +257,7 @@ ExportVideoDialog::ExportVideoDialog (PublicEditor& ed, Session* s)
video_codec_combo.append_text("mjpeg");
video_codec_combo.append_text("mpeg2video");
video_codec_combo.append_text("mpeg4");
video_codec_combo.append_text("x264 (baseline)");
video_codec_combo.append_text("x264 (hq)");
video_codec_combo.append_text("h264");
video_codec_combo.append_text("vpx (webm)");
video_codec_combo.append_text("copy");
video_codec_combo.set_active(4);
@ -612,13 +611,8 @@ ExportVideoDialog::encode_pass (int pass)
ffs["-strict"] = "-2";
}
if (video_codec_combo.get_active_text() == "x264 (hq)" ) {
if (video_codec_combo.get_active_text() == "h264" ) {
ffs["-vcodec"] = "libx264";
ffs["-vprofile"] = "high";
}
else if (video_codec_combo.get_active_text() == "x264 (baseline)" ) {
ffs["-vcodec"] = "libx264";
ffs["-vpre"] = "baseline";
}
else if (video_codec_combo.get_active_text() == "vpx (webm)" ) {
ffs["-vcodec"] = "libvpx";