Add button for H.264 lossless output

This commit is contained in:
Joerg Mueller 2015-09-10 01:03:57 +10:00 committed by Campbell Barton
parent 8ff0d35744
commit a2a0e7aed9
Notes: blender-bot 2023-02-14 11:09:46 +01:00
Referenced by issue #46096, freestyle cycles render in stereo 3d only ads outline effect to one eye
Referenced by issue #46090, Blender game embedded player crash
Referenced by issue #46091, Video Sequencer rewrite *.png to _.png
Referenced by issue #46093, Thumbnails/previews of materials/textures not displaying in Blender filebrowser when only one thread is available
Referenced by issue #38719, VSE:Sound Clip with some .flac sound file show as length=0
1 changed files with 4 additions and 0 deletions

View File

@ -461,6 +461,10 @@ class RENDER_PT_encoding(RenderButtonsPanel, Panel):
split.prop(rd.ffmpeg, "format")
if ffmpeg.format in {'AVI', 'QUICKTIME', 'MKV', 'OGG', 'MPEG4'}:
split.prop(ffmpeg, "codec")
if ffmpeg.codec == 'H264':
row = layout.row()
row.label()
row.prop(ffmpeg, "use_lossless_output")
elif rd.ffmpeg.format == 'H264':
split.prop(ffmpeg, "use_lossless_output")
else: