-
Batch render code modification?
I took a standard batch render code… Already figured out how to batch regions with names, but I need couple more tweaks:
1) How to avoid calling out BatchRenderDialog? Can a script proceed directly to rendering regions(!) as wav 44.1/24?
2) That’s the piece of code I use for naming batched files:
fileName = Path.GetFileNameWithoutExtension(projectPath);
String regionFilename = String.Format("{0}{1}{2}",filename,
regionIndex + 1,
renderItem.Extension);I need to alter next:
a) Put a text for filename, say word “Legato”
b) The name of my project is a digit, say “86”. The project has one wav file with 12 regions. I’d like to have rendered files named like this:Legato_1_85 (1 stands for region number, 85 is the project name minus 1)
Legato_2_84
Legato_3_83
Legato_4_82 etc
…
Legato_12_74Would really appreciate the help! Thanks!
Sorry, there were no replies found.