Search found 22 matches

by luisgarrido
Thu Jun 10, 2010 11:06 am
Forum: General LinuxSampler Discussion
Topic: Development news?
Replies: 3
Views: 5635

Re: Development news?

As the OP said, you can check out CVS activity at http://linuxsampler.org/ There is no more eloquent testimony of the development status than that, facts speak louder than words. LS is a complex beast and a work of love. If you know anything about software development you can see there are thousands...
by luisgarrido
Thu Apr 22, 2010 9:27 am
Forum: General LinuxSampler Discussion
Topic: Gigedit and sample duration
Replies: 2
Views: 4976

Re: Gigedit and sample duration

You have to give the sampler more samples to play so the note lasts longer. Either you record longer samples or you use the "loop" feature, so the sampler goes over and over through a user-defined section of the sample. LFOs have absolutely nothing to do with how long a note lasts. With all due resp...
by luisgarrido
Fri Feb 19, 2010 9:11 am
Forum: Sample Libraries
Topic: Crisis GM 3.01: Now in .gig format!
Replies: 19
Views: 74502

Re: Crisis GM 3.01: Now in .gig format!

I commend you for your efforts and look forward to your results. I don't want to discourage you, but the licensing issues and distribution details seem a bit limited. All musicians over the world can load and use freely CGM3.0 without any restriction excepted this one : CGM3.0 is not for commercial ...
by luisgarrido
Fri Feb 19, 2010 8:45 am
Forum: Newbies & Support
Topic: Simple Sampler
Replies: 8
Views: 5771

Re: Simple Sampler

I recommend you start a Linuxsampler instance, open a telnet session to it and start issuing LSCP commands. Then you will realize how easy would it be to create a very simple GUI in your app that would do the same, since you only need a minimal part of LS functionality. See: http://www.linuxsampler....
by luisgarrido
Thu Feb 18, 2010 11:20 am
Forum: Newbies & Support
Topic: Simple Sampler
Replies: 8
Views: 5771

Re: Simple Sampler

I will use it for my program Live-Styler (http://www.live-styler.us) as output device. According to LinuxSampler license you cannot use it as part of a commercial product . If you are still interested perhaps you can work out another licensing terms with LS authors. It should be pretty easy to desi...
by luisgarrido
Sun Nov 15, 2009 9:54 pm
Forum: General LinuxSampler Discussion
Topic: opensource sample lib format
Replies: 37
Views: 182616

Re: opensource sample lib format

Format conversion can only go so far, since there may be some fundamental incompatibilities in the engines. A very easy example would be the random dimension in gig, which can't be translated to sf2 at all. More subtle features could be envelope definitions, response curves, filtering... I'll confes...
by luisgarrido
Thu Oct 29, 2009 8:13 pm
Forum: Newbies & Support
Topic: usage question: sampling for transcription
Replies: 2
Views: 2741

Re: usage question: sampling for transcription

There are a couple of programs that can do that, although their scope is a bit broader: ardour and sonicvisualiser. If you are familiar with source code compilation you can try my very own soundtoucher, which aims to be a very simple utility for the specific purpose you describe: http://sourceforge....
by luisgarrido
Sun Aug 30, 2009 4:02 pm
Forum: General LinuxSampler Discussion
Topic: Donating for the commercial exception to be removed?
Replies: 7
Views: 38606

Re: Donating for the commercial exception to be removed?

If what you guys want is to make some rightful bucks out of all the effort and talent you threw in LS I think donations are not very effective, only very well-off people will pay for something they can get from free. Perhaps you could go for the old dual scheme: a "Pro" closed source version, with s...
by luisgarrido
Mon Aug 17, 2009 11:53 pm
Forum: Tips & Tricks
Topic: Optimised Flags
Replies: 3
Views: 24903

Re: Optimised Flags

I have a Pentium-M 1.6 GHz. Fooled around with the benchmarks and came up with this:

Code: Select all

CXXFLAGS="-O2 -march=pentium-m -ffast-math -mmmx -msse -funroll-loops -fomit-frame-pointer"
I don't recall the exact figures, but the improvement was about 10% of CPU usage.
by luisgarrido
Mon Aug 17, 2009 11:42 pm
Forum: Tips & Tricks
Topic: Gigedit workflow
Replies: 6
Views: 33052

Re: Gigedit workflow

I authored Swami's autolooper, although the current version is buggy. The algorithm can't be any simpler, it is just autocorrelation analysis. Basically you make an exhaustive brute-force search looking for similar chunks and you pick up the best results. It is not evident from the actual code becau...