Forum Replies Created

  • Guido Glaus

    July 27, 2012 at 12:32 pm in reply to: DVDA insists on rerendering AC3

    It’s a bit late but I just got the same effect.

    Looking at the render script I found that the script writer decided to mask out audio templates which have more channels than
    my (your) project has.
    So that’s why you can’t see the pro version here, even when the
    template name states “stereo”, because in the pro version you can increase the number of audio channels.

    If you want to fix that locally, open “Batch Render.cs” in the Script Menu directory and look for (~line 391):

    // filter out templates that have more channels than the project
    if (projectAudioChannelCount < template.AudioChannelCount) {
    continue;
    }

    change that to:
    // filter out templates that have more channels than the project
    //if (projectAudioChannelCount < template.AudioChannelCount) {
    // continue;
    //}

    Save the file with a meaningful name in the same directory.
    Depending on how you open the file you may need to save it to somewhere
    else first and then move it into the scripting directory.

    You may also need to rescan the scripts if you’re still in SV.

    Hope this still help’s 🙂

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy