Problem with RX De-Click Script
Hi there,
I'm having an issue with a a De-Click script that I think I modded from someone else's - I can't remember if I have and I don't remember who's if I did.
The script is designed to copy a selected segment of audio down to a new playlist, De-Click in RX9 with my default setting and then colour code the clip area in red.
It does everything correctly except the actual declicking. RX does process it as the RX9Dclk is present at the end of the clip name, but the process doesn't seem to actually declick it. When I open RX in AudioSuite and use it normally with my mouse and use the same default setting, everything is fine.
Maybe a PT/RX bug, but has anyone got any ideas?
Here is the script:
//Calling command "AudioSuite (control)" from package "AudioSuite" (installed from user/pkg/version "8Lk9YFZW3EbJKb7iO7F1FvsCcus2/ck8kanx4d000l7910huzgn7ff/ckuqr8oj40002eb10qany35ie")
sf.soundflow.runCommand({
commandId: 'user:ckzg4uutx0007a6109bj2u4f6:ckev85aht000ews10fin6svso',
props: {
audioSuitePlugin: "RX 9 De-Click",
multiInputMode: "MultiInput",
handleLenght: "0",
saveKeeping: "newPlaylist",
action: "Render",
pluginWindow: "NothingSpecific",
colorClip: "Red",
}
});
sf.ui.proTools.colorsSelect({
colorTarget: "ClipsInTracks",
colorNumber: 9,
});
// sf.wait({ intervalMs: 500 });
sf.ui.proTools.firstAudioSuiteWindow.windowClose();
Thank you,
Harry
- Kitch Membery @Kitch2022-03-06 03:50:23.587Z
Hi @Harry_Bristow,
It looks like this command came from @Nick.Leyers's "AudioSuite (control)" Command from his "AudioSuite" package.
I've moved this post to the associated Forum package and have I've tagged him in this post. Maybe he can help you out. :-)
Rock on!
- HIn reply toHarry_Bristow⬆:Harry Bristow @Harry_Bristow
Thanks @Kitch. I'll check that out on package forum.
- NIn reply toHarry_Bristow⬆:Nick Leyers @Nick.Leyers
Hi Harry
Hmm, that's weird. It definitely seems like a bug from PT because the naming is done, but the processing is not.
I've seen something familiar with RX connect when I transfer hours of material from RX back to PT. If the RX connect module is still receiving/buffering the material, but SF thinks it's ready, the plugin is rendered without the new RXed material. And so you only have the name changed. But there is a good reason in that case. Declick does not need a lot of buffering but it may be worth trying to insert a line of 'wait'-script, just before the rendering is done?
In any case, it's not the way it should work :-)- HHarry Bristow @Harry_Bristow
Thanks Nick, that's some really good info.
It was working in other sessions but now seems to be having problems. The session that I'm currently working on is less intensive than the ones in which it was working, which is strange.
But I think that you're most likely correct about the PT bug/system lag. I'll try experimenting with adding wait scripts between each process and see if that works.
Thanks again for your help and for these scripts and macros, they're great!