Fix T53276: encoding output quality UI clarification.
This commit is contained in:
@@ -457,8 +457,8 @@ class RENDER_PT_encoding(RenderButtonsPanel, Panel):
|
||||
pbox.prop(ffmpeg, "max_b_frames", text="")
|
||||
pbox.enabled = ffmpeg.use_max_b_frames
|
||||
|
||||
if ffmpeg.constant_rate_factor == 'NONE':
|
||||
split = layout.split()
|
||||
split.enabled = ffmpeg.constant_rate_factor == 'NONE'
|
||||
col = split.column()
|
||||
col.label(text="Rate:")
|
||||
col.prop(ffmpeg, "video_bitrate")
|
||||
@@ -477,8 +477,8 @@ class RENDER_PT_encoding(RenderButtonsPanel, Panel):
|
||||
if ffmpeg.format != 'MP3':
|
||||
layout.prop(ffmpeg, "audio_codec", text="Audio Codec")
|
||||
|
||||
if ffmpeg.audio_codec != 'NONE':
|
||||
row = layout.row()
|
||||
row.enabled = ffmpeg.audio_codec != 'NONE'
|
||||
row.prop(ffmpeg, "audio_bitrate")
|
||||
row.prop(ffmpeg, "audio_volume", slider=True)
|
||||
|
||||
|
@@ -5467,7 +5467,7 @@ static void rna_def_scene_ffmpeg_settings(BlenderRNA *brna)
|
||||
};
|
||||
|
||||
static const EnumPropertyItem ffmpeg_crf_items[] = {
|
||||
{FFM_CRF_NONE, "NONE", 0, "None; use constant bit-rate",
|
||||
{FFM_CRF_NONE, "NONE", 0, "None; use custom bitrate",
|
||||
"Use constant bit rate, rather than constant output quality"},
|
||||
{FFM_CRF_LOSSLESS, "LOSSLESS", 0, "Lossless", ""},
|
||||
{FFM_CRF_PERC_LOSSLESS, "PERC_LOSSLESS", 0, "Perceptually lossless", ""},
|
||||
|
Reference in New Issue
Block a user