What i’m looking for is a function that would ask the user for two percentage values, one for beginning and one for end, and gradually modify volumes in the pattern selection from start of selection to end - taking into account the note volumes already present if any.
Is there a tool that does this? If not, how would one go about scripting this? Thanks for any advice =)
so… uhh… basically replicating the ImpulseTracker functionality under the shortcut alt-K (Slide volume / panning column)… so you have row 00 and row 64 selected (beginning row, end row) then you have row00 have say 00 as volume and row 64 as 64 in volume, and it slides from 00 to 64 using the 64 rows.
and then of course you’d actually want it to do something clever like actual math to allow one to not just do that, but to actually fade it down using crazy cool math? (as another shortcut)
nah, just incrementally multiply each row’s volume (where there are notes) by a certain variable, said variable going from first percentage to second percentage.
Yeah it is kind of similar to IT’s alt+K except my ideal function would take existing volumes into account.
I “kind of” believe that I could probably do the Alt-K thing and maybe someone could then do the percentage thing which would be more complex…
I’ll look into it today at work…
Well, Delt wanted something very specific, which would have been an improvement to the ImpulseTracker way of doing. but the simplest way is to start from replicating the impulsetracker method, which would be to go:
in the case of there being 40 rows selected by the user. what’s read is the beginning row (40) and the end row (00) and then if there’s, say, 5 rows between beg.row + end.row, it would be 40, 30, 20, 10 and 00.
but he wanted percentages… anyway, even this kind of key-shortcuttable countdown from number X to number Y (or count-up, of course) would be lush.
I don’t know Impulse Tracker; wtf is Alt+K there??
anyway, if you wanna look into this kind of thing, have a look at my tool that does that exact thing but with samples in the sample editor: Sloper (code)
The alt-K solution is already supported by the advanced edit functions…
For modifying existing values, use a modify function and click the apply button.
You can perform it on “track in song” but it doesn’t go as far as a selected range in song.
Well now, it seems to me that at least two good things may come out of this interesting topic;
If you’re into keyboard controlling stuff, yes, I would definitely implore you to check out the code (since I don’t know if I gave a detailed description of it anywhere on the forum, you’re probably best to check out the code in “key_dialog” first before launching it tho). You can probably take most stuff from there and then well modifying patterntrackline objects is slightly different from modifying sample values but wth.
Now that would be a very welcome and possibly simple addition to a future Renoise version.