ArrayArrayArrayArrayArrayArrayArray BrainModular BrainModular Users Forum 2007-06-13T17:01:49+02:00 https://brainmodular.org/forums/app.php/feed/topic/433 2007-06-13T17:01:49+02:00 2007-06-13T17:01:49+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2210#p2210 <![CDATA[Help creating a looping midi sampler.]]>
Thanks,

Statistics: Posted by neufena — 13 Jun 2007, 17:01


]]>
2007-06-13T16:43:13+02:00 2007-06-13T16:43:13+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2207#p2207 <![CDATA[Help creating a looping midi sampler.]]> First, the position indicator is very unprecise for sampler in polyphonic mode, even if you play only on note at the same time on your keyboard.
So set the Sampler/polyphony to 1.

Another point: if you compare the Sampler/pos to a MAXPOS.
the test "Sampler/pos>MAXPOS" doesn't work all the time because, when the MAXPOS is reached it's sometime too late...and the sample stops.

so try to compare Sampler/pos >= 0.9* MAXPOS, that gives 10% margin.
(use a math/mult module)

After that, the best way is to use a Event/pass event

connect as follow
[>=/ou] --> [pass Event/pass]
[STARTPOS]-->[pass Event/in]
[pass Event/out]-->[sampler/pos]

normally should work.

If you have time, post an add-on !!!

Statistics: Posted by senso — 13 Jun 2007, 16:43


]]>
2007-06-13T15:32:52+02:00 2007-06-13T15:32:52+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2206#p2206 <![CDATA[Help creating a looping midi sampler.]]>
I'll look into single sample vsts and see how it works out.

Thanks,

Statistics: Posted by neufena — 13 Jun 2007, 15:32


]]>
2007-06-13T14:57:24+02:00 2007-06-13T14:57:24+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2203#p2203 <![CDATA[Help creating a looping midi sampler.]]>
A lot of the free/share/donationware might not recognize loop points, and they might be restricted in what sample rates and bit depths they can handle, and I suspect that there's not much to be found that acts like the grain sampler, but it's worth a try. The Usine samplers have a lot going for them (they sample!), but as it is stated in the manual, they're not really a substitute for "normal" samplers when it comes to playing.

Statistics: Posted by bsork — 13 Jun 2007, 14:57


]]>
2007-06-13T14:25:40+02:00 2007-06-13T14:25:40+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2201#p2201 <![CDATA[Help creating a looping midi sampler.]]>
I did want to be able to play the sample freely and ultimatly I'd like to have a loop region within the sample so the playabck starts from the beginning then loops back to a certain region, continuing to play that region over and over until I release the key.

I'm also at work but once I get home I'll upload the experiments I done so far and post a link so you can see what I've been trying.

Neufena

Statistics: Posted by neufena — 13 Jun 2007, 14:25


]]>
2007-06-13T13:27:36+02:00 2007-06-13T13:27:36+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2198#p2198 <![CDATA[Help creating a looping midi sampler.]]>
Right now I can't quite figure out everything you have to do to make this work, but I think it would be simpler and give a more predictable result if you use the sampler in sync mode Loop when the note is held, and switch to Button when the note stops.

Actually - if you only want the sample to be played at one pitch, you could simply connect a switch to the Sync mode inlet and use Midi learn on that switch. The two first sync modes are Button and Loop, which corresponds nicely to the 0 and 1 sent from the switch module. If you want the sound to stop at once and not play through to the end position, connect a "From 1 to 0.pat" between the switch and the Stop inlet on the sampler.

If you want to play the sample freely, you will obviously have to do some more. I'm at work now and can't help with details, but unless someone else has a solution and you haven't found one yourself, I could try to make a patch for you later on.

Statistics: Posted by bsork — 13 Jun 2007, 13:27


]]>
2007-06-13T12:41:17+02:00 2007-06-13T12:41:17+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2195#p2195 <![CDATA[Help creating a looping midi sampler.]]>
When the position is equal to the loop end-point set position to the loop start-point. This didn’t work at all. I put a trunc module in between the position and the a=b, this worked intermittently, about 1 in 3 times.

I then tried replacing the a=b with a>b but this was still just as unreliable.

Am I missing something or does anyone have any ideas how to make this work?

Thanks,

Neufena

