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
Change of plans 2011, August 14 The local authorities decided to stop any performances that makes any kind of sound during Grolsch Block Party (only sport events is allowed to do that) so our planned outdoor gig has been moved to a place called ‘Högkvarteret’ at Närkesgatan 8 (click here for a map). Here’s the new schedule for the buskers:… Read More
Open Source Intelligence 2.0 2014, September 12022, September 20 Photo by Jujje Eriksson Noisebud’s – ‘Open Source Intelligence’ is an interactive installation and performance commissioned by Audiorama and Luger, originally created for ‘Stockholm Music & Arts festival, 1-3 August 2014. Open Source Intelligence is our most ambitious project to date. It took a whole summer to realize, it has been… Read More