What’s cooking – Week 10, 2023 Noisebud, 2023, March 92025, May 27 This post is not about a plugin but a Reaper Script. I wrote this script to change the project sample rate to the same rate as the selected media item in Reaper. I often forget to check the sample rate of incoming mix files for mastering and it is so annoying when I realize halfway through that I have been working at the wrong rate, this script bypasses my lazy brain and sets the sample rate for me. Here’s the code for the ReaScript: — Get the currently selected media item local item = reaper.GetSelectedMediaItem(0, 0) — Check if a media item is selected if item ~= nil then take = reaper.GetActiveTake(item); source = reaper.GetMediaItemTake_Source(take); — Get the sample rate of the selected media item srate = reaper.GetMediaSourceSampleRate(source) — Set the project sample rate to the same as the selected media item reaper.SNM_SetIntConfigVar(‘projsrate’, srate) reaper.Audio_Quit() reaper.Audio_Init() else — If no media item is selected, display an error message reaper.ShowMessageBox(“Please select a media item.”, “Error”, 0) end Blog
Noisebud News: FOAL v1.01, Mimer-verb, merch, and a few thoughts about updates 2026, May 20 FOAL v1.01 is out. I released the first version of FOAL a little over a week ago, and the first update is already here. FOAL v1.01 is currently available for the higher paying tiers. The demo can be tested by everyone, and if you do not want to wait, FOAL… Read More
Fletchy-Muncher 2 2022, February 182025, May 27 Fletchy-Muncher helps you find out if your mix is too harsh sounding. It does that by applying an inverted Fletcher-Munson curve (the opposite to the plugin Smile). By doing that, the part of the spectrum where our ears are most sensitive will stand out. You should be able to go… Read More
Pinky 2024, February 272025, May 27 Hey People, I decided to set this little gem free for all, enjoy! Hopefully, I have some more Patreon-exclusive fun and useful stuff coming in a week or so, I just need to beat this flu so that my brain starts to work again. ——————————————————————————– This is a Patreon-only alpha-build… Read More