Statistics: Posted by neufena — 13 Jun 2007, 12:41


]]>
BrainModular BrainModular Users Forum 2007-06-13T17:01:49+02:00 https://brainmodular.org/forums/app.php/feed/topic/433 2007-06-13T17:01:49+02:00 2007-06-13T17:01:49+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2210#p2210 <![CDATA[Help creating a looping midi sampler.]]>
Thanks,

Statistics: Posted by neufena — 13 Jun 2007, 17:01


]]>
2007-06-13T16:43:13+02:00 2007-06-13T16:43:13+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2207#p2207 <![CDATA[Help creating a looping midi sampler.]]> First, the position indicator is very unprecise for sampler in polyphonic mode, even if you play only on note at the same time on your keyboard.
So set the Sampler/polyphony to 1.

Another point: if you compare the Sampler/pos to a MAXPOS.
the test "Sampler/pos>MAXPOS" doesn't work all the time because, when the MAXPOS is reached it's sometime too late...and the sample stops.

so try to compare Sampler/pos >= 0.9* MAXPOS, that gives 10% margin.
(use a math/mult module)

After that, the best way is to use a Event/pass event

connect as follow
[>=/ou] --> [pass Event/pass]
[STARTPOS]-->[pass Event/in]
[pass Event/out]-->[sampler/pos]

normally should work.

If you have time, post an add-on !!!

Statistics: Posted by senso — 13 Jun 2007, 16:43


]]>
2007-06-13T15:32:52+02:00 2007-06-13T15:32:52+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2206#p2206 <![CDATA[Help creating a looping midi sampler.]]>
I'll look into single sample vsts and see how it works out.

Thanks,

Statistics: Posted by neufena — 13 Jun 2007, 15:32


]]>
2007-06-13T14:57:24+02:00 2007-06-13T14:57:24+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2203#p2203 <![CDATA[Help creating a looping midi sampler.]]>
A lot of the free/share/donationware might not recognize loop points, and they might be restricted in what sample rates and bit depths they can handle, and I suspect that there's not much to be found that acts like the grain sampler, but it's worth a try. The Usine samplers have a lot going for them (they sample!), but as it is stated in the manual, they're not really a substitute for "normal" samplers when it comes to playing.

Statistics: Posted by bsork — 13 Jun 2007, 14:57


]]>
2007-06-13T14:25:40+02:00 2007-06-13T14:25:40+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2201#p2201 <![CDATA[Help creating a looping midi sampler.]]>
I did want to be able to play the sample freely and ultimatly I'd like to have a loop region within the sample so the playabck starts from the beginning then loops back to a certain region, continuing to play that region over and over until I release the key.

I'm also at work but once I get home I'll upload the experiments I done so far and post a link so you can see what I've been trying.

Neufena

Statistics: Posted by neufena — 13 Jun 2007, 14:25


]]>
2007-06-13T13:27:36+02:00 2007-06-13T13:27:36+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2198#p2198 <![CDATA[Help creating a looping midi sampler.]]>
Right now I can't quite figure out everything you have to do to make this work, but I think it would be simpler and give a more predictable result if you use the sampler in sync mode Loop when the note is held, and switch to Button when the note stops.

Actually - if you only want the sample to be played at one pitch, you could simply connect a switch to the Sync mode inlet and use Midi learn on that switch. The two first sync modes are Button and Loop, which corresponds nicely to the 0 and 1 sent from the switch module. If you want the sound to stop at once and not play through to the end position, connect a "From 1 to 0.pat" between the switch and the Stop inlet on the sampler.

If you want to play the sample freely, you will obviously have to do some more. I'm at work now and can't help with details, but unless someone else has a solution and you haven't found one yourself, I could try to make a patch for you later on.

Statistics: Posted by bsork — 13 Jun 2007, 13:27


]]>
2007-06-13T12:41:17+02:00 2007-06-13T12:41:17+02:00 https://brainmodular.org/forums/viewtopic.php?t=433&p=2195#p2195 <![CDATA[Help creating a looping midi sampler.]]>
When the position is equal to the loop end-point set position to the loop start-point. This didn’t work at all. I put a trunc module in between the position and the a=b, this worked intermittently, about 1 in 3 times.

I then tried replacing the a=b with a>b but this was still just as unreliable.

Am I missing something or does anyone have any ideas how to make this work?

Thanks,

Neufena

Statistics: Posted by neufena — 13 Jun 2007, 12:41


]]>