Integrated Loudness using iZotope's Insight 2 as an AudioSuite Plug-in
Title
Integrated Loudness using iZotope's Insight 2 as an AudioSuite Plug-in
What do you expect to happen when you run the script/macro?
I want to be able to access the Integrated Loudness Value in order to add it to the tracks comments
Are you seeing an error?
What happens when you run this script?
I run the script and it seems like SoundFlow is restarting each time I attempt to run it
How were you running this script?
I used a keyboard shortcut within the target app
How important is this issue to you?
4
Details
{ "inputExpected": "I want to be able to access the Integrated Loudness Value in order to add it to the tracks comments", "inputIsError": false, "inputWhatHappens": "I run the script and it seems like SoundFlow is restarting each time I attempt to run it", "inputHowRun": { "key": "-Mpfwh4RkPLb2LPwjePT", "title": "I used a keyboard shortcut within the target app" }, "inputImportance": 4, "inputTitle": "Integrated Loudness using iZotope's Insight 2 as an AudioSuite Plug-in" }
Source
let audioSuiteWin = sf.ui.proTools.windows.whoseTitle.is('Audio Suite: Insight 2').first
let pluginView = audioSuiteWin.children.whoseTitle.is('PluginView').first
let parameter = pluginView.children.whoseTitle.is('Integrated Loudness Value').first
let integratedLoudness = parameter.value.invalidate().value
log(integratedLoudness)
Links
User UID: EoVu20w2ZRTvmJvgozc57ZXuAhU2
Feedback Key: sffeedback:EoVu20w2ZRTvmJvgozc57ZXuAhU2:-Nq3cofBl8PtA56Dhp5X
Feedback ZIP: jDMYu9UcBUS0kPLvQt7a9VZIM7JOpwGfQl8ImeucMfOIsLX69/7FqQRvmaakXJRB6ugQFEakIs9SyzIU4HKEk4wrYxx3WKEqx/qF7wzhPzHYRh9O8hyDIZALHU0OUEoF4fqZx4C26PSaN/+pynULwDitm6k4TdlU0pS5x+1pzWFihWVjNuWdWFIAWH5rV1ItrC69f8A1hkjJ8MU/LkFpNS9u6fEdfCFZPLdGbn16toS2OQLZ+qviTUUsP+UNvWNDgvneD3dp+Yn0LsHO2aClNh7ebt5gh/otmTerF7LW0iapmED7a1OrAhgZL93hPSPbQgmx9+VyKoSY55UKsx4yUEu6HuE8dw9d+csbBL6Yuz0=
- Nathan Salefski @nathansalefski
Parameter doesn't correlate with the actual readout of the Integrated loudness. However to fix the error, the below change must be made:
let audioSuiteWin = sf.ui.proTools.windows.whoseTitle.is('Audio Suite: Insight 2').first let pluginView = audioSuiteWin.children.whoseTitle.is('PluginView').first let parameter = pluginView.children.whoseTitle.is('Integrated Loudness Value').first let integratedLoudness = parameter.value.invalidate().intValue log(integratedLoudness)
- Progress