Replaced lossless encoding with high quality ( -qp 1 instead of -qp 0 ) because (quote ffmpeg.org): Most non-FFmpeg based players will not be able to decode lossless (but YouTube can), so if compatibility is an issue you should not use lossless.

This commit is contained in:
CrushedPixel
2015-07-15 23:59:23 +02:00
parent 57100735a4
commit 7790aee3cb
3 changed files with 10 additions and 10 deletions

View File

@@ -176,7 +176,7 @@ public class GuiRenderSettings extends GuiScreen {
ignoreCamDir = new GuiCheckBox(GuiConstants.RENDER_SETTINGS_STATIC_CAMERA, 0, 0, I18n.format("replaymod.gui.rendersettings.stablecamera"), false);
ignoreCamDir.enabled = false;
encodingPresetDropdown.setSelectionIndex(0);
encodingPresetDropdown.setSelectionIndex(2);
permanentButtons.add(advancedButton);
permanentButtons.add(renderButton);