No internet connection
  1. Home
  2. How to

Send to RX in Mono Mode

By Fernando J. Alanis @Fernando_J_Alanis
    2022-03-08 20:21:42.452Z

    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.

    Solved in post #2, click to view
    • 1 replies
    1. 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();    
      

      :)

      ReplySolution