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)
|
|
|
|
|
2012-01-13 12:34:41 +00:00
|
|
|
bpy.context.scene.render.ffmpeg.format = "DV"
|
2010-03-13 00:17:52 +00:00
|
|
|
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
|
2010-12-05 16:14:34 +00:00
|
|
|
|
2012-01-13 12:34:41 +00:00
|
|
|
bpy.context.scene.render.ffmpeg.audio_mixrate = 48000
|
|
|
|
bpy.context.scene.render.ffmpeg.audio_codec = "PCM"
|
|
|
|
bpy.context.scene.render.ffmpeg.audio_channels = "STEREO"
|