Feed aggregator

How to retain an instrument, wipe song, start a new song and add the instrument in?

Renoise Forum - April 1, 2020 - 23:35

@esaruoho wrote:

Hi, I used to have this nice little script that would take the first sample of the instrument (yep, most of my instruments are 1 sample only), create a new renoise song, paste it in. But it no longer works.

function WipeRetain() local tmpvariable=os.tmpname("wav") local s=renoise.song() s.instruments[s.selected_instrument_index].samples[1].sample_buffer:save_as(tmpvariable, "wav") if not renoise.tool().app_new_document_observable:has_notifier(WipeRetain_) then renoise.tool().app_new_document_observable:add_notifier(WipeRetain_) else renoise.tool().app_new_document_observable:remove_notifier(WipeRetain_)end renoise.app():new_song() end function WipeRetain_() local s=renoise.song() s.instruments[s.selected_instrument_index].samples[1].sample_buffer:load_from(tmpvariable) renoise.app().window.active_middle_frame=4 renoise.app():show_status(tmpvariable) os.remove(tmpvariable) renoise.tool().app_new_document_observable:remove_notifier(WipeRetain_) end

I’m wondering what would be required to make this work again in 3.1.1?

Posts: 1

Participants: 1

Read full topic

Categories: Forum

R3.2.1 (Nov.7.2019) empty instrument plugin list (Linux)

Renoise Forum - April 1, 2020 - 22:37

@asteriisk wrote:

Hello! New to Renoise, glad to be learning!

My build of Renoise seems to be unable to find (or at least, display…?) any VST instruments I have on my system. I have tried fixing my $VST_PATH variable to no avail. The plugin dropdown list remains purely blank, with no text displayed at all.

I installed v3.1.1, and my instruments are displayed and working as expected. So, for now, I’ve began using 3.1.1.

I’m running Manjaro Linux, with the 5.0.5-arch1-1-vfio kernel.

Thanks for any help, and loving the software aside from this hiccup!!

Posts: 2

Participants: 1

Read full topic

Categories: Forum

Major vst crash help me

Renoise Forum - April 1, 2020 - 21:55

@stoiximan wrote:

On ubuntu 19.10 yesterday this happened and when i load again the project the vst goes to the default preset and i cant remember the preset name to continue my work

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Increase negative and positive maximum of track delay

Renoise Forum - April 1, 2020 - 21:54

@toimp wrote:

There is currently a limit of -100ms up to 100ms. Would be nice, when this would be hihger for samples like this:
Bitwig goes from -500ms up to 500ms. I think this would be enough.

Another solution would be per sample delay. This was suggested here several times:
Sample Snap-to-beat Point Ideas & suggestions Hi! Probably you all met the same problem: Let’s say, you have a realistic sample (a flute, a shaker, or a bass drum), and you have to cut the “valuable” beginning of the sample (or place it upper in the pattern editor) to match the beat when playing the song. Is there any well-tried solution? If no, I have an idea: In the sample editor there would be an additional vertical line (similar to the loop start/end) which could be placed anywhere to mark the sample position which should be snapped …
Crazy Idea - Beat-Centered Note Offsets Ideas & suggestions Ok, I know this won’t fly because it probably breaks the underlying architecture and backwards compatability, but what about having delay offsets positively and negatively centered on the note? Why does this matter? It makes more sense from a musical standpoint. The pulse of the beat is at the core of any rhythm, but the delay offsets as they are now have an asymmetric relationship to that. This will tend to “nudge” the composition process in ways that are not musical. For example, if I’m addi…
Note Align (Sample Hit Point) Ideas & suggestions Like this:

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Rendering Tracks to Separate Files Sums Send Tracks Together

Renoise Forum - April 1, 2020 - 20:42

@TwoThreeZero wrote:

If I render a project into separate files for each track, any tracks that are being routed to a send track will get summed together into one wav file.

Example: I have three tracks called Pads, Bass and Vocals, all being routed to a send track called Sidechain. If I render this project into separate wav files for each track, I’ll end up with one single wav file called Sidechain that has all the signals from Pads, Bass and Vocals.

I understand the logic behind this decision, but it would be really great to have an option to also separately render the original pre-routed track signals as well.

Posts: 2

Participants: 2

Read full topic

Categories: Forum

A linux soundfonts and midi rig

Renoise Forum - April 1, 2020 - 16:09

@The_Traveler wrote:

I’ve been using this rig for the sole purpose of working with midi tracks using only soundfonts. It uses jackd2/alsa with qjackctl, qsynth, qtractor and qjackrcd in a customized lxqt lubuntu install. You can see the four listed applications with the “graph” panel from qjackctl open on the lower left showing the connections. If anyone is interested I’m happy to answer your questions.

Posts: 1

Participants: 1

Read full topic

Categories: Forum

