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 🙂