Soopa Doopa Loopa (v1.2.0)

Until our dedicated user library is in place you can post examples and modules here

Moderators: electrogear, exonerate

Soopa Doopa Loopa (v1.2.0)

Postby trogluddite on Fri Jul 09, 2010 2:33 pm

This is one for all you sampling delay pedal and Frippertronics freaks out there.
It's designed for making and manipulating loops created on the fly from a live audio (or VST instrument) feed - eight simultaneous loops, which can all be mangled beyond recognition - and a built in automation system designed specifically for live use.
The zip file contains stand-alone and VST versions, plus a pdf User Guide - and the software itself has its own built in help system to get you up and running quickly. Hope you enjoy it!
Soopa Doopa Loopa 1_2_0.png
Soopa Doopa Loopa 1_2_0.png (90.06 KiB) Viewed 4991 times

Soopa Doopa Loopa 1_2_0.zip
(4.4 MiB) Downloaded 1436 times


If you are a registered user of SM, the .osm is available on the Registered Users forum so that you can have a poke around inside...
http://synthmaker.co.uk/forum/viewtopic.php?f=9&t=8938&p=69971#p69971

Made available under Creative Commons Attribution, Non-Commercial, Share-Alike licence (Click for link to a full description)
Basically, copy, adapt and distribute as you see fit as long as credit is given, and the plugin remains FreeWare.
Last edited by trogluddite on Sun Oct 31, 2010 5:17 pm, edited 3 times in total.
Feel free to use any schematics and algorithms I post on the forum in your own designs - a credit is appreciated (but not a requirement).
Don't stagnate, mutate to create. Without randomness and serendipity the earth would be just another barren rock.
User avatar
trogluddite
smychopath
 
Posts: 3025
Joined: Mon Oct 20, 2008 3:52 pm
Location: Yorkshire, UK

Re: Soopa Doopa Loopa (v1.1.0)

Postby 2nvu on Fri Jul 09, 2010 7:33 pm

trogluddite wrote:This is one for all you sampling delay pedal and Frippertronics freaks out there.
It's designed for making and manipulating loops created on the fly from a live audio (or VST instrument) feed - eight simultaneous loops, which can all be mangled beyond recognition - and a built in automation system designed specifically for live use.
The zip file contains stand-alone and VST versions, plus a pdf User Guide - and the software itself has its own built in help system to get you up and running quickly. Hope you enjoy it!

In Action.png

Soopa Doopa Loopa 1_1_0.zip

If you are a registered user of SM, the .osm is available on the Registered Users forum so that you can have a poke around inside...
http://synthmaker.co.uk/forum/viewtopic.php?f=9&t=8938&p=69971#p69971

Hahaha Cool i just love Trashing Beats....will get back to you soon,,, but thank you very much. Jamie :)
2nvu
essemist
 
Posts: 139
Joined: Mon Dec 04, 2006 2:38 pm

Re: Soopa Doopa Loopa (v1.1.0)

Postby billv on Sun Sep 12, 2010 11:27 am

Just downloaded osm. Awsome stuff. Looking forward to seeing if my brain can understand it.
Cheers
BV MUSIC SYDNEY AUSTRALIA-http://users.tpg.com.au/billv
Songwriting & Software Development.
billv
essemilian
 
Posts: 344
Joined: Sun Dec 31, 2006 3:20 pm
Location: Australia

Re: Soopa Doopa Loopa (v1.1.0)

Postby trogluddite on Sun Sep 12, 2010 6:27 pm

Hope you enjoy it - if you like it, keep an eye out for v1.2, I'll be upping it very soon. It should hopefully make the knob automation features easier to use, and I'm adding a bounce function (in the freeing-up-tracks-on-your-portastudio sense).
Feel free to use any schematics and algorithms I post on the forum in your own designs - a credit is appreciated (but not a requirement).
Don't stagnate, mutate to create. Without randomness and serendipity the earth would be just another barren rock.
User avatar
trogluddite
smychopath
 
