Hello everyone,
this is the place to share your Pattrns Phrase Scripting ideas/scripts.
This is an experimental arpeggiator which lets you combine rhythmic and melodic sequences in different ways to create evolving melodies or chords. Take a look at the script and extend / modify the sequence lists to your liking. It is meant as an inspirational tool.
STR Arpeggiator.lua (6.2 KB)
Have a good one!
Nice, this one is a very versatile arp thatâs easy to configure!
Note, you can also use the playground to share scripts online (for example here is a link to your script on the playground).
Ah, thank you!
Very impressive! ![]()
Thanks!
Well it´s only as impressive as one is willing to put time to experiment into it ![]()
Also i find forcing the output to a certain scale/flavour (using Renoise´ scale selector) quite useful at times. Especially in those cases when disharmonics occur. But those could be handled programmatically as well.
This shows how a melody can be evolved using the script parameters only, and how complexity and dynamics can be added and reduced in a controlled manner.
Indeed, i agree with you! Devs can only give the possibilitys. The users must lot out the deep of it. Yesterday i play around with your script on Pattrns Playground (thx to unless for this :)). Have i your grant to upload it on Renoise Themes & Stuff discord? I have create a Pattrns script share section there, because the link to it on Playground was very long and cryptic. Dont know whoâs project âPattrns.playgroundâ is (unless?) but i think shortlinks for uploaded scripts would be a good idea, if it should become a regulare share source for such scripts.
happy tracking ![]()
@unless if i call you link up i get this⌠Not good for linking scripts from external resources and sharing.
Sure, go ahead! And thanks for your interest.
I have some more stuff i will add here later on.
You can use link alias feature in markdown (like on this forum or discord) to shorten the link if you type it like
[shorter alias](https://theactualsuperlonglink.boing)
It will look like how I did it above:
The link is so long because the actual script is inside the link itself. This makes it so the playground doesnât need to have an entire server architecture with users, persisting data and so on to share scripts, itâs just a static website that can decode the script data from the link.
This specific script is fairly long compared to most, so the link is also long.
Btw, the playground was created by taktik, Iâve added this link feature to make sharing scripts more interactive, you will find the same link data style in almost all livecoding projects that run on the web. When you edit a script on the playground, you will see the URL automatically change as you type, so you can just copy-paste the url to someone to talk about a script.
ah i understand, so its in principle similar to the âpreset exchangeâ function in Cubase or Ableton.
This Renoise pattrns script generates chord voicings with some degree of humanization.
The 3rd and 5th can be shifted up an octave to remove some potential muddiness from a dense chord. Additional 7th and 9th can be added an octove above to add upper harmonics.
Note delay can be quantized to more rhythmic values, so instead of chords it can produce melodies instead or something inbetween. (see âquantize_stepsâ in the script)
STR Chord Voicing.lua (2.2 KB)
And remember, script parameters can be bound to macros.
Cheers!
really impressive, i just cant get the same results.
Everything is the same as in the videos, but sound totally different. Its generate 0-8-16-24-32-40-48 etc steps every time. but in the video its 0-32- and sos on⌠this is the first thing i cant get right.
then the note steps. is is faster than yours. same tempo and same delay min max vaules.
u set min 0.001. i need to set it to 0.480 or more the get the same smooth resultsâŚ.
Just beautiful! Thanks for sharing.
In case someone wants this not be a single shot, not a repeating pattern, add a repeats = 0, to:
return pattern
{
unit = "1/4",
repeats = 0,
-- [...]
}
@strobotone are we allowed to add this to the Renoise stock presets with a proper credit?
Thanks everyone for your feedback! I really appreciate it.
@hotelsinus
Those settings should work:
![]()
And yes, the script uses [ unit = â1/1â ] , hence the different time signature.
The chords are triggered from a pattern [ F-4, C-4, D-4, A-3 ].
Here is an updated version which has 2 new parameters:
- Random Seed ( 0 = no seed )
- Keep Root on 1 ( Root note always on beat 1 )
STR Chord Voicing.lua (2.7 KB)
@taktik
Yes, I am honored. For the crediting we should probably communicate via PM i guess.
And thanks for the âsingle shotâ info. I was looking for this.
By the way, is there any way to control [ unit ] from a parameter?
So the note delay quantization would be more controllable as well.
Also i would like to add keyboard split using context.trigger.notes.
Is there a built-in way to convert key string to number?
Thanks and kind regards
Martin
⌠can be deleted
Sure. You can send me a version with comments on top of the Lua file. Have a look at the other factory presets on how that works.
More one-finger fun. Just as an inpiration.