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 Quill – a versatile compressor 2022, March 142025, May 27 First I’d like to welcome Dizzzie and Byeongsu who recently joined my Patreon! Thank you, much appreciated!And Vladimir, I wrote you a manual! =) It’s linked further down. I’ll make it part of the setup with the next version. Quill, my secret dynamic weapon for the past year. Quill is… Read More
Norberg Festival 2011 2011, July 31 We’re home again after a 3 intensive days of electronic mayhem. We have seen an equal portion of geniuses and pure crap. Geniuses are good cause you get inspired to do better, crap is even better since you get that feeling that you’re the fucking king of music and can do everything better… Read More
Noisebud Listen 3.0 2022, February 2 Listen is a monitor control extender, it has functions found in expensive monitor controllers and mastering consoles and adds it to your DAW. Listen is made to be used with a touch screen but you can use any MIDI control surface (or other input devices such as Streamdeck) if you… Read More