Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DV.py « ffmpeg « presets « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db1bc0fac92019213daf77816c1dce87cf17558a (plain)
1
2
3
4
5
6
7
8
9
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