By Fernando J. Alanis @Fernando_J_Alanis
Hi all!
I want to add something to the code I use to send clips to iZotope RX so those clips are always sent in Mono Mode.
This is the code I use:
if (!win || !win.exists) {
win = sf.ui.proTools.audioSuiteOpenPlugin({
category: 'Noise Reduction',
name: 'RX 9 Connect'
}).window;
}
win.audioSuiteSetOptions({ processingInputMode: 'EntireSelection', processingOutputMode: 'CreateContinuousFile' });
win.getFirstWithTitle("Analyze").elementClick();
How can I achieve this?
Thanks in advance!
Fernando.
- Fernando J. Alanis @Fernando_J_Alanis
I just added a line from a code I found in the forum and it solved it. Here's the new code, just in case someone wonders in the future how to achieve this:
var win = sf.ui.proTools.getAudioSuiteWindow('RX 9 Connect'); if (!win || !win.exists) { win = sf.ui.proTools.audioSuiteOpenPlugin({ category: 'Noise Reduction', name: 'RX 9 Connect' }).window; } // This is the new line // sf.ui.proTools.firstAudioSuiteWindow.popupButtons.whoseTitle.is('input mode').first.popupMenuSelect({ menuPath: ["mono mode"], }); win.audioSuiteSetOptions({ processingInputMode: 'EntireSelection', processingOutputMode: 'CreateContinuousFile' }); win.getFirstWithTitle("Analyze").elementClick();
:)