Ok with the success of the post fader fx, how about a punch in echo...actually like echo out, but like the song is is playing I hit the button when I want hold it to feed echo, once I let button go the echo trail out...
Mensajes Thu 12 Feb 15 @ 1:59 pm
I've got some thing like this
toggle 'eFFx' & var_equal 'eFFx' 1 ? effect_select 1 'echo' & effect_active 'echo' 1 1 & effect_button 'echo' 1 1 & effect_button 'echo' 1 0 while_pressed : effect_button 'echo' 1 0 & effect_active 'echo' 0 & effect_active 'echo' 1 while_pressed
1st held press and the echo gets fed, let go mutes the source and lets the echo decay, next press unmutes source and turns echo off.
It's probably not bullet proof just yet but I'll have a tweak after feedback.
With some POI it could be a lot more, but that's true with everything, (and the POI program isn't ready yet {paused due to a regression bug} )
toggle 'eFFx' & var_equal 'eFFx' 1 ? effect_select 1 'echo' & effect_active 'echo' 1 1 & effect_button 'echo' 1 1 & effect_button 'echo' 1 0 while_pressed : effect_button 'echo' 1 0 & effect_active 'echo' 0 & effect_active 'echo' 1 while_pressed
1st held press and the echo gets fed, let go mutes the source and lets the echo decay, next press unmutes source and turns echo off.
It's probably not bullet proof just yet but I'll have a tweak after feedback.
With some POI it could be a lot more, but that's true with everything, (and the POI program isn't ready yet {paused due to a regression bug} )
Mensajes Thu 12 Feb 15 @ 4:07 pm
omg!
I like the sound of that.
could one of you guys put that onto one of my buttons for me, or just add it to my wish list?
practice'n'enjoy
I like the sound of that.
could one of you guys put that onto one of my buttons for me, or just add it to my wish list?
practice'n'enjoy
Mensajes Thu 12 Feb 15 @ 4:24 pm
Not really wat I meant, but I still like it... I think, it would actually involve another channel for the effect to respond right. The template would be like the echo out effect but alot smoother... Muting the source is not needed the selected echo would fade out as the track continues, but the control of what gets echoed is under you full control... Would u like a video
Mensajes Thu 12 Feb 15 @ 4:29 pm
No video required I understand the idea, I just had that as one type of work flow.
I'll have a think on the cloning out to another deck method.
I'll have a think on the cloning out to another deck method.
Mensajes Thu 12 Feb 15 @ 10:09 pm
Hmmm a pretty nice idea, it'll take a bit of figuring out how to get the best out of it,
Try this the sliders might need tweaking 47% is feeding into the echo 90% is trail duration, press and hold to feed the echo let go to get the trail.
deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed.
once deck 1 is happy levels wise I'll script the other side and have it all 1 script works either side.
@Ray can do,
do you just want to try this on the keyboard first so we can smooth the edges, send me a pm with your usual gear (wego and reloop If I recall) and think about what button you'd want it on.
Try this the sliders might need tweaking 47% is feeding into the echo 90% is trail duration, press and hold to feed the echo let go to get the trail.
deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed.
once deck 1 is happy levels wise I'll script the other side and have it all 1 script works either side.
@Ray can do,
do you just want to try this on the keyboard first so we can smooth the edges, send me a pm with your usual gear (wego and reloop If I recall) and think about what button you'd want it on.
Mensajes Fri 13 Feb 15 @ 4:47 am
Where are we with this chaps, and mods can we get the thread title changed to something like
"Echo feed and decay by script"
Having my handle as a thread title causes searching problems. (for me)
"Echo feed and decay by script"
Having my handle as a thread title causes searching problems. (for me)
Mensajes Sat 14 Feb 15 @ 8:31 am
Hi Loco, I'm still here. I just pasted both of those onto a custom button on the skin, that's so funky bro!
Mensajes Sat 14 Feb 15 @ 10:34 am
It has merits, with short echo lengths it does one type of thing, with longer loops (2/4/8) it does something quite different but it's interesting,
I think this script should work for left and right buttons (custom or HW)
device_side 'left' ? deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
I think this script should work for left and right buttons (custom or HW)
device_side 'left' ? deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
Mensajes Sat 14 Feb 15 @ 1:58 pm
locodog wrote :
It has merits, with short echo lengths it does one type of thing, with longer loops (2/4/8) it does something quite different but it's interesting,
I think this script should work for left and right buttons (custom or HW)
device_side 'left' ? deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
I think this script should work for left and right buttons (custom or HW)
device_side 'left' ? deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
just setting up after gigs this weekend, but this doesn't work. it mutes the source...it shouldn't mute the source...it should just be an echo in the background trailing out. basically we are improving the echooutv2 plug in...please giva a test to that plug in maybe you will better understand.
Mensajes Sun 15 Feb 15 @ 11:03 pm
Bear in mind I'm working off a blank canvass, to work for your set up might need tochange stuff like audio config.
Try this one, you may need to flit to a 4 deck skin (Once) (and back to a 2dskin if that's what you use) so there actually is a deck 3 to clone to, even if it is invisible.
See what you think and I'll rethink it to 2 decks
deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 55% while_pressed
And you are mistaken you HAVE to mute the original deck while the echo is being fed on the clone, otherwise levels become too high very abruptly.
I checked EOv2, it's just a decaying overloop with no feedback
Actually after ensuring there's a deck 3 this works ok, I just need to get the %s balanced
deckleft ? deck 1 clone_deck 3 & deck 1 select & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 select & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
Try this one, you may need to flit to a 4 deck skin (Once) (and back to a 2dskin if that's what you use) so there actually is a deck 3 to clone to, even if it is invisible.
See what you think and I'll rethink it to 2 decks
deck 1 clone_deck 3 & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 55% while_pressed
And you are mistaken you HAVE to mute the original deck while the echo is being fed on the clone, otherwise levels become too high very abruptly.
I checked EOv2, it's just a decaying overloop with no feedback
Actually after ensuring there's a deck 3 this works ok, I just need to get the %s balanced
deckleft ? deck 1 clone_deck 3 & deck 1 select & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 select & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
Mensajes Mon 16 Feb 15 @ 3:28 am
Didn't you have an onint script that puts it in 4decks..something like that I think
Mensajes Mon 16 Feb 15 @ 3:47 am
Yeah there is that, Onint loads bogus tracks to invisible decks to make them exist. If you still have it it should do the job
Something like
Onint
& deck 3 load "C\:cheat.mp3" & deck 3 unload & deck 4 load "C\:cheat.mp3" & deck 4 unload
The 2nd script in this thread had a first use error in it revolving around deck select, (cloning a new track switches focus) I can't think why that would matter but I wrote around that now,
This might do it for 2 HW buttons, or maybe switch out device_side 'left' for device_side 1
Just remember your audio config needs to output a master or output decks 3 & 4 otherwise you'll hear nowt.
device_side 'left' ? deck 1 clone_deck 3 & deck 1 select & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 select & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
Something like
Onint
& deck 3 load "C\:cheat.mp3" & deck 3 unload & deck 4 load "C\:cheat.mp3" & deck 4 unload
The 2nd script in this thread had a first use error in it revolving around deck select, (cloning a new track switches focus) I can't think why that would matter but I wrote around that now,
This might do it for 2 HW buttons, or maybe switch out device_side 'left' for device_side 1
Just remember your audio config needs to output a master or output decks 3 & 4 otherwise you'll hear nowt.
device_side 'left' ? deck 1 clone_deck 3 & deck 1 select & deck 1 mute while_pressed & deck 3 effect_select 1 'echo' & deck 3 effect_active 'echo' 1 & deck 3 effect_button 'echo' 1 1 & deck 3 effect_button 'echo' 1 0 while_pressed & deck 3 effect_slider 'echo' 90% & deck 3 effect_slider 'echo' 47% while_pressed : deck 2 clone_deck 4 & deck 2 select & deck 2 mute while_pressed & deck 4 effect_select 1 'echo' & deck 4 effect_active 'echo' 1 & deck 4 effect_button 'echo' 1 1 & deck 4 effect_button 'echo' 1 0 while_pressed & deck 4 effect_slider 'echo' 90% & deck 4 effect_slider 'echo' 47% while_pressed
Mensajes Mon 16 Feb 15 @ 4:39 am
Great work Loco.. Got a suggestion I've been playing with it and wcjodoppler seems to be a better fit because of the additive option but I keep screwing up. Do you think it can be done with wcjodoppler.... But if not this will work tons....
Mensajes Mon 16 Feb 15 @ 12:13 pm
Not sure ED doesn't have a mute source button, so that means muting the source via gain, which means saving current gain as a variable, i'll have a play around but it won't be today.
Mensajes Mon 16 Feb 15 @ 1:03 pm





