Search found 366 matches

by cuse
Mon Mar 01, 2021 9:52 pm
Forum: Newbies & Support
Topic: Compiling LinuxSampler deb package for ARM (Raspberry PI) VST or other plug-ins are not created.
Replies: 2
Views: 12557

Re: Compiling LinuxSampler deb package for ARM (Raspberry PI) VST or other plug-ins are not created.

audioeffectx.h is a header file of Steinberg's VST SDK. If you have the VST SDK, then you have this header file.

You usually need to download the VST SDK manually. That's because Steinberg does not permit redistribution of their SDK without their written consent.
by cuse
Thu Feb 04, 2021 1:26 pm
Forum: Newbies & Support
Topic: MIDI piano - soft pedal support in LS?
Replies: 5
Views: 15492

Re: MIDI piano - soft pedal support in LS?

Yes, soft pedal is not a hard coded sound feature unlike e.g. sustain pedal so it needs to be defined in the instrument (no matter if sfz or gig) what shall happen exactly if the soft pedal is pressed down. That's because for other things like sustain pedal the common intended behaviour is clear, it...
by cuse
Sat Dec 12, 2020 4:36 pm
Forum: Newbies & Support
Topic: Logic pro Does not validate audio unit plugin on macOS catalina
Replies: 1
Views: 13010

Re: Logic pro Does not validate audio unit plugin on macOS catalina

There is 64 bit support for years. Is this an ARM Mac?
by cuse
Thu Oct 15, 2020 7:19 pm
Forum: Newbies & Support
Topic: SFZ parser source code
Replies: 1
Views: 12702

Re: SFZ parser source code

by cuse
Thu Jul 16, 2020 5:41 pm
Forum: General LinuxSampler Discussion
Topic: Reduce / identify latency in Linux sampler
Replies: 8
Views: 24431

Re: Reduce / identify latency in Linux sampler

Ok I see. That might be an explanation, because the SFZ engine is currently not maintained on the same level as the gig engine.
by cuse
Thu Jul 16, 2020 5:38 pm
Forum: Newbies & Support
Topic: Multiple Release Samples Triggered By Sustain Length
Replies: 1
Views: 12733

Re: Multiple Release Samples Triggered By Sustain Length

Yes, that's possible. Not sure if there was an easy way with SFZ itself, but you can always write an NKSP script to handle that in any precise way you might imagine. To capture the current time (e.g. when a note is triggered) you would read the built-in NKSP variable $ENGINE_UPTIME . Then when the n...
by cuse
Sat Jun 13, 2020 1:14 pm
Forum: Newbies & Support
Topic: sfz format: smpl chunk loops not supported for FLAC files
Replies: 9
Views: 20057

Re: sfz format: smpl chunk loops not supported for FLAC files

These were not fixes for libsndfile. What they do is simply accessing the 'smpl' RIFF chunk directly (on application level, not as a libsndfile patch). We could make a similar workaround in LS of course, it is not complicated, but the preferable solution still would be to address this in libsndilfe....
by cuse
Thu Jun 11, 2020 5:42 pm
Forum: Newbies & Support
Topic: sfz format: smpl chunk loops not supported for FLAC files
Replies: 9
Views: 20057

Re: sfz format: smpl chunk loops not supported for FLAC files

loop_mode seems to be SFZv1, so it should be supported by all players:
https://sfzformat.com/opcodes/loop_mode
by cuse
Thu Jun 11, 2020 3:54 pm
Forum: Newbies & Support
Topic: sfz format: smpl chunk loops not supported for FLAC files
Replies: 9
Views: 20057

Re: sfz format: smpl chunk loops not supported for FLAC files

Digging further, it seems to me as if libsndfile does not support reading/writing loop info from/to FLAC files: https://github.com/erikd/libsndfile/blob/master/src/flac.c Just for comparison, the relevant libsndfile source section for loop info in wav files: https://github.com/erikd/libsndfile/blob/...
by cuse
Thu Jun 11, 2020 3:20 pm
Forum: Newbies & Support
Topic: sfz format: smpl chunk loops not supported for FLAC files
Replies: 9
Views: 20057

Re: sfz format: smpl chunk loops not supported for FLAC files

By default it's set to no_loop : http://svn.linuxsampler.org/cgi-bin/viewvc.cgi/linuxsampler/trunk/src/engines/sfz/sfz.cpp?view=markup&pathrev=3497#l347 ... I realize there is a different problem BTW: If a user specifies loop_mode=no_loop in a sfz file, then my expectation would be that the sampler...