forked from bartvdbraak/blender
25a14bad61
encoding format Bypassed existing hardcoded ffmpeg presets that executed when changing format, replaced with bpy presets. Leaving old code there for now, haven't got python/rna access to the ffmpeg id properties.. Anyone know how to do this? Code snippets here: http://www.pasteall.org/11657/c
10 lines
253 B
Python
10 lines
253 B
Python
is_ntsc = (bpy.context.scene.render.fps != 25)
|
|
|
|
bpy.context.scene.render.ffmpeg_format = "DV"
|
|
bpy.context.scene.render.resolution_x = 720
|
|
|
|
if is_ntsc:
|
|
bpy.context.scene.render.resolution_y = 480
|
|
else:
|
|
bpy.context.scene.render.resolution_y = 576
|