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: 4cdb2f271b984bfb00a150ff8b7a6c0500d2173b (plain)
1
2
3
4
5
6
7
8
9
10
import bpy
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