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: 46d2a0a4a2f976860df092216fd8a0bb2b058f2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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

bpy.context.scene.render.ffmpeg_audio_mixrate = 48000
bpy.context.scene.render.ffmpeg_audio_codec = "PCM"