Sony Vegas, Template-Based Encoding Program?? or not??
In my custom recording program, I can decide the fps at which I will record the video.
I scripted MyUniqueRender.cs like this:
csharp
// Finding FPS == 12, Resolution == 1280x400 Template...
if (template.VideoFrameRate == 12 && template.VideoWidth == 720 && template.VideoHeight == 400)
{
mp4Renderer = renderer;
mp4Template = template; break;
}
However, come to think of it, it's quite rare for Vegas to have such a template. So...
Could you give me a code tip to create this unique video?