New Tool (2.8): ReSeq

…Its not a massive deal as the phrase editor in v3 makes this tool obsolete…

Disagree B) , while the phrase editor fulfills most, if not all basic arpeggio needs, being able to have this tools functionality in the 3.0 pitch envelopes means you can tweak and experiment, create slides, transpose melodies differently through hooking up macro knobs to the parameters. Eg; being able to gradually fade-in/fade-out the arpegiated pitch melody through linking the from and/or to + duration fader modulation devicesettings to a macro. Gradually modulate a melody that is imported in the pitch envelopes through a lfo et cetera. Try to this in the phrase editor :slight_smile: .

Maybe if because of all the changes in the lua api this proofs to much work for the reseq tool, the initial tool which it is inspired from might be easier to update?

https://forum.renoise.com/t/new-tool-2-8-notes-to-envelop/38689

I just need a way to get the pattern editor notes (and phrase editor?) in an instruments pitch envelope!

:drummer:

Disagree B) , while the phrase editor fulfills most, if not all basic arpeggio needs, being able to have this tools functionality in the 3.0 pitch envelopes means you can tweak and experiment, create slides, transpose melodies differently through hooking up macro knobs to the parameters. Eg; being able to gradually fade-in/fade-out the arpegiated pitch melody through linking the from and/or to + duration fader modulation devicesettings to a macro. Gradually modulate a melody that is imported in the pitch envelopes through a lfo et cetera. Try to this in the phrase editor :slight_smile: .

Maybe if because of all the changes in the lua api this proofs to much work for the reseq tool, the initial tool which it is inspired from might be easier to update?

https://forum.renoise.com/t/new-tool-2-8-notes-to-envelop/38689

I just need a way to get the pattern editor notes (and phrase editor?) in an instruments pitch envelope!

:drummer:

Yeah, now the dust has settled somewhat on R3 I agree with what you say… I think given all the changes that were made to instruments I’ll go back to basics with this one and just look at getting the piano roll to pitch envelopes working first and take it from there… Another thing I miss in the new instruments is the envelope follower on the filter envelopes… I managed to get some cool sounds with this tool and the env followers which I have not been able to replicate with the new instruments… yet

can you re-up the 2.8 version afta?

can you re-up the 2.8 version afta?

Sure, here you go…

bump for the new millennium B)

With all the new instrument editor envelope goodness in 3.1, I’d really like a way to convert note-events from the pattern editor into pitch (point) values in the modulation tab.

For example add an lfo device after such pitch conversion in an envelope and gradually increase the amplitude from the lfo to bend the melody in flexible ways, easier to realize then fiddle with the pitch pattern commands. Would open up many rooms for experimentation.

Although this tool deals with a lot more, I mainly am looking for note to pitch value conversion.

Maybe this?

https://forum.renoise.com/t/new-tool-2-8-notes-to-envelop/38689

Maybe this?

https://forum.renoise.com/t/new-tool-2-8-notes-to-envelop/38689

yeah, I was thinking about bumping that thread first :slight_smile: , think it didn’t work in 3.1 last time I tried. Importing the tool right now gives an error notice that it has been disabled, will try the manual manifest updating to see if it works and report back.

edit;

ok, so after changing the manifest api nr from 3 to 5, I can enable the tool in the tool browser, however when opening it from the tools menu (on an empty instrument) gives;

'C:\Users\pluge\AppData\Roaming\Renoise\V3.1.0\Scripts\Tools\com.afta8.NotesToEnvelope.xrnx' failed to execute in one of its menu entry functions.

Please contact the author (afta8 | fathand@gmail.com ) for assistance…

main.lua:43: unknown property or function ‘sample_envelopes’ for an object of type ‘Instrument’

stack traceback:

[C]: in function ‘_error’

[string “do…”]:48: in function <[string “do…”]:35>

main.lua:43: in function main.lua:37

Creating a sampled instrument and putting some note-events in the pattern editor will give the exact same error as above.

@Djeroek: Change channel to -> https://forum.renoise.com/t/new-tool-2-8-notes-to-envelop/38689 :slight_smile:

@Djeroek: Change channel to → https://forum.renoise.com/t/new-tool-2-8-notes-to-envelop/38689 :slight_smile:

legend :drummer: :guitar: :yeah: B)

Hi, is this tool still relevant? The download link does not work :confused:
Thanks

If I remember correctly this one doesn’t work > Renoise 2.8, something changed under the hood regarding lua api and envelopes unfortunately :frowning: .

Would be great to have again!

1 Like

@afta8 do you still have the original old code for the reseq tool somewhere? Would like to trial and error it in chatgpt to get it working again since it stopped after one of the api updates.

Seems like the tool page is also gone after the forum migration. @taktik can you still recover the old data that used to be here;
https://www.renoise.com/tools/reseq

1 Like

hi @Jonas - let’s talk - sent you a dm

btw i’m guessing it’s not this? GitHub - rukano/ReSeq: A stripped down pattern and formula interpreter for Renoise built for generating note and parameter sequences of a track pattern. Should be suitable for live coding.

Found it, here you go :slight_smile:

com.afta8.ReSeq_Rns280_V0.6.xrnx (7.7 KB)

This was majorly broken after the 3.0 update instruments were completely changed.

Good luck and do update with progress, curious to see how you + ChatGPT handle the task :muscle:

btw I’ve been using Anthropic’s Claude a lot more with coding tasks, seems better in some cases… worth trying if you haven’t already!

2 Likes

thanks for posting. this is only 1055 lines so o1-preview should be able to handle it well

EDIT: it really didn’t. but ohwell

ok the main issue is that there’s no sample_envelopes anymore, aka you can’t just go sample_envelopes.cutoff - they’re all wrapped inside sample_modulation_sets now.
this is gonna be interesting.

EDIT: then when you get it to load the devices, it’s still referring to p_env.envelope which doesn’t exist, so those need to also be referring to the envelope device. what a mindwreck.

reseqwhat

i’ve done what i can and got it to here, but there’s still lots of errors going on. i’ll want to be looking at this a bit later furhter down the line, it hasn’t been very fun :slight_smile:
had to remove the follower stuff too since apparently no longer there.
com.afta8.ReSeq_V0.6.xrnx (6.2 KB)

once the day is over i can have another look. yes, the filtertypes shoot errors, too. but at least it boots up with Renoise 3 now.

2 Likes

Never heard of Claude, will look into it tonight.

Had a quick check of the code already altered by @esaruoho , but chatgpt has a problem checking all of it at once :slight_smile: . Will feed it problems in chunks.

it really doesn’t want to print the whole thing even with o1-preview. i’ll look at it a bit later maybe tonight.