0% found this document useful (0 votes)
91 views

Vidiator Sample Render Script

This document contains an XML configuration file for rendering an animated movie using the Vee3D renderer. It specifies settings like using 1 processing pipe with 4x anti-aliasing at a resolution of 352x288. It defines several video encoders for different formats/sizes and an image preview encoder. The main target renders a scene called "luke.x3dv" with audio from "Luke_audio.wav" and saves it as "Luke.wmv" using the email encoder settings.

Uploaded by

danward7
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
91 views

Vidiator Sample Render Script

This document contains an XML configuration file for rendering an animated movie using the Vee3D renderer. It specifies settings like using 1 processing pipe with 4x anti-aliasing at a resolution of 352x288. It defines several video encoders for different formats/sizes and an image preview encoder. The main target renders a scene called "luke.x3dv" with audio from "Luke_audio.wav" and saves it as "Luke.wmv" using the email encoder settings.

Uploaded by

danward7
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

<project name="TintedTexture" default="main" basedir=".

">
<target name="main">
<!-- Can use standard ant tasks - such as echo, copy, etc-->
<echo message="Start rendering" />
<!-- Vee3D task to render animated movies-->
<vee3d rendererType="RENDER_WINDOWED">
<MultiPipeConfiguration
npipes="1"
aa="4"
width="352" height="288"
/>

<encoders>

<encoder
name="test"
sizeLimit="250000"
width="176"
height="144"
outputSuffix="_test.3gp"
videoBitrate="64000"
frameRate="10000"
audioBitrate="11000"
audioFormat="AMR"
sizeLimitStepSize=".05"
videoEncoderVBVSize="256000"
videoEncoderPeakBitsPerFrame="64000"
iframeInterval="30000"
/>

<encoder
name="email"
width="352"
height="288"
outputSuffix=".wmv"
videoFormat="WMV9"
videoBitrate="400000"
fileFormat="FILEFORMAT_ASF"
frameRate="30000"
audioFormat="WMA9"
audioFreq="44100"
audioBitrate="128000"
/>

<PreviewFrames
width="500" height="409" name="i500"
outputSuffix=".png" saveInterval="30"
savelastFrame="true"
prefixZeroes="4"

/>

</encoders>
<!-- outputPrefix="xxx"
this is where the name of the character goesexple Dr.Smooth_
-->

<!-- encoder="email,i500,test" -->


<SetRender
encoder="email"
outputPrefix="Luke"
sceneFrameStep="0.033333333"

width="352" height="288"

scene="luke.x3dv"
>
<!-- output="xxx"
this is where the name of the video goes, it has a relation to the
audio example "happy birthday" -->

<Render
output="Luke"
audio="Luke_audio.wav"
background="surfer_background.jpg"

/>

<!--background="xxx.jpg"-->
<!--PhonemeData="NicoSilent_audio.wav.phonemes.txt"-->

<!-- can be duplicated, to do multiple renders


<Render
output="birthday"
audio="birthday.wav"
/>
<Render
output="chicken day"
audio="chicken day.wav"
/>
<Render
output="Name of Video"
audio="xxx.wav"
/>
-->

</SetRender>
</vee3d>
<echo message="Done rendering" />
</target>
</project>

You might also like