Forum
Some of you are into moviescores
I love making scores for games or films. And this is a documentary about filmscores in general. It has appeared this week and it’s absolutely lovely.
https://www.youtube.com/embed/x9VD1DqrabQ
1 post - 1 participant
Waves CR8 - very bad performance
Hello
I’m trying to use new Waves CR8 sampler in Renoise. While plugin’s interface is open, the performance is very bad, looks like GPU related problem. Renoise interface becomes unresponsive and stuttery and latency seems to jump quite a bit too. Absolutely no problem while interface is closed.
I have i7, 750GTX Ti and 32GB, while a bit aging now, should still handle such scenario without problem. No performance issues while testing with Reaper.
Is there anything I could try to make it work better ?
Thanks
1 post - 1 participant
VST3 Spectre copy paste instance -> settings lost
Strangely with the Spectre VST3, if you copy paste an instance with settings including A/B settings, the pasted instance has lost the settings. But if you now click A or B on the pasted instance, the settings are restored. Is this a bug by Renoise?
1 post - 1 participant
Air Hybrid 3 VST black screen
Note: This problem is the same/similar to Hybrid 3 VST - External editor window black in 3.2 - #4 by LegendaryTaunt , but I was unable to use the solution.
Renoise 3.4.2 (And tried 3.4.1)
- Launch Renoise
- Select “load recently saved song” and load.
- Click VST Hybrid 3 (3.0.7.1) to bring up the UI.
- Get blank VST UI screen in Renoise.
- External VST screen shows up behind Renoise. It cannot be moved or brought to front, but works.
Expected behaviour:
- VST UI shows up inside Renoise.
Extra: When loading the VST manually instead of with a song, it works fine.
1 post - 1 participant
Updated PADChoir - now does beautiful pads!
A sample generator that I mentioned before, now has an option added to make additive-synthesis pads, perfectly looped. Beautiful icy, hollow tones!
https://ryukau.github.io/PADchoir/
1 post - 1 participant
Overdub on/off option for copy/pasting delays
I did a test to see how Renoise handles grooves. If I have one column where every odd number line has one delay and then every even number line has another delay, could I use copy/paste to have them fill every single delay line in another column?
Unfortunately no. The blank delays overwrite the previously filled in ones.
I can understand why it would be like this I would just like to have an option that you can turn on and off for whether or not copy pasting columns that include blank sections copy paste the blanks or just are not copied and any value that lines up with a blank is left unchanged
I hope I said this in a way that makes sense. I included a photo so it’s easy to tell what I mean
My desired outcome from this experiment would be if the 10 delays I copy/pasted hadn’t overwritten the 20 delays but ignored them because the corresponding lines in what I was copying were blank. Instead it made those lines blank.
1 post - 1 participant
Redux: entering note-off in a keymapped phrase stops phrase until next MIDI note trigger
I have a MIDI pattern that triggers Redux phrases via MIDI notes, and Redux phrases are keymapped accordingly. In Redux, in phrase edit more while the phrase plays and is triggered by MIDI, when I enter a note-off, it stops the phrase from playing until the next MIDI note trigger.
Is there a way to disable this? I have a feeling the answer is no…
1 post - 1 participant
Issue with KORG M1 VST3 plugin
Hi,
When I load KORG M1 VST3 plugin, windows is not fully visible.
1 post - 1 participant
How do you have your instruments sorted in Files?
I downloaded a bunch and noticed it takes awhile to figure out which ones to use when creating music and wondered how y’all have your files sorted; if it’s under instrument type, likeability, or musical genre?
1 post - 1 participant
macOS: scripting editor: cmd-left/cmd-right should go to beginning of row and end of row - instead they don't
as per how macOS works with CMD-left and CMD-right, CMD-left is like pressing “Home” to get to the beginning of the row, and CMD-right is like pressing “End” to get to the end of the row.
This has been bothering me since 2009 and has never been fixed. could this be fixed?
p.s. as a bonus, CMD-up and CMD-down should be “place cursor on beginning of document” and “place cursor on end of document” instead of just scrolling one row or something. weird stuff
1 post - 1 participant
How to set autofade + interpolation + oversample _after_ sample has finished recording?
Hi, I’m trying to set up my samples so that autofade, interpolation and oversample are set after a sample has been recorded.
But when I try to just do this:
renoise.tool():add_menu_entry{name = "--Sample Editor:Paketti:Start Sampling (Record)", invoke=function() sample_and_to_sample_editor() renoise.app().window.sample_record_dialog_is_visible=true renoise.song().instruments[renoise.song().selected_instrument_index].samples[renoise.song().selected_sample_index].autofade=true renoise.song().instruments[renoise.song().selected_instrument_index].samples[renoise.song().selected_sample_index].interpolation_mode=4 renoise.song().instruments[renoise.song().selected_instrument_index].samples[renoise.song().selected_sample_index].oversample_enabled=trueit says:
*** ./recorder.lua:82: attempt to index field '?' (a nil value) *** stack traceback: *** ./recorder.lua:82: in function <./recorder.lua:79>so, what should i do, can i set some sort of a “create notifier before starting sampling, use notifier to set sample preferences, delete notifier” mess?
and how complex would it be?
1 post - 1 participant
macOS: Scripting Terminal & Editor... in Tools menu cannot be bound to a shortcut on macOS and then actually start
So here’s my situation.
I’ve added the “Scripting Terminal & Editor…” as a shortcut inside macOS. The shortcut displays correctly in the Renoise Tools menu. It is CMD-ALT-S.
But pressing CMD-ALT-S does not open the Scripting Terminal & Editor window.
There’s also no shortcut inside Renoise itself to launch the Scripting Terminal & Editor.
Is this a known bug? Will this be fixed at some point in time? Is there a way to use the Renoise API to launch the Scripting Terminal & Editor, so I could create a Renoise native tool that opens it?
It is extremely tedious to not even have this type of functionality when tooling around with a script with Renoise.
1 post - 1 participant
Can a Renoise Tool also contain the KeyBindings.xml so that they are easily imported?
Is there a way I could save KeyBindings.xml inside the Tool folder so that it would be easy to load it into Renoise Keys?
1 post - 1 participant
How to duplicate automation when duplicating pattern content
hi, so, i’ve got this nice little @joule pattern doubler in use for eons now, or maybe just a decade or something. it’s really to die for.
but i just realized that the doubler does not also double automation, which is a shame, as the result is:
what would the process of modifying this function to both double the pattern data and the automation data be?
function joulepatterndoubler() local s=renoise.song() local old_patternlength = s.selected_pattern.number_of_lines local resultlength = nil resultlength = old_patternlength*2 if not (resultlength > 512) then s.selected_pattern.number_of_lines = resultlength for track_index, patterntrack in ipairs(s.selected_pattern.tracks) do if not patterntrack.is_empty then for line_index, line in ipairs(patterntrack.lines) do if line_index <= old_patternlength then if not line.is_empty then patterntrack:line(line_index+old_patternlength):copy_from(line) else patterntrack:line(line_index+old_patternlength):clear() end end end end end else return end --Modification, cursor is placed to "start of "clone"" --renoise.song().selected_line_index = old_patternlength+1 s.selected_line_index = old_patternlength+s.selected_line_index -- s.transport.edit_step=0 end1 post - 1 participant
Volume "Width" to follow Hz/Note option?
I noticed that as notes are played up and down the line the shape of the Phase View loop erects and flattens; I was wondering if there was a way to have the width adapt to the notes being played for a solid circular pucker throughout the note range?
K thanks.
2 posts - 2 participants
Is it really true that the renoise API LUA documentation has not been updated for 2 years?
i went in thinking there’s going to be extra API stuff happening and improvements and changes…
but… at least the documentation has not changed for what feels like eons?
1 post - 1 participant
How to quickly query plugins (efx + instruments) for their full name instead of some rando "ID" that makes no sense
is there a way to query plugins for their actual names?
I get a list like this:
and it’s just not very user-friendly to figure out what is it that some of these are.
i mean, yes, you can figure out and deduce it and run “loadVST aumf:UcQ1:UHfX” and see which plugin pops up… but i’d much rather just extract the above list, and then use the IDs to identify what the plugin thinks it’s called, right?
1 post - 1 participant
When plugging *XY Pad to a vst/audiounit, should the interface autoupdate when moving XY?
hi, i’ve plugged the *XY Pad to a vst/audiounit.
I’ve correctly set up the X and Y to control a parameter of the plugin each.
when i have the plugin interface open, and click around in the xy pad interface in trackdsps
should i expect the visual parameters of the plugin (in this case, OhmForce OhmBoyz) to visually update?
i.e. should i expect that knobs would move in the interface, etc?
1 post - 1 participant
Set create new sample default to be 512 instead of.. 168?
hi, how would i set the “Create New Sample” dialog to always have 512 instead of 168 as the number of samples?
1 post - 1 participant
How to run something on startup, but not every single time the lua editor is saved?
hi, i’ve got this notifier that runs a startup function that starts playback and sets a random bpm.
cool.
but the problem is that this is run every single time i save within the scripting editor. how do i stop this from happening?
1 post - 1 participant