Search found 10 matches

by io7m
Sun Jun 24, 2018 9:27 am
Forum: General LinuxSampler Discussion
Topic: Efficiently creating a large instrument
Replies: 1
Views: 11599

Re: Efficiently creating a large instrument

Given that this post only got approved by an admin today: I did eventually script the creation of the instrument, and I used the SFZ format to do it.
by io7m
Wed Feb 21, 2018 8:45 pm
Forum: General LinuxSampler Discussion
Topic: Efficiently creating a large instrument
Replies: 1
Views: 11599

Efficiently creating a large instrument

Hello. I have directories full of samples arranged like this: alpha/ 0.wav 1.wav 2.wav 3.wav 4.wav 5.wav 6.wav 7.wav 8.wav 9.wav 10.wav 11.wav 12.wav 13.wav 14.wav 15.wav beta/ 0.wav 1.wav 2.wav 3.wav 4.wav 5.wav 6.wav 7.wav 8.wav 9.wav 10.wav 11.wav 12.wav 13.wav 14.wav 15.wav delta/ 0.wav 1.wav 2....
by io7m
Tue Feb 20, 2018 12:00 am
Forum: Newbies & Support
Topic: LinuxSampler doesn't see gigedit
Replies: 4
Views: 15642

Re: LinuxSampler doesn't see gigedit

David Runge just pushed a new gigedit package that appears to fix the problem.
by io7m
Mon Feb 19, 2018 11:43 am
Forum: Newbies & Support
Topic: LinuxSampler doesn't see gigedit
Replies: 4
Views: 15642

Re: LinuxSampler doesn't see gigedit

Hello! I'm seeing this problem too (on Arch). It seems to have started very recently. If anyone could advise as to how to track down what the problem is, I'd appreciate it. I've tried tracing the process with strace but no luck. It happens under both qsampler and jsampler, so I'm guessing it's a pro...
by io7m
Wed Oct 25, 2017 4:18 pm
Forum: Newbies & Support
Topic: Bidirectional looping problem
Replies: 8
Views: 19541

Re: Bidirectional looping problem

Hello! plusminus: I received your message about processing directories, but unfortunately I don't have a high enough user level here to send private messages. In order to process a directory full of samples, you could do something like this: Let's assume you've got all of your original samples in a ...
by io7m
Wed Oct 04, 2017 11:34 pm
Forum: Newbies & Support
Topic: Bidirectional looping problem
Replies: 8
Views: 19541

Re: Bidirectional looping problem

Small script I'm using to preprocess samples in the manner you describe: #!/bin/sh if [ $# -ne 2 ] then echo "usage: in out" 2>&1 exit 1 fi FILE_IN="$1" shift FILE_OUT="$1" shift LOOP_START='0.3' LOOP_END='0.35' TEMPORARIES=`mktemp -d` || exit 1 trap "rm -rv $TEMPORARIES" EXIT || exit 1 # # First, t...
by io7m
Wed Oct 04, 2017 5:06 pm
Forum: Newbies & Support
Topic: Bidirectional looping problem
Replies: 8
Views: 19541

Re: Bidirectional looping problem

I've just realized you said "loop size", as in the number of samples between the loop start and loop end points.
by io7m
Wed Oct 04, 2017 11:17 am
Forum: Newbies & Support
Topic: Bidirectional looping problem
Replies: 8
Views: 19541

Re: Bidirectional looping problem

linuxsampler loop size needs to be in around 32000 for bidirectional loop to kick in. OK, thanks! When you say that it has to be around 32000 before looping kicks in, do you mean that the total sample length has to be >= 32000, or do you mean that the loop start point has to be at >= 32000 samples?...
by io7m
Tue Oct 03, 2017 11:22 am
Forum: Newbies & Support
Topic: Bidirectional looping problem
Replies: 8
Views: 19541

Bidirectional looping problem

Hello. I have the following: http://ataxia.io7m.com/2017/10/03/fish_kit.gig It's an experimental drum kit that uses bidirectional looping to indefinitely extend "percussion" sounds. The problem: Bidirectional looping seems not to work for most samples. I seem to get ordinary forward looping. It's pa...