Posts: 3025
Joined: Mon Oct 20, 2008 3:52 pm
Location: Yorkshire, UK

Re: Soopa Doopa Loopa (v1.1.0)

Postby flamingRedDingo on Sun Oct 24, 2010 10:25 pm

I am working on "bouncing" tracks, too...

It's been tough though...

I've been trying to use multiple banks of wave-read/wave-write primitives operating over a common buffer to make the copies faster than the samplerate.... and that's where I'm getting hung up.. it's a tough nut to crack.

8 wave reads at index offsets of 0 through 7 should facilitate an 8x samplerate copy... If I can get it to work I'll probably support maybe up to 64x copy speed.. even if it temporarily spikes the CPU a bit during the copy.

It's kind of funny that my main problem is that I haven't figured out a way to convince the thing to be able to start then STOP the copy operation... it always wants to be running, which is not what I want...
flamingRedDingo
essemist
 
Posts: 51
Joined: Sun Oct 17, 2010 4:32 pm

Re: Soopa Doopa Loopa (v1.1.0)

Postby trogluddite on Sun Oct 24, 2010 11:45 pm

flamingRedDingo wrote:start then STOP the copy operation

Part of the answer is in my last post on your looper code thread RE: shutting down unused loops. In short, the wave writes only run as long as they have an active output (and you can use a selector to turn them on and off).
For your high speed copy operation (I wimped out and just did real-time!) - you can use a little trick with the Mono to Graph primitive. When triggered, this reads a precise number of samples into a float array, so that you can make wave displays etc. - but also it only registers as an active module while the reading is in progress. You can connect one of those to your wave write's outputs, and use it to enable the wave write for a specific number of samples.
The only issue with this is that the Mono to Graph generates a float array - so you end up using a load of extra memory. You could maybe clear it though, by doing a quick one sample long write to a parking index.
Alternatively, you'd have to use some sort of timer to turn the write's on and off using selectors - but you'll then need to find a way to compensate for the timing inaccuracy of the green logic needed to drive the selectors.
Feel free to use any schematics and algorithms I post on the forum in your own designs - a credit is appreciated (but not a requirement).
Don't stagnate, mutate to create. Without randomness and serendipity the earth would be just another barren rock.
User avatar
trogluddite
smychopath
 
Posts: 3025
Joined: Mon Oct 20, 2008 3:52 pm
Location: Yorkshire, UK

Re: Soopa Doopa Loopa (v1.1.0)

Postby flamingRedDingo on Mon Oct 25, 2010 12:05 am

awesome. thanks, I'll see what I can come up with =P
flamingRedDingo
essemist
 
Posts: 51
Joined: Sun Oct 17, 2010 4:32 pm

Re: Soopa Doopa Loopa (v1.2.0)

Postby trogluddite on Sun Oct 31, 2010 5:08 pm

Now updated Soopa Doopa Loopa to version 1.2.0 (all downloads in the top post)
The .pdf manual has also been updated with instruction for the latest features.

Registered users can have a peek inside the schematic HERE

As well as a few bugfixes and CPU optimisations, the update includes...

-Nastier Cruch effect
-Simpler automation loop recording (just hold down SHIFT while knob wiggling) with fully independent loop lengths per parameter.
-Main mixer controls now have Autofading feature.
-Loop bouncing for copying loops or bouncing multiple loops to one loop slot.
-Simpler headphone monitoring setup.
-Customisable shortcut keys.
-Expression pedal controller mapping.
-Loop locking to prevent accidentally overwriting or deleting of loops.
Feel free to use any schematics and algorithms I post on the forum in your own designs - a credit is appreciated (but not a requirement).
Don't stagnate, mutate to create. Without randomness and serendipity the earth would be just another barren rock.
User avatar
trogluddite
smychopath
 
Posts: 3025
Joined: Mon Oct 20, 2008 3:52 pm
Location: Yorkshire, UK


Return to Examples

Who is online

Users browsing this forum: No registered users and 3 guests