2010-07-08 16:10:14 +00:00
|
|
|
import bpy
|
2010-03-13 00:17:52 +00:00
|
|
|
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
|