How to write to a Instrument Plugin parameter?

Renoise Forum - April 1, 2020 - 13:20

@esaruoho wrote:

Hi, I’ve managed to do a dump of a plugin’s parameters.

I’ve got a shortcut that opens that specific instrument plugin.

I’d like to set the parameters of that specific instrument plugin, namely, parameter 36, to be a specific amount.

How do I write to the plugin parameter, when loading it with a shortcut, please?

Posts: 1

Participants: 1

Read full topic

Categories: Forum

How to copy Note-On Layer to Note-Off Layer with LUA?

Renoise Forum - April 1, 2020 - 12:14

@esaruoho wrote:

Hi, I’m trying to figure out how to copy a Note-On Layer to Note-Off Layer.

Ideally I’d like it to function like this

C-4 plays C-4
Off plays C-5.

This is how I used to have it set up as, but it does not seem to work with Renoise 3.1.1 anymore.

local NOTE_ON = renoise.Instrument.LAYER_NOTE_ON local NOTE_OFF = renoise.Instrument.LAYER_NOTE_OFF local function copy_note_layers(source_layer,target_layer, offset) local instrument = renoise.song().selected_instrument_index --delete target layers prior to copying (to prevent overlays) if #renoise.song().instruments[instrument].sample_mappings[target_layer] > 0 then --Note that when using the delete_sample_mapping, the index is changing on-the-fly --So you have to remove the mappings from the last to the first entry instead of vice versa. --Else you get errors half-way. for i = #renoise.song().instruments[instrument].sample_mappings[target_layer],1,-1 do renoise.song().instruments[instrument]:delete_sample_mapping_at(target_layer, i) end end for i = 1,#renoise.song().instruments[instrument].sample_mappings[source_layer] do local base_note = renoise.song().instruments[instrument].sample_mappings[source_layer][i].base_note local map_velocity_to_volume = renoise.song().instruments[instrument].sample_mappings[source_layer][i].map_velocity_to_volume local note_range = renoise.song().instruments[instrument].sample_mappings[source_layer][i].note_range local sample_index = renoise.song().instruments[instrument].sample_mappings[source_layer][i].sample_index local use_envelopes = renoise.song().instruments[instrument].sample_mappings[source_layer][i].use_envelopes local velocity_range = renoise.song().instruments[instrument].sample_mappings[source_layer][i].velocity_range local oct_base_note=nil oct_base_note= base_note + offset renoise.song().instruments[instrument]:insert_sample_mapping(target_layer, sample_index,oct_base_note,note_range,velocity_range) end end local function norm() copy_note_layers(NOTE_ON, NOTE_OFF, 0) end local function octdn() copy_note_layers(NOTE_ON, NOTE_OFF, 12) end local function octup() copy_note_layers(NOTE_ON, NOTE_OFF, -12) end local function octdntwo() copy_note_layers(NOTE_ON, NOTE_OFF, 24) end local function octuptwo() copy_note_layers(NOTE_ON, NOTE_OFF, -24) end renoise.tool():add_menu_entry {name="--Sample Mappings:Copy note-on to note-off layer +12", invoke = octup} renoise.tool():add_menu_entry {name="Sample Mappings:Copy note-on to note-off layer +24", invoke = octuptwo} renoise.tool():add_menu_entry {name="Sample Mappings:Copy note-on to note-off layer", invoke = norm} renoise.tool():add_menu_entry {name="Sample Mappings:Copy note-on to note-off layer -12", invoke = octdn} renoise.tool():add_menu_entry {name="Sample Mappings:Copy note-on to note-off layer -24", invoke = octdntwo}

Posts: 1

Participants: 1

Read full topic

Categories: Forum

How to show/hide effect parameters in TrackDSP via LUA?

Renoise Forum - April 1, 2020 - 11:46

@esaruoho wrote:

Hi, how do I do “Show/hide parameter sliders” in TrackDSP view in LUA?

Posts: 2

Participants: 2

Read full topic

Categories: Forum

Connectivity TR-8 to Arturia Beatstep Pro

Renoise Forum - April 1, 2020 - 06:27

@dusty-bowl wrote:

as per Arturia instructions for TR-707 [ can’t find specific to TR-8 , they do seem very
similare ] - beatstep pro as slave/ tr-8 as master.
beatstep pro set to 24ppqn
sync socket out of tr-8 into beatstep pro clock input using the DIN black to jack adapter.
[ this adapter comes with the beatstep pro … there are no midi 5 pin input /output
on the beatstep pro ]
results: it does not work … if i start the tr-8 the beatstep pro should start …
no go !!
channel 10 it is on both units
have been stuck for awhile now ???
any suggestions will be appreciated
dusty bowl

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Playing on Keyboard doesnt Work when VST is Open. (Linux)

Renoise Forum - April 1, 2020 - 01:09

@ArturRembe wrote:

Hi, i switched to linux and almost anything works fine. But when i open a plugin, i cant play with my keyboard (notebook) anymore while changing things in the synth. Does anyone solved the Problem in Linux?

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Share your Baseline / Bass best practices

Renoise Forum - March 31, 2020 - 15:21

@PrinzNika wrote:

Hey guys, let me know your insights on how to create the perfect baseline! Currently I am trying to get into trap a bit more but dont hesitate posting your tips for other genres like dnb/jungle or dubstep

Posts: 2

Participants: 2

Read full topic

Categories: Forum

Another xils labs le 3 bug

Renoise Forum - March 31, 2020 - 12:12

@gentleclockdivider wrote:

Another bug , when rendering to selection , the osc 2 square level and env.attack reset to zero , thus osc square is not rendered .
This also happens when double clicking renoise stop button since this also resets renoise audio engine .

I have also noticed this could happen to other plugins , so this might be renoise related

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Question about lv2 plugins

Renoise Forum - March 31, 2020 - 02:49

@The_Traveler wrote:

I’m trying to work with some pre-compiled mda effects in lv2 format on my linux box. I use a real time low latency kernel and I seem to recall Renoise won’t load lv2 effects or generators unless they are compiled for real time usage. I’m thinking too maybe there’s some wrong with the search path but unlike LADSPA, DSSI and VST there seems to be no way (or need?) to set up a environment variable for lv2 in Renoise.

Any further info would be appreciated.

Cheers.

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Windows indexing CPU spikes

Renoise Forum - March 31, 2020 - 02:31

@Drop_Shadow wrote:

Hi, during loading and saving of songs I get quite huge CPU activity from the service “Microsoft Windows Search indexer”. I’ve tried to exclude some renoise folder from the index without solving the problem. Anyone knows the locations where files are loaded and saved to during loading and saving of songs?

Posts: 1

Participants: 1

Read full topic

Categories: Forum

"Ear Trend Enigma" new crunchy ambient plunderphonics

Renoise Forum - March 30, 2020 - 20:18

@orrigans wrote:

I sampled the worst 80’s albums of some of my favorite synth groups and made these little ambient pieces:

Thanks for listening!

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Arturia frozenplain swap give away

Renoise Forum - March 30, 2020 - 20:13

@bunja1979 wrote:

i wanna give away arturia sem v
and I also have a frozenplain account I can give away with wraith and phoenix
anyone want to swap anything ?
i may just give them away but i would like a swap anything considered inbox me thanks

inbox me please cheers

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Can anyone ID this Breakbeat

Renoise Forum - March 30, 2020 - 15:46

@jmod00 wrote:

I have this lo-quality breakbeat I’m trying to identify and I just listened to about 2000 drum loops + all the AMG/Data-G/Akai Sample CDs.

I’ve isolated and repeated it here:
drive.google.com myster3.wav

Google Drive file.

When I Shazam it at different speeds I get these results, all too obscure to be on WhoSampled:

The Global Optimistic - Alone in the city (feat. Moon Reflecting)
(https://www.youtube.com/watch?v=xQQQFASYRxg)
Baby Mammoth - Swing Business
Get This Party Started (Ghost Remix) (@2:45)
TDP Boba Fatsax (Feeling Me)
Just a little - RandyK
Statik Sound System - Secret Love
Mars Venus - Pronadji put
Soulchillaz - Your Heart
Stream It by Deeproducer

I’ve emailed a few of the producers but no luck yet. I’m betting it is on a sample CD as some of these productions seem low budget.

Sound familiar to anyone? Been looking for ages

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Lets make big beat great again :) + xrns

Renoise Forum - March 30, 2020 - 12:19

@Burial wrote:

102 bpm, beats/breaks … samples by Manu Dibango for stbb compo

hit my inbox and ill send ya the xrns file

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Mixing Audio Tutorial

Renoise Forum - March 30, 2020 - 09:52

@sales wrote:

For all you need to stay home for corona…

I created a large article about the art of mixing :

http://www.sined.nl/index.php/audio-inf … c-mixing-i

[www.sined.nl]

Denis
AAMS Author

I7 8core 16tread 32gb Aopen Board, SSD Samsung. C10,W10,Halion6,Groove Agent5,etc.
Running on 8ms Latency with a Soundblaster XFi Pro. Yamaha MW12c USB mixer.
Behringer TRUTH B2031A active studiomonitors. Sony MDR-V900 Headphones.
Steinberg CC121 Controller. Mackie Control Pro.

Denis van der Velde
[http://www.curioza.com ]
AAMS Auto Audio Mastering System for Windows!

Posts: 1

Participants: 1

Read full topic

Categories: Forum

Pages

Subscribe to Renoise aggregator
wurst