/[svn]/linuxsampler/trunk/Documentation/lscp.xml
ViewVC logotype

Annotation of /linuxsampler/trunk/Documentation/lscp.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2188 - (hide annotations) (download) (as text)
Fri Jun 24 19:39:11 2011 UTC (12 years, 10 months ago) by iliev
File MIME type: text/xml
File size: 479915 byte(s)
* Added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",
  "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",
  "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"

1 schoenebeck 151 <?xml version="1.0" encoding="UTF-8"?>
2    
3     <!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
4     <!ENTITY rfc2119 PUBLIC ''
5     'http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml'>
6     ]>
7    
8     <?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
9    
10     <?rfc toc="yes" ?>
11     <?rfc symrefs="yes" ?>
12     <?rfc sortrefs="yes"?>
13     <?rfc iprnotified="no" ?>
14    
15 schoenebeck 973 <!-- FIXME: next attribute should actually be "yes", temporarily disbled due
16     to an annoying "missing Normative/Informative References" error message -->
17     <?rfc strict="no" ?>
18    
19 schoenebeck 2025 <rfc category="std" ipr="full3978" docName="LSCP 1.5">
20 schoenebeck 151 <front>
21 schoenebeck 1429 <title>LinuxSampler Control Protocol</title>
22 schoenebeck 151 <author initials='C.S.' surname="Schoenebeck" fullname='C.
23     Schoenebeck'>
24     <organization>
25     Interessengemeinschaft Software Engineering e. V.
26     </organization>
27     <address>
28     <postal>
29     <street>Max-Planck-Str. 39</street>
30     <!-- <code>74081</code> -->
31     <city>74081 Heilbronn</city>
32     <country>Germany</country>
33     </postal>
34     <email>schoenebeck at software minus engineering dot org</email>
35     </address>
36     </author>
37 iliev 2188 <date month="June" year="2011"/>
38 schoenebeck 151 <workgroup>LinuxSampler Developers</workgroup>
39     <keyword>LSCP</keyword>
40     <abstract>
41     <t>The LinuxSampler Control Protocol (LSCP) is an
42     application-level protocol primarily intended for local and
43 schoenebeck 571 remote controlling the LinuxSampler backend application, which is a
44     sophisticated server-like console application essentially playing
45     back audio samples and manipulating the samples in real time to
46     certain extent.</t>
47 schoenebeck 151 </abstract>
48     </front>
49    
50     <middle>
51     <section title="Requirements notation">
52     <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL",
53     "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY",
54     and "OPTIONAL" in this document are to be interpreted as
55     described in <xref target="RFC2119"/>.</t>
56    
57     <t>This protocol is always case-sensitive if not explicitly
58     claimed the opposite.</t>
59    
60     <t>In examples, "C:" and "S:" indicate lines sent by the client
61     (front-end) and server (LinuxSampler) respectively. Lines in
62     examples must be interpreted as every line being CRLF
63     terminated (carriage return character followed by line feed
64 schoenebeck 1249 character as defined in the ASCII standard <xref target="RFC20"/>),
65     thus the following example:</t>
66 schoenebeck 151
67     <t>
68     <list>
69     <t>C: "some line"</t>
70     <t>&nbsp;&nbsp;&nbsp;"another line"</t>
71     </list>
72     </t>
73    
74     <t>must actually be interpreted as client sending the following
75     message:</t>
76    
77     <t>
78     <list>
79     <t>"some line&lt;CR&gt;&lt;LF&gt;another
80     line&lt;CR&gt;&lt;LF&gt;"</t>
81     </list>
82     </t>
83    
84     <t>where &lt;CR&gt; symbolizes the carriage return character and
85     &lt;LF&gt; the line feed character as defined in the ASCII
86     standard.</t>
87    
88     <t>Due to technical reasons, messages can arbitrary be
89     fragmented, means the following example:</t>
90    
91     <t>
92     <list>
93     <t>S: "abcd"</t>
94     </list>
95     </t>
96    
97     <t>could also happen to be sent in three messages like in the
98     following sequence scenario:</t>
99    
100     <t>
101     <list style="symbols">
102     <t>server sending message "a"</t>
103     <t>followed by a delay (pause) with
104     arbitrary duration</t>
105     <t>followed by server sending message
106     "bcd&lt;CR&gt;"</t>
107     <t>again followed by a delay (pause) with arbitrary
108     duration</t>
109     <t>followed by server sending the message
110     "&lt;LF&gt;"</t>
111     </list>
112     </t>
113    
114     <t>where again &lt;CR&gt; and &lt;LF&gt; symbolize the carriage
115     return and line feed characters respectively.</t>
116     </section>
117    
118 schoenebeck 571 <section title="Versioning of this specification" anchor="LSCP versioning">
119     <t>LSCP will certainly be extended and enhanced by-and-by. Each official
120     release of the LSCP specification will be tagged with a unique version
121     tuple. The version tuple consists at least of a major and minor version
122     number like:
123     </t>
124     <t>
125     <list>
126     <t>"1.2"</t>
127     </list>
128     </t>
129     <t>
130     In this example the major version number would be "1" and the minor
131     version number would be "2". Note that the version tuple might also
132     have more than two elements. The major version number defines a
133     group of backward compatible versions. That means a frontend is
134     compatible to the connected sampler if and only if the LSCP versions
135     to which each of the two parties complies to, match both of the
136 schoenebeck 573 following rules:
137 schoenebeck 571 </t>
138     <t>Compatibility:</t>
139     <t>
140     <list style="numbers">
141     <t>The frontend's LSCP major version and the sampler's LSCP
142     major version are exactly equal.</t>
143     <t>The frontend's LSCP minor version is less or equal than
144     the sampler's LSCP minor version.</t>
145     </list>
146     </t>
147     <t>
148     Compatibility can only be claimed if both rules are true.
149     The frontend can use the
150     <xref target="GET SERVER INFO">"GET SERVER INFO"</xref> command to
151     get the version of the LSCP specification the sampler complies with.
152     </t>
153     </section>
154    
155 schoenebeck 151 <section title="Introduction">
156     <t>LinuxSampler is a so called software sampler application
157     capable to playback audio samples from a computer's Random
158     Access Memory (RAM) as well as directly streaming it from disk.
159     LinuxSampler is designed to be modular. It provides several so
160     called "sampler engines" where each engine is specialized for a
161     certain purpose. LinuxSampler has virtual channels which will be
162     referred in this document as "sampler channels". The channels
163     are in such way virtual as they can be connected to an
164     arbitrary MIDI input method and arbitrary MIDI channel (e.g.
165 schoenebeck 222 sampler channel 17 could be connected to an ALSA sequencer
166 schoenebeck 151 device 64:0 and listening to MIDI channel 1 there). Each sampler
167 schoenebeck 571 channel will be associated with an instance of one of the available
168 schoenebeck 151 sampler engines (e.g. GigEngine, DLSEngine). The audio output of
169     each sampler channel can be routed to an arbitrary audio output
170 schoenebeck 222 method (ALSA / JACK) and an arbitrary audio output channel
171 schoenebeck 151 there.</t>
172     </section>
173    
174     <section title="Focus of this protocol">
175     <t>Main focus of this protocol is to provide a way to configure
176     a running LinuxSampler instance and to retrieve information
177     about it. The focus of this protocol is not to provide a way to
178     control synthesis parameters or even to trigger or release
179     notes. Or in other words; the focus are those functionalities
180     which are not covered by MIDI or which may at most be handled
181     via MIDI System Exclusive Messages.</t>
182     </section>
183    
184     <section title="Communication Overview">
185     <t>There are two distinct methods of communication between a
186     running instance of LinuxSampler and one or more control
187     applications, so called "front-ends": a simple request/response
188     communication method used by the clients to give commands to the
189     server as well as to inquire about server's status and a
190     subscribe/notify communication method used by the client to
191     subscribe to and receive notifications of certain events as they
192     happen on the server. The latter needs more effort to be
193     implemented in the front-end application. The two communication
194     methods will be described next.</t>
195    
196     <section title="Request/response communication method">
197 schoenebeck 571 <t>This simple communication method is based on
198     <xref target="RFC793">TCP</xref>. The
199 schoenebeck 151 front-end application establishes a TCP connection to the
200     LinuxSampler instance on a certain host system. Then the
201     front-end application will send certain ASCII based commands
202     as defined in this document (every command line must be CRLF
203     terminated - see "Conventions used in this document" at the
204     beginning of this document) and the LinuxSampler application
205     will response after a certain process time with an
206     appropriate ASCII based answer, also as defined in this
207     document. So this TCP communication is simply based on query
208     and answer paradigm. That way LinuxSampler is only able to
209     answer on queries from front-ends, but not able to
210     automatically send messages to the client if it's not asked
211     to. The fronted should not reconnect to LinuxSampler for
212     every single command, instead it should keep the connection
213     established and simply resend message(s) for subsequent
214     commands. To keep information in the front-end up-to-date
215     the front-end has to periodically send new requests to get
216     the current information from the LinuxSampler instance. This
217     is often referred to as "polling". While polling is simple
218     to implement and may be OK to use in some cases, there may
219     be disadvantages to polling such as network traffic overhead
220     and information being out of date.
221     It is possible for a client or several clients to open more
222     than one connection to the server at the same time. It is
223     also possible to send more than one request to the server
224     at the same time but if those requests are sent over the
225     same connection server MUST execute them sequentially. Upon
226     executing a request server will produce a result set and
227     send it to the client. Each and every request made by the
228     client MUST result in a result set being sent back to the
229     client. No other data other than a result set may be sent by
230     a server to a client. No result set may be sent to a client
231     without the client sending request to the server first. On
232     any particular connection, result sets MUST be sent in their
233     entirety without being interrupted by other result sets. If
234     several requests got queued up at the server they MUST be
235     processed in the order they were received and result sets
236     MUST be sent back in the same order.</t>
237    
238     <section title="Result format">
239     <t>Result set could be one of the following types:</t>
240     <t>
241     <list style="numbers">
242     <t>Normal</t>
243     <t>Warning</t>
244     <t>Error</t>
245     </list>
246     </t>
247     <t>Warning and Error result sets MUST be single line and
248     have the following format:</t>
249     <t>
250     <list style="symbols">
251     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;"</t>
252     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;"</t>
253     </list>
254     </t>
255     <t>Where &lt;warning-code&gt; and &lt;error-code&gt; are
256     numeric unique identifiers of the warning or error and
257     &lt;warning-message&gt; and &lt;error-message&gt; are
258     human readable descriptions of the warning or error
259     respectively.</t>
260 schoenebeck 494 <t>Examples:</t>
261     <t>
262     <list>
263     <t>C: "LOAD INSTRUMENT '/home/me/Boesendorfer24bit.gig" 0 0</t>
264     <t>S: "WRN:32:This is a 24 bit patch which is not supported natively yet."</t>
265     </list>
266     </t>
267     <t>
268     <list>
269     <t>C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA EAR"</t>
270     <t>S: "ERR:3456:Audio output driver 'ALSA' does not have a parameter 'EAR'."</t>
271     </list>
272     </t>
273     <t>
274     <list>
275     <t>C: "GET AUDIO_OUTPUT_DEVICE INFO 123456"</t>
276     <t>S: "ERR:9:There is no audio output device with index 123456."</t>
277     </list>
278 schoenebeck 499 </t>
279 schoenebeck 151 <t>Normal result sets could be:</t>
280     <t>
281     <list style="numbers">
282     <t>Empty</t>
283     <t>Single line</t>
284     <t>Multi-line</t>
285     </list>
286     </t>
287     <t> Empty result set is issued when the server only
288     needed to acknowledge the fact that the request was
289     received and it was processed successfully and no
290     additional information is available. This result set has
291     the following format:</t>
292     <t>
293     <list>
294     <t>"OK"</t>
295     </list>
296     </t>
297 schoenebeck 494 <t>Example:</t>
298     <t>
299     <list>
300     <t>C: "SET AUDIO_OUTPUT_DEVICE_PARAMETER 0 CHANNELS=4"</t>
301     <t>S: "OK"</t>
302     </list>
303     </t>
304 schoenebeck 151 <t>Single line result sets are command specific. One
305     example of a single line result set is an empty line.
306     Multi-line result sets are command specific and may
307     include one or more lines of information. They MUST
308     always end with the following line:</t>
309     <t>
310     <list>
311     <t>"."</t>
312     </list>
313     </t>
314 schoenebeck 494 <t>Example:</t>
315     <t>
316     <list>
317     <t>C: "GET AUDIO_OUTPUT_DEVICE INFO 0"</t>
318     <t>S: "DRIVER: ALSA"</t>
319     <t>&nbsp;&nbsp;&nbsp;"CHANNELS: 2"</t>
320     <t>&nbsp;&nbsp;&nbsp;"SAMPLERATE: 44100"</t>
321     <t>&nbsp;&nbsp;&nbsp;"ACTIVE: true"</t>
322     <t>&nbsp;&nbsp;&nbsp;"FRAGMENTS: 2"</t>
323     <t>&nbsp;&nbsp;&nbsp;"FRAGMENTSIZE: 128"</t>
324     <t>&nbsp;&nbsp;&nbsp;"CARD: '0,0'"</t>
325     <t>&nbsp;&nbsp;&nbsp;"."</t>
326     </list>
327     </t>
328 schoenebeck 151 <t>In addition to above mentioned formats, warnings and
329     empty result sets MAY be indexed. In this case, they
330     have the following formats respectively:</t>
331     <t>
332     <list style="symbols">
333     <t>"WRN[&lt;index&gt;]:&lt;warning-code&gt;:&lt;warning-message&gt;"</t>
334     <t>"OK[&lt;index&gt;]"</t>
335     </list>
336     </t>
337     <t>where &lt;index&gt; is command specific and is used
338     to indicate channel number that the result set was
339     related to or other integer value.</t>
340     <t>Each line of the result set MUST end with
341     &lt;CRLF&gt;.</t>
342 schoenebeck 494 <t>Examples:</t>
343     <t>
344     <list>
345     <t>C: "ADD CHANNEL"</t>
346     <t>S: "OK[12]"</t>
347     </list>
348     </t>
349     <t>
350     <list>
351     <t>C: "CREATE AUDIO_OUTPUT_DEVICE ALSA SAMPLERATE=96000"</t>
352     <t>S: "WRN[0]:32:Sample rate not supported, using 44100 instead."</t>
353     </list>
354     </t>
355 schoenebeck 151 </section>
356     </section>
357     <section title="Subscribe/notify communication method">
358     <t>This more sophisticated communication method is actually
359     only an extension of the simple request/response
360     communication method. The front-end still uses a TCP
361     connection and sends the same commands on the TCP
362     connection. Two extra commands are SUBSCRIBE and UNSUBSCRIBE
363     commands that allow a client to tell the server that it is
364     interested in receiving notifications about certain events
365     as they happen on the server. The SUBSCRIBE command has the
366     following syntax:</t>
367    
368     <t>
369     <list>
370     <t>SUBSCRIBE &lt;event-id&gt;</t>
371     </list>
372     </t>
373    
374     <t>where &lt;event-id&gt; will be replaced by the respective
375     event that client wants to subscribe to. Upon receiving such
376     request, server SHOULD respond with OK and start sending
377     EVENT notifications when a given even has occurred to the
378     front-end when an event has occurred. It MAY be possible
379     certain events may be sent before OK response during real
380     time nature of their generation. Event messages have the
381     following format:</t>
382    
383     <t>
384     <list>
385     <t>NOTIFY:&lt;event-id&gt;:&lt;custom-event-data&gt;</t>
386     </list>
387     </t>
388    
389     <t>where &lt;event-id&gt; uniquely identifies the event that
390     has occurred and &lt;custom-event-data&gt; is event
391     specific.</t>
392    
393     <t>Several rules must be followed by the server when
394     generating events:</t>
395    
396     <t>
397     <list style="numbers">
398     <t>Events MUST NOT be sent to any client who has not
399     issued an appropriate SUBSCRIBE command.</t>
400     <t>Events MUST only be sent using the same
401     connection that was used to subscribe to them.</t>
402     <t>When response is being sent to the client, event
403     MUST be inserted in the stream before or after the
404     response, but NOT in the middle. Same is true about
405     the response. It should never be inserted in the
406     middle of the event message as well as any other
407     response.</t>
408     </list>
409     </t>
410    
411     <t>If the client is not interested in a particular event
412     anymore it MAY issue UNSUBSCRIBE command using the following
413     syntax:</t>
414    
415     <t>
416     <list>
417     <t>UNSUBSCRIBE &lt;event-id&gt;</t>
418     </list>
419     </t>
420    
421     <t>where &lt;event-id&gt; will be replace by the respective
422     event that client is no longer interested in receiving. For
423 schoenebeck 534 a list of supported events see <xref target="events" />.</t>
424 schoenebeck 151
425     <t>Example: the fill states of disk stream buffers have
426     changed on sampler channel 4 and the LinuxSampler instance
427     will react by sending the following message to all clients
428     who subscribed to this event:</t>
429    
430     <t>
431     <list>
432     <t>NOTIFY:CHANNEL_BUFFER_FILL:4 [35]62%,[33]80%,[37]98%</t>
433     </list>
434     </t>
435    
436     <t>Which means there are currently three active streams on
437     sampler channel 4, where the stream with ID "35" is filled
438     by 62%, stream with ID 33 is filled by 80% and stream with
439     ID 37 is filled by 98%.</t>
440    
441     <t>Clients may choose to open more than one connection to
442     the server and use some connections to receive notifications
443     while using other connections to issue commands to the
444     back-end. This is entirely legal and up to the
445     implementation. This does not change the protocol in any way
446     and no special restrictions exist on the server to allow or
447     disallow this or to track what connections belong to what
448     front-ends. Server will listen on a single port, accept
449     multiple connections and support protocol described in this
450     specification in it's entirety on this single port on each
451     connection that it accepted.</t>
452    
453     <t>Due to the fact that TCP is used for this communication,
454     dead peers will be detected automatically by the OS TCP
455     stack. While it may take a while to detect dead peers if no
456     traffic is being sent from server to client (TCP keep-alive
457     timer is set to 2 hours on many OSes) it will not be an
458     issue here as when notifications are sent by the server,
459     dead client will be detected quickly.</t>
460    
461     <t>When connection is closed for any reason server MUST
462     forget all subscriptions that were made on this connection.
463     If client reconnects it MUST resubscribe to all events that
464     it wants to receive.</t>
465    
466     </section>
467     </section>
468    
469 schoenebeck 573 <section title="Description for control commands" anchor="control_commands">
470 schoenebeck 151 <t>This chapter will describe the available control commands
471     that can be sent on the TCP connection in detail. Some certain
472 schoenebeck 534 commands (e.g. <xref target="GET CHANNEL INFO">"GET CHANNEL INFO"</xref>
473     or <xref target="GET ENGINE INFO">"GET ENGINE INFO"</xref>) lead to
474 schoenebeck 151 multiple-line responses. In this case LinuxSampler signals the
475     end of the response by a "." (single dot) line.</t>
476    
477     <section title="Ignored lines and comments">
478     <t>White lines, that is lines which only contain space and
479     tabulator characters, and lines that start with a "#"
480     character are ignored, thus it's possible for example to
481     group commands and to place comments in a LSCP script
482     file.</t>
483     </section>
484    
485     <section title="Configuring audio drivers">
486     <t>Instances of drivers in LinuxSampler are called devices.
487     You can use multiple audio devices simultaneously, e.g. to
488 schoenebeck 222 output the sound of one sampler channel using the ALSA audio
489 schoenebeck 151 output driver, and on another sampler channel you might want
490 schoenebeck 222 to use the JACK audio output driver. For particular audio
491 schoenebeck 151 output systems it's also possible to create several devices
492 schoenebeck 222 of the same audio output driver, e.g. two separate ALSA
493 schoenebeck 151 audio output devices for using two different sound cards at
494     the same time. This chapter describes all commands to
495     configure LinuxSampler's audio output devices and their
496     parameters.</t>
497    
498     <t>Instead of defining commands and parameters for each
499     driver individually, all possible parameters, their meanings
500     and possible values have to be obtained at runtime. This
501     makes the protocol a bit abstract, but has the advantage,
502     that front-ends can be written independently of what drivers
503     are currently implemented and what parameters these drivers
504     are actually offering. This means front-ends can even handle
505     drivers which are implemented somewhere in future without
506     modifying the front-end at all.</t>
507    
508     <t>Note: examples in this chapter showing particular
509     parameters of drivers are not meant as specification of the
510     drivers' parameters. Driver implementations in LinuxSampler
511     might have complete different parameter names and meanings
512     than shown in these examples or might change in future, so
513     these examples are only meant for showing how to retrieve
514     what parameters drivers are offering, how to retrieve their
515     possible values, etc.</t>
516    
517 schoenebeck 534 <section title="Getting amount of available audio output drivers" anchor="GET AVAILABLE_AUDIO_OUTPUT_DRIVERS">
518     <t>Use the following command to get the number of
519     audio output drivers currently available for the
520     LinuxSampler instance:</t>
521     <t>
522     <list>
523     <t>GET AVAILABLE_AUDIO_OUTPUT_DRIVERS</t>
524     </list>
525     </t>
526     <t>Possible Answers:</t>
527     <t>
528     <list>
529     <t>LinuxSampler will answer by sending the
530     number of audio output drivers.</t>
531     </list>
532     </t>
533     <t>Example:</t>
534     <t>
535     <list>
536     <t>C: "GET AVAILABLE_AUDIO_OUTPUT_DRIVERS"</t>
537     <t>S: "2"</t>
538     </list>
539     </t>
540     </section>
541    
542     <section title="Getting all available audio output drivers" anchor="LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS">
543 schoenebeck 151 <t>Use the following command to list all audio output
544     drivers currently available for the LinuxSampler
545     instance:</t>
546     <t>
547     <list>
548 schoenebeck 534 <t>LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS</t>
549 schoenebeck 151 </list>
550     </t>
551     <t>Possible Answers:</t>
552     <t>
553     <list>
554     <t>LinuxSampler will answer by sending comma
555     separated character strings, each symbolizing an
556     audio output driver.</t>
557     </list>
558     </t>
559     <t>Example:</t>
560     <t>
561     <list>
562 schoenebeck 534 <t>C: "LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS"</t>
563 schoenebeck 222 <t>S: "ALSA,JACK"</t>
564 schoenebeck 151 </list>
565     </t>
566     </section>
567    
568     <section title="Getting information about a specific audio
569 schoenebeck 534 output driver" anchor="GET AUDIO_OUTPUT_DRIVER INFO">
570 schoenebeck 151 <t>Use the following command to get detailed information
571     about a specific audio output driver:</t>
572     <t>
573     <list>
574     <t>GET AUDIO_OUTPUT_DRIVER INFO
575     &lt;audio-output-driver&gt;</t>
576     </list>
577     </t>
578     <t>Where &lt;audio-output-driver&gt; is the name of the
579 schoenebeck 534 audio output driver, returned by the
580     <xref target="LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS">"LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS"</xref> command.</t>
581 schoenebeck 151 <t>Possible Answers:</t>
582     <t>
583     <list>
584     <t>LinuxSampler will answer by sending a
585     &lt;CRLF&gt; separated list. Each answer line
586     begins with the information category name
587     followed by a colon and then a space character
588     &lt;SP&gt; and finally the info character string
589     to that info category. At the moment the
590     following information categories are
591     defined:</t>
592    
593     <t>
594     <list>
595     <t>DESCRIPTION -
596     <list>
597     <t> character string describing the
598     audio output driver</t>
599     </list>
600     </t>
601    
602     <t>VERSION -
603     <list>
604     <t>character string reflecting the
605     driver's version</t>
606     </list>
607     </t>
608    
609     <t>PARAMETERS -
610     <list>
611     <t>comma separated list of all
612     parameters available for the given
613     audio output driver, at least
614     parameters 'channels', 'samplerate'
615     and 'active' are offered by all audio
616     output drivers</t>
617     </list>
618     </t>
619     </list>
620     </t>
621    
622     <t>The mentioned fields above don't have to be
623     in particular order.</t>
624     </list>
625     </t>
626     <t>Example:</t>
627     <t>
628     <list>
629 schoenebeck 222 <t>C: "GET AUDIO_OUTPUT_DRIVER INFO ALSA"</t>
630 schoenebeck 151 <t>S: "DESCRIPTION: Advanced Linux Sound
631     Architecture"</t>
632     <t>&nbsp;&nbsp;&nbsp;"VERSION: 1.0"</t>
633     <t>&nbsp;&nbsp;&nbsp;"PARAMETERS:
634 schoenebeck 222 DRIVER,CHANNELS,SAMPLERATE,ACTIVE,FRAGMENTS,
635     FRAGMENTSIZE,CARD"</t>
636 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
637     </list>
638     </t>
639     </section>
640    
641     <section title="Getting information about specific audio
642 schoenebeck 534 output driver parameter" anchor="GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO">
643 schoenebeck 151 <t>Use the following command to get detailed information
644     about a specific audio output driver parameter:</t>
645     <t>
646     <list>
647     <t>GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO &lt;audio&gt; &lt;prm&gt; [&lt;deplist&gt;]</t>
648     </list>
649     </t>
650     <t>Where &lt;audio&gt; is the name of the audio output
651 schoenebeck 534 driver as returned by the <xref target="LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS">
652     "LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS"</xref> command,
653 schoenebeck 151 &lt;prm&gt; a specific parameter name for which information should be
654 schoenebeck 534 obtained (as returned by the
655     <xref target="GET AUDIO_OUTPUT_DRIVER INFO">"GET AUDIO_OUTPUT_DRIVER INFO"</xref> command) and
656 schoenebeck 151 &lt;deplist&gt; is an optional list of parameters on which the sought
657     parameter &lt;prm&gt; depends on, &lt;deplist&gt; is a list of key-value
658     pairs in form of "key1=val1 key2=val2 ...", where character string values
659     are encapsulated into apostrophes ('). Arguments given with &lt;deplist&gt;
660     which are not dependency parameters of &lt;prm&gt; will be ignored, means
661     the front-end application can simply put all parameters into &lt;deplist&gt;
662     with the values already selected by the user.</t>
663     <t>Possible Answers:</t>
664     <t>
665     <list>
666     <t>LinuxSampler will answer by sending a
667 schoenebeck 494 &lt;CRLF&gt; separated list.
668 schoenebeck 151 Each answer line begins with the information category name
669     followed by a colon and then a space character &lt;SP&gt; and
670     finally
671     the info character string to that info category. There are
672     information which is always returned, independently of the
673     given driver parameter and there are optional information
674     which is only shown dependently to given driver parameter. At
675     the moment the following information categories are defined:</t>
676     </list>
677     </t>
678    
679     <t>
680     <list>
681     <t>TYPE -
682     <list>
683     <t>either "BOOL" for boolean value(s) or
684     "INT" for integer
685     value(s) or "FLOAT" for dotted number(s) or "STRING" for
686     character string(s)
687     (always returned, no matter which driver parameter)</t>
688     </list>
689     </t>
690    
691     <t>DESCRIPTION -
692     <list>
693     <t>arbitrary text describing the purpose of the parameter
694     (always returned, no matter which driver parameter)</t>
695     </list>
696     </t>
697    
698     <t>MANDATORY -
699     <list>
700     <t>either true or false, defines if this parameter must be
701     given when the device is to be created with the
702 schoenebeck 534 <xref target="CREATE AUDIO_OUTPUT_DEVICE">'CREATE AUDIO_OUTPUT_DEVICE'</xref>
703     command (always returned, no matter which driver parameter)</t>
704 schoenebeck 151 </list>
705     </t>
706    
707     <t>FIX -
708     <list>
709     <t>either true or false, if false then this parameter can
710     be changed at any time, once the device is created by
711 schoenebeck 534 the <xref target="CREATE AUDIO_OUTPUT_DEVICE">'CREATE AUDIO_OUTPUT_DEVICE'</xref>
712     command (always returned, no matter which driver parameter)</t>
713 schoenebeck 151 </list>
714     </t>
715    
716     <t>MULTIPLICITY -
717     <list>
718     <t>either true or false, defines if this parameter allows
719     only one value or a list of values, where true means
720     multiple values and false only a single value allowed
721     (always returned, no matter which driver parameter)</t>
722     </list>
723     </t>
724    
725     <t>DEPENDS -
726     <list>
727 schoenebeck 561 <t>comma separated list of parameters this parameter depends
728 schoenebeck 151 on, means the values for fields 'DEFAULT', 'RANGE_MIN',
729     'RANGE_MAX' and 'POSSIBILITIES' might depend on these
730     listed parameters, for example assuming that an audio
731 schoenebeck 222 driver (like the ALSA driver) offers parameters 'card'
732 schoenebeck 151 and 'samplerate' then parameter 'samplerate' would
733     depend on 'card' because the possible values for
734     'samplerate' depends on the sound card which can be
735     chosen by the 'card' parameter
736     (optionally returned, dependent to driver parameter)</t>
737     </list>
738     </t>
739    
740     <t>DEFAULT -
741     <list>
742     <t>reflects the default value for this parameter which is
743     used when the device is created and not explicitly
744 schoenebeck 534 given with the <xref target="CREATE AUDIO_OUTPUT_DEVICE">
745     'CREATE AUDIO_OUTPUT_DEVICE'</xref> command,
746 schoenebeck 151 in case of MULTIPLCITY=true, this is a comma separated
747     list, that's why character strings are encapsulated into
748     apostrophes (')
749     (optionally returned, dependent to driver parameter)</t>
750     </list>
751     </t>
752    
753     <t>RANGE_MIN -
754     <list>
755     <t>defines lower limit of the allowed value range for this
756     parameter, can be an integer value as well as a dotted
757     number, this parameter is often used in conjunction
758     with RANGE_MAX, but may also appear without
759     (optionally returned, dependent to driver parameter)</t>
760     </list>
761     </t>
762    
763     <t>RANGE_MAX -
764     <list>
765     <t>defines upper limit of the allowed value range for this
766     parameter, can be an integer value as well as a dotted
767     number, this parameter is often used in conjunction with
768     RANGE_MIN, but may also appear without
769     (optionally returned, dependent to driver parameter)</t>
770     </list>
771     </t>
772    
773 schoenebeck 494 <t>POSSIBILITIES -
774 schoenebeck 151 <list>
775     <t>comma separated list of possible values for this
776     parameter, character strings are encapsulated into
777     apostrophes
778     (optionally returned, dependent to driver parameter)</t>
779     </list>
780     </t>
781     </list>
782     </t>
783    
784     <t>The mentioned fields above don't have to be in particular order.</t>
785    
786     <t>Examples:</t>
787     <t>
788     <list>
789 schoenebeck 222 <t>C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA CARD"</t>
790 schoenebeck 151 <t>S: "DESCRIPTION: sound card to be used"</t>
791     <t>&nbsp;&nbsp;&nbsp;"TYPE: STRING"</t>
792     <t>&nbsp;&nbsp;&nbsp;"MANDATORY: false"</t>
793     <t>&nbsp;&nbsp;&nbsp;"FIX: true"</t>
794     <t>&nbsp;&nbsp;&nbsp;"MULTIPLICITY: false"</t>
795     <t>&nbsp;&nbsp;&nbsp;"DEFAULT: '0,0'"</t>
796 schoenebeck 494 <t>&nbsp;&nbsp;&nbsp;"POSSIBILITIES: '0,0','1,0','2,0'"</t>
797 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
798     </list>
799     </t>
800     <t>
801     <list>
802 schoenebeck 222 <t>C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA SAMPLERATE"</t>
803 schoenebeck 151 <t>S: "DESCRIPTION: output sample rate in Hz"</t>
804     <t>&nbsp;&nbsp;&nbsp;"TYPE: INT"</t>
805     <t>&nbsp;&nbsp;&nbsp;"MANDATORY: false"</t>
806     <t>&nbsp;&nbsp;&nbsp;"FIX: false"</t>
807     <t>&nbsp;&nbsp;&nbsp;"MULTIPLICITY: false"</t>
808     <t>&nbsp;&nbsp;&nbsp;"DEPENDS: card"</t>
809     <t>&nbsp;&nbsp;&nbsp;"DEFAULT: 44100"</t>
810     <t>&nbsp;&nbsp;&nbsp;"."</t>
811     </list>
812     </t>
813     <t>
814     <list>
815 schoenebeck 222 <t>C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA SAMPLERATE CARD='0,0'"</t>
816 schoenebeck 151 <t>S: "DESCRIPTION: output sample rate in Hz"</t>
817     <t>&nbsp;&nbsp;&nbsp;"TYPE: INT"</t>
818     <t>&nbsp;&nbsp;&nbsp;"MANDATORY: false"</t>
819     <t>&nbsp;&nbsp;&nbsp;"FIX: false"</t>
820     <t>&nbsp;&nbsp;&nbsp;"MULTIPLICITY: false"</t>
821     <t>&nbsp;&nbsp;&nbsp;"DEPENDS: card"</t>
822     <t>&nbsp;&nbsp;&nbsp;"DEFAULT: 44100"</t>
823     <t>&nbsp;&nbsp;&nbsp;"RANGE_MIN: 22050"</t>
824     <t>&nbsp;&nbsp;&nbsp;"RANGE_MAX: 96000"</t>
825     <t>&nbsp;&nbsp;&nbsp;"."</t>
826     </list>
827     </t>
828     </section>
829    
830 schoenebeck 534 <section title="Creating an audio output device" anchor="CREATE AUDIO_OUTPUT_DEVICE">
831 schoenebeck 151 <t>Use the following command to create a new audio output device for the desired audio output system:</t>
832    
833     <t>
834     <list>
835     <t>CREATE AUDIO_OUTPUT_DEVICE &lt;audio-output-driver&gt; [&lt;param-list&gt;]</t>
836     </list>
837     </t>
838    
839     <t>Where &lt;audio-output-driver&gt; should be replaced by the desired audio
840 schoenebeck 571 output system as returned by the
841     <xref target="LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS">"LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS"</xref>
842     command and &lt;param-list&gt; by an optional list of driver
843 schoenebeck 151 specific parameters in form of "key1=val1 key2=val2 ...", where
844     character string values should be encapsulated into apostrophes (').
845     Note that there might be drivers which require parameter(s) to be
846     given with this command. Use the previously described commands in
847     this chapter to get this information.</t>
848    
849     <t>Possible Answers:</t>
850     <t>
851     <list>
852     <t>"OK[&lt;device-id&gt;]" -
853     <list>
854     <t>in case the device was successfully created, where
855     &lt;device-id&gt; is the numerical ID of the new device</t>
856     </list>
857     </t>
858     <t>"WRN[&lt;device-id&gt;]:&lt;warning-code&gt;:&lt;warning-message&gt;" -
859     <list>
860     <t>in case the device was created successfully, where
861     &lt;device-id&gt; is the numerical ID of the new device, but there
862     are noteworthy issue(s) related (e.g. sound card doesn't
863     support given hardware parameters and the driver is using
864     fall-back values), providing an appropriate warning code and
865     warning message</t>
866     </list>
867     </t>
868     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
869     <list>
870     <t>in case it failed, providing an appropriate error code and error message</t>
871     </list>
872     </t>
873     </list>
874     </t>
875     <t>Examples:</t>
876     <t>
877     <list>
878 schoenebeck 222 <t>C: "CREATE AUDIO_OUTPUT_DEVICE ALSA"</t>
879 schoenebeck 151 <t>S: "OK[0]"</t>
880     </list>
881     </t>
882     <t>
883     <list>
884 schoenebeck 222 <t>C: "CREATE AUDIO_OUTPUT_DEVICE ALSA CARD='2,0' SAMPLERATE=96000"</t>
885 schoenebeck 151 <t>S: "OK[1]"</t>
886     </list>
887     </t>
888     </section>
889    
890 schoenebeck 534 <section title="Destroying an audio output device" anchor="DESTROY AUDIO_OUTPUT_DEVICE">
891 schoenebeck 151 <t>Use the following command to destroy a created output device:</t>
892     <t>
893     <list>
894     <t>DESTROY AUDIO_OUTPUT_DEVICE &lt;device-id&gt;</t>
895     </list>
896     </t>
897     <t>Where &lt;device-id&gt; should be replaced by the numerical ID of the
898 schoenebeck 534 audio output device as given by the
899     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
900     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
901     command.</t>
902 schoenebeck 151 <t>Possible Answers:</t>
903     <t>
904     <list>
905     <t>"OK" -
906     <list>
907     <t>in case the device was successfully destroyed</t>
908     </list>
909     </t>
910     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
911     <list>
912     <t>in case the device was destroyed successfully, but there are
913     noteworthy issue(s) related (e.g. an audio over ethernet
914     driver was unloaded but the other host might not be
915     informed about this situation), providing an appropriate
916     warning code and warning message</t>
917     </list>
918     </t>
919     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
920     <list>
921     <t>in case it failed, providing an appropriate error code and
922     error message</t>
923     </list>
924     </t>
925     </list>
926     </t>
927     <t>Example:</t>
928     <t>
929     <list>
930     <t>C: "DESTROY AUDIO_OUTPUT_DEVICE 0"</t>
931     <t>S: "OK"</t>
932     </list>
933     </t>
934     </section>
935    
936 schoenebeck 534 <section title="Getting all created audio output device count" anchor="GET AUDIO_OUTPUT_DEVICES">
937 schoenebeck 151 <t>Use the following command to count all created audio output devices:</t>
938     <t>
939     <list>
940     <t>GET AUDIO_OUTPUT_DEVICES</t>
941     </list>
942     </t>
943     <t>Possible Answers:</t>
944     <t>
945     <list>
946     <t>LinuxSampler will answer by sending the current number of all
947     audio output devices.</t>
948     </list>
949     </t>
950     <t>Example:</t>
951     <t>
952     <list>
953     <t>C: "GET AUDIO_OUTPUT_DEVICES"</t>
954     <t>S: "4"</t>
955     </list>
956     </t>
957     </section>
958    
959 schoenebeck 534 <section title="Getting all created audio output device list" anchor="LIST AUDIO_OUTPUT_DEVICES">
960 schoenebeck 151 <t>Use the following command to list all created audio output devices:</t>
961     <t>
962     <list>
963     <t>LIST AUDIO_OUTPUT_DEVICES</t>
964     </list>
965     </t>
966     <t>Possible Answers:</t>
967     <t>
968     <list>
969     <t>LinuxSampler will answer by sending a comma separated list with
970     the numerical IDs of all audio output devices.</t>
971     </list>
972     </t>
973     <t>Example:</t>
974     <t>
975     <list>
976     <t>C: "LIST AUDIO_OUTPUT_DEVICES"</t>
977     <t>S: "0,1,4,5"</t>
978     </list>
979     </t>
980     </section>
981    
982 schoenebeck 534 <section title="Getting current settings of an audio output device" anchor="GET AUDIO_OUTPUT_DEVICE INFO">
983 schoenebeck 151 <t>Use the following command to get current settings of a specific, created audio output device:</t>
984     <t>
985     <list>
986     <t>GET AUDIO_OUTPUT_DEVICE INFO &lt;device-id&gt;</t>
987     </list>
988     </t>
989 schoenebeck 494 <t>Where &lt;device-id&gt; should be replaced by numerical ID
990 schoenebeck 151 of the audio output device as e.g. returned by the
991 schoenebeck 534 <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref> command.</t>
992 schoenebeck 151 <t>Possible Answers:</t>
993     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
994     Each answer line begins with the information category name
995     followed by a colon and then a space character &lt;SP&gt; and finally
996     the info character string to that info category. As some
997     parameters might allow multiple values, character strings are
998     encapsulated into apostrophes ('). At the moment the following
999     information categories are defined (independently of device):</t>
1000     <t>
1001     <list>
1002 schoenebeck 222 <t>DRIVER -
1003 schoenebeck 151 <list>
1004     <t>identifier of the used audio output driver, as also
1005 schoenebeck 534 returned by the
1006     <xref target="LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS">
1007     "LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS"</xref>
1008 schoenebeck 151 command</t>
1009     </list>
1010     </t>
1011 schoenebeck 222 <t>CHANNELS -
1012 schoenebeck 151 <list>
1013     <t>amount of audio output channels this device currently
1014     offers</t>
1015     </list>
1016     </t>
1017 schoenebeck 222 <t>SAMPLERATE -
1018 schoenebeck 151 <list>
1019     <t>playback sample rate the device uses</t>
1020     </list>
1021     </t>
1022 schoenebeck 222 <t>ACTIVE -
1023 schoenebeck 151 <list>
1024     <t>either true or false, if false then the audio device is
1025     inactive and doesn't output any sound, nor do the
1026     sampler channels connected to this audio device render
1027     any audio</t>
1028     </list>
1029     </t>
1030     </list>
1031     </t>
1032     <t>The mentioned fields above don't have to be in particular
1033     order. The fields above are only those fields which are
1034     returned by all audio output devices. Every audio output driver
1035     might have its own, additional driver specific parameters (see
1036 schoenebeck 534 <xref target="GET AUDIO_OUTPUT_DRIVER INFO" />)
1037     which are also returned by this command.</t>
1038 schoenebeck 151 <t>Example:</t>
1039     <t>
1040     <list>
1041     <t>C: "GET AUDIO_OUTPUT_DEVICE INFO 0"</t>
1042 schoenebeck 222 <t>S: "DRIVER: ALSA"</t>
1043     <t>&nbsp;&nbsp;&nbsp;"CHANNELS: 2"</t>
1044     <t>&nbsp;&nbsp;&nbsp;"SAMPLERATE: 44100"</t>
1045     <t>&nbsp;&nbsp;&nbsp;"ACTIVE: true"</t>
1046     <t>&nbsp;&nbsp;&nbsp;"FRAGMENTS: 2"</t>
1047     <t>&nbsp;&nbsp;&nbsp;"FRAGMENTSIZE: 128"</t>
1048     <t>&nbsp;&nbsp;&nbsp;"CARD: '0,0'"</t>
1049 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
1050     </list>
1051     </t>
1052     </section>
1053    
1054    
1055 schoenebeck 534 <section title="Changing settings of audio output devices" anchor="SET AUDIO_OUTPUT_DEVICE_PARAMETER">
1056 schoenebeck 151 <t>Use the following command to alter a specific setting of a created audio output device:</t>
1057     <t>
1058     <list>
1059     <t>SET AUDIO_OUTPUT_DEVICE_PARAMETER &lt;device-id&gt; &lt;key&gt;=&lt;value&gt;</t>
1060     </list>
1061     </t>
1062     <t>Where &lt;device-id&gt; should be replaced by the numerical ID of the
1063 schoenebeck 571 audio output device as given by the
1064     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
1065     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
1066     command, &lt;key&gt; by the name of the parameter to change
1067 schoenebeck 151 and &lt;value&gt; by the new value for this parameter.</t>
1068     <t>Possible Answers:</t>
1069     <t>
1070     <list>
1071     <t>"OK" -
1072     <list>
1073     <t>in case setting was successfully changed</t>
1074     </list>
1075     </t>
1076     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
1077     <list>
1078     <t>in case setting was changed successfully, but there are
1079     noteworthy issue(s) related, providing an appropriate
1080     warning code and warning message</t>
1081     </list>
1082     </t>
1083     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
1084     <list>
1085     <t>in case it failed, providing an appropriate error code and
1086     error message</t>
1087     </list>
1088     </t>
1089     </list>
1090     </t>
1091     <t>Example:</t>
1092     <t>
1093     <list>
1094 schoenebeck 222 <t>C: "SET AUDIO_OUTPUT_DEVICE_PARAMETER 0 FRAGMENTSIZE=128"</t>
1095 schoenebeck 151 <t>S: "OK"</t>
1096     </list>
1097     </t>
1098     </section>
1099    
1100 schoenebeck 534 <section title="Getting information about an audio channel" anchor="GET AUDIO_OUTPUT_CHANNEL INFO">
1101 schoenebeck 151 <t>Use the following command to get information about an audio channel:</t>
1102     <t>
1103     <list>
1104     <t>GET AUDIO_OUTPUT_CHANNEL INFO &lt;device-id&gt; &lt;audio-chan&gt;</t>
1105     </list>
1106     </t>
1107 schoenebeck 571 <t>Where &lt;device-id&gt; is the numerical ID of the audio output device as given by the
1108     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
1109     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
1110     command and &lt;audio-chan&gt; the audio channel number.</t>
1111 schoenebeck 151 <t>Possible Answers:</t>
1112     <t>
1113     <list>
1114     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
1115     Each answer line begins with the information category name
1116     followed by a colon and then a space character &lt;SP&gt; and finally
1117     the info character string to that info category. At the moment
1118     the following information categories are defined:</t>
1119    
1120     <t>
1121     <list>
1122     <t>NAME -
1123     <list>
1124     <t>arbitrary character string naming the channel, which
1125     doesn't have to be unique (always returned by all audio channels)</t>
1126     </list>
1127     </t>
1128     <t>IS_MIX_CHANNEL -
1129     <list>
1130     <t>either true or false, a mix-channel is not a real,
1131     independent audio channel, but a virtual channel which
1132     is mixed to another real channel, this mechanism is
1133     needed for sampler engines which need more audio
1134     channels than the used audio system might be able to offer
1135     (always returned by all audio channels)</t>
1136     </list>
1137     </t>
1138     <t>MIX_CHANNEL_DESTINATION -
1139     <list>
1140 schoenebeck 494 <t>numerical ID (positive integer including 0)
1141     which reflects the real audio channel (of the same audio
1142 schoenebeck 151 output device) this mix channel refers to, means where
1143     the audio signal actually will be routed / added to
1144     (only returned in case the audio channel is mix channel)</t>
1145     </list>
1146     </t>
1147     </list>
1148     </t>
1149     </list>
1150     </t>
1151    
1152     <t>The mentioned fields above don't have to be in particular
1153     order. The fields above are only those fields which are
1154     generally returned for the described cases by all audio
1155     channels regardless of the audio driver. Every audio channel
1156     might have its own, additional driver and channel specific
1157     parameters.</t>
1158    
1159     <t>Examples:</t>
1160    
1161     <t>
1162     <list>
1163     <t>C: "GET AUDIO_OUTPUT_CHANNEL INFO 0 0"</t>
1164     <t>S: "NAME: studio monitor left"</t>
1165     <t>&nbsp;&nbsp;&nbsp;"IS_MIX_CHANNEL: false"</t>
1166     <t>&nbsp;&nbsp;&nbsp;"."</t>
1167     </list>
1168     </t>
1169    
1170     <t>
1171     <list>
1172     <t>C: "GET AUDIO_OUTPUT_CHANNEL INFO 0 1"</t>
1173     <t>S: "NAME: studio monitor right"</t>
1174     <t>&nbsp;&nbsp;&nbsp;"IS_MIX_CHANNEL: false"</t>
1175     <t>&nbsp;&nbsp;&nbsp;"."</t>
1176     </list>
1177     </t>
1178    
1179     <t>
1180     <list>
1181     <t>C: "GET AUDIO_OUTPUT_CHANNEL INFO 0 2"</t>
1182     <t>S: "NAME: studio monitor left"</t>
1183     <t>&nbsp;&nbsp;&nbsp;"IS_MIX_CHANNEL: true"</t>
1184     <t>&nbsp;&nbsp;&nbsp;"MIX_CHANNEL_DESTINATION: 1"</t>
1185     <t>&nbsp;&nbsp;&nbsp;"."</t>
1186     </list>
1187     </t>
1188    
1189     <t>
1190     <list>
1191     <t>C: "GET AUDIO_OUTPUT_CHANNEL INFO 1 0"</t>
1192     <t>S: "NAME: 'ardour (left)'"</t>
1193     <t>&nbsp;&nbsp;&nbsp;"IS_MIX_CHANNEL: false"</t>
1194 schoenebeck 222 <t>&nbsp;&nbsp;&nbsp;"JACK_BINDINGS: 'ardour:0'"</t>
1195 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
1196     </list>
1197     </t>
1198     </section>
1199    
1200 schoenebeck 534 <section title="Getting information about specific audio channel parameter" anchor="GET AUDIO_OUTPUT_CHANNEL_PARAMETER INFO">
1201 schoenebeck 151 <t>Use the following command to get detailed information about specific audio channel parameter:</t>
1202    
1203     <t>
1204     <list>
1205     <t>GET AUDIO_OUTPUT_CHANNEL_PARAMETER INFO &lt;dev-id&gt; &lt;chan&gt; &lt;param&gt;</t>
1206     </list>
1207     </t>
1208    
1209 schoenebeck 571 <t>Where &lt;dev-id&gt; is the numerical ID of the audio output device as returned by the
1210     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
1211     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
1212 schoenebeck 534 command, &lt;chan&gt; the audio channel number
1213 schoenebeck 151 and &lt;param&gt; a specific channel parameter name for which information should
1214 schoenebeck 534 be obtained (as returned by the <xref target="GET AUDIO_OUTPUT_CHANNEL INFO">
1215     "GET AUDIO_OUTPUT_CHANNEL INFO"</xref> command).</t>
1216 schoenebeck 151 <t>Possible Answers:</t>
1217    
1218     <t>
1219     <list>
1220     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
1221     Each answer line begins with the information category name
1222     followed by a colon and then a space character &lt;SP&gt; and finally
1223     the info character string to that info category. There are
1224     information which is always returned, independently of the
1225     given channel parameter and there is optional information
1226     which is only shown dependently to the given audio channel. At
1227     the moment the following information categories are defined:</t>
1228     <t>
1229     <list>
1230     <t>TYPE -
1231     <list>
1232     <t>either "BOOL" for boolean value(s) or "INT" for integer
1233     value(s) or "FLOAT" for dotted number(s) or "STRING" for
1234     character string(s)
1235     (always returned)</t>
1236     </list>
1237     </t>
1238     <t>DESCRIPTION -
1239     <list>
1240     <t>arbitrary text describing the purpose of the parameter (always returned)</t>
1241     </list>
1242     </t>
1243     <t>FIX -
1244     <list>
1245     <t>either true or false, if true then this parameter is
1246     read only, thus cannot be altered
1247     (always returned)</t>
1248     </list>
1249     </t>
1250     <t>MULTIPLICITY -
1251     <list>
1252     <t>either true or false, defines if this parameter allows
1253     only one value or a list of values, where true means
1254     multiple values and false only a single value allowed
1255     (always returned)</t>
1256     </list>
1257     </t>
1258     <t>RANGE_MIN -
1259     <list>
1260     <t>defines lower limit of the allowed value range for this
1261     parameter, can be an integer value as well as a dotted
1262     number, usually used in conjunction with 'RANGE_MAX',
1263     but may also appear without
1264     (optionally returned, dependent to driver and channel
1265     parameter)</t>
1266     </list>
1267     </t>
1268     <t>RANGE_MAX -
1269     <list>
1270     <t>defines upper limit of the allowed value range for this
1271     parameter, can be an integer value as well as a dotted
1272     number, usually used in conjunction with 'RANGE_MIN',
1273     but may also appear without
1274     (optionally returned, dependent to driver and channel
1275     parameter)</t>
1276     </list>
1277     </t>
1278 schoenebeck 494 <t>POSSIBILITIES -
1279 schoenebeck 151 <list>
1280     <t>comma separated list of possible values for this
1281     parameter, character strings are encapsulated into
1282     apostrophes
1283     (optionally returned, dependent to driver and channel
1284     parameter)</t>
1285     </list>
1286     </t>
1287     </list>
1288     </t>
1289     <t>The mentioned fields above don't have to be in particular order.</t>
1290     </list>
1291     </t>
1292     <t>Example:</t>
1293     <t>
1294     <list>
1295 schoenebeck 222 <t>C: "GET AUDIO_OUTPUT_CHANNEL_PARAMETER INFO 1 0 JACK_BINDINGS"</t>
1296     <t>S: "DESCRIPTION: bindings to other JACK clients"</t>
1297 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"TYPE: STRING"</t>
1298     <t>&nbsp;&nbsp;&nbsp;"FIX: false"</t>
1299     <t>&nbsp;&nbsp;&nbsp;"MULTIPLICITY: true"</t>
1300 schoenebeck 494 <t>&nbsp;&nbsp;&nbsp;"POSSIBILITIES: 'PCM:0','PCM:1','ardour:0','ardour:1'"</t>
1301 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
1302     </list>
1303     </t>
1304     </section>
1305    
1306 schoenebeck 534 <section title="Changing settings of audio output channels" anchor="SET AUDIO_OUTPUT_CHANNEL_PARAMETER">
1307 schoenebeck 151 <t>Use the following command to alter a specific setting of an audio output channel:</t>
1308     <t>
1309     <list>
1310     <t>SET AUDIO_OUTPUT_CHANNEL_PARAMETER &lt;dev-id&gt; &lt;chn&gt; &lt;key&gt;=&lt;value&gt;</t>
1311     </list>
1312     </t>
1313 schoenebeck 571 <t>Where &lt;dev-id&gt; should be replaced by the numerical ID of the audio output device as returned by the
1314     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
1315     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
1316     command, &lt;chn&gt; by the audio channel number, &lt;key&gt; by the name of the
1317 schoenebeck 151 parameter to change and &lt;value&gt; by the new value for this parameter.</t>
1318     <t>Possible Answers:</t>
1319     <t>
1320     <list>
1321     <t>"OK" -
1322     <list>
1323     <t>in case setting was successfully changed</t>
1324     </list>
1325     </t>
1326     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
1327     <list>
1328     <t>in case setting was changed successfully, but there are
1329     noteworthy issue(s) related, providing an appropriate
1330     warning code and warning message</t>
1331     </list>
1332     </t>
1333     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
1334     <list>
1335     <t>in case it failed, providing an appropriate error code and
1336     error message</t>
1337     </list>
1338     </t>
1339     </list>
1340     </t>
1341     <t>Example:</t>
1342     <t>
1343     <list>
1344 schoenebeck 222 <t>C: "SET AUDIO_OUTPUT_CHANNEL PARAMETER 0 0 JACK_BINDINGS='PCM:0'"</t>
1345 schoenebeck 151 <t>S: "OK"</t>
1346     </list>
1347     </t>
1348     <t>
1349     <list>
1350     <t>C: "SET AUDIO_OUTPUT_CHANNEL PARAMETER 0 0 NAME='monitor left'"</t>
1351     <t>S: "OK"</t>
1352     </list>
1353     </t>
1354     </section>
1355     </section>
1356    
1357     <section title="Configuring MIDI input drivers">
1358     <t>Instances of drivers in LinuxSampler are called devices. You can use
1359     multiple MIDI devices simultaneously, e.g. to use MIDI over ethernet as
1360 schoenebeck 222 MIDI input on one sampler channel and ALSA as MIDI input on another sampler
1361 schoenebeck 151 channel. For particular MIDI input systems it's also possible to create
1362     several devices of the same MIDI input type. This chapter describes all
1363     commands to configure LinuxSampler's MIDI input devices and their parameters.</t>
1364    
1365     <t>Instead of defining commands and parameters for each driver individually,
1366     all possible parameters, their meanings and possible values have to be obtained
1367     at runtime. This makes the protocol a bit abstract, but has the advantage, that
1368     front-ends can be written independently of what drivers are currently implemented
1369     and what parameters these drivers are actually offering. This means front-ends can
1370     even handle drivers which are implemented somewhere in future without modifying
1371     the front-end at all.</t>
1372    
1373     <t>Commands for configuring MIDI input devices are pretty much the same as the
1374     commands for configuring audio output drivers, already described in the last
1375     chapter.</t>
1376    
1377     <t>Note: examples in this chapter showing particular parameters of drivers are
1378     not meant as specification of the drivers' parameters. Driver implementations in
1379     LinuxSampler might have complete different parameter names and meanings than shown
1380     in these examples or might change in future, so these examples are only meant for
1381     showing how to retrieve what parameters drivers are offering, how to retrieve their
1382     possible values, etc.</t>
1383    
1384 schoenebeck 534 <section title="Getting amount of available MIDI input drivers" anchor="GET AVAILABLE_MIDI_INPUT_DRIVERS">
1385     <t>Use the following command to get the number of
1386     MIDI input drivers currently available for the
1387     LinuxSampler instance:</t>
1388     <t>
1389     <list>
1390     <t>GET AVAILABLE_MIDI_INPUT_DRIVERS</t>
1391     </list>
1392     </t>
1393     <t>Possible Answers:</t>
1394     <t>
1395     <list>
1396     <t>LinuxSampler will answer by sending the
1397     number of available MIDI input drivers.</t>
1398     </list>
1399     </t>
1400     <t>Example:</t>
1401     <t>
1402     <list>
1403     <t>C: "GET AVAILABLE_MIDI_INPUT_DRIVERS"</t>
1404     <t>S: "2"</t>
1405     </list>
1406     </t>
1407     </section>
1408    
1409     <section title="Getting all available MIDI input drivers" anchor="LIST AVAILABLE_MIDI_INPUT_DRIVERS">
1410 schoenebeck 151 <t>Use the following command to list all MIDI input drivers currently available
1411     for the LinuxSampler instance:</t>
1412     <t>
1413     <list>
1414 schoenebeck 534 <t>LIST AVAILABLE_MIDI_INPUT_DRIVERS</t>
1415 schoenebeck 151 </list>
1416     </t>
1417     <t>Possible Answers:</t>
1418     <t>
1419     <list>
1420     <t>LinuxSampler will answer by sending comma separated character
1421     strings, each symbolizing a MIDI input driver.</t>
1422     </list>
1423     </t>
1424     <t>Example:</t>
1425     <t>
1426     <list>
1427 schoenebeck 534 <t>C: "LIST AVAILABLE_MIDI_INPUT_DRIVERS"</t>
1428 schoenebeck 222 <t>S: "ALSA,JACK"</t>
1429 schoenebeck 151 </list>
1430     </t>
1431     </section>
1432    
1433 schoenebeck 534 <section title="Getting information about a specific MIDI input driver" anchor="GET MIDI_INPUT_DRIVER INFO">
1434 schoenebeck 151 <t>Use the following command to get detailed information about a specific MIDI input driver:</t>
1435     <t>
1436     <list>
1437     <t>GET MIDI_INPUT_DRIVER INFO &lt;midi-input-driver&gt;</t>
1438     </list>
1439     </t>
1440 schoenebeck 571 <t>Where &lt;midi-input-driver&gt; is the name of the MIDI input driver as returned
1441     by the <xref target="LIST AVAILABLE_MIDI_INPUT_DRIVERS">
1442     "LIST AVAILABLE_MIDI_INPUT_DRIVERS"</xref> command.</t>
1443 schoenebeck 151 <t>Possible Answers:</t>
1444     <t>
1445     <list>
1446     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
1447     Each answer line begins with the information category name
1448     followed by a colon and then a space character &lt;SP&gt; and finally
1449     the info character string to that info category. At the moment
1450     the following information categories are defined:</t>
1451    
1452     <t>
1453     <list>
1454     <t>DESCRIPTION -
1455     <list>
1456     <t>arbitrary description text about the MIDI input driver</t>
1457     </list>
1458     </t>
1459     <t>VERSION -
1460     <list>
1461     <t>arbitrary character string regarding the driver's version</t>
1462     </list>
1463     </t>
1464     <t>PARAMETERS -
1465     <list>
1466     <t>comma separated list of all parameters available for the given MIDI input driver</t>
1467     </list>
1468     </t>
1469     </list>
1470     </t>
1471    
1472     <t>The mentioned fields above don't have to be in particular order.</t>
1473     </list>
1474     </t>
1475    
1476     <t>Example:</t>
1477    
1478     <t>
1479     <list>
1480 schoenebeck 222 <t>C: "GET MIDI_INPUT_DRIVER INFO ALSA"</t>
1481 schoenebeck 151 <t>S: "DESCRIPTION: Advanced Linux Sound Architecture"</t>
1482     <t>&nbsp;&nbsp;&nbsp;"VERSION: 1.0"</t>
1483 schoenebeck 222 <t>&nbsp;&nbsp;&nbsp;"PARAMETERS: DRIVER,ACTIVE"</t>
1484 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
1485     </list>
1486     </t>
1487     </section>
1488    
1489 schoenebeck 534 <section title="Getting information about specific MIDI input driver parameter" anchor="GET MIDI_INPUT_DRIVER_PARAMETER INFO">
1490 schoenebeck 151 <t>Use the following command to get detailed information about a specific parameter of a specific MIDI input driver:</t>
1491     <t>
1492     <list>
1493     <t>GET MIDI_INPUT_DRIVER_PARAMETER INFO &lt;midit&gt; &lt;param&gt; [&lt;deplist&gt;]</t>
1494     </list>
1495     </t>
1496    
1497 schoenebeck 561 <t>Where &lt;midit&gt; is the name of the MIDI input driver as returned
1498 schoenebeck 534 by the <xref target="LIST AVAILABLE_MIDI_INPUT_DRIVERS">
1499     "LIST AVAILABLE_MIDI_INPUT_DRIVERS"</xref> command, &lt;param&gt; a specific
1500 schoenebeck 151 parameter name for which information should be obtained (as returned by the
1501 schoenebeck 534 <xref target="GET MIDI_INPUT_DRIVER INFO">
1502     "GET MIDI_INPUT_DRIVER INFO"</xref> command) and &lt;deplist&gt; is an optional list
1503 schoenebeck 151 of parameters on which the sought parameter &lt;param&gt; depends on,
1504     &lt;deplist&gt; is a key-value pair list in form of "key1=val1 key2=val2 ...",
1505     where character string values are encapsulated into apostrophes ('). Arguments
1506     given with &lt;deplist&gt; which are not dependency parameters of &lt;param&gt;
1507     will be ignored, means the front-end application can simply put all parameters
1508     in &lt;deplist&gt; with the values selected by the user.</t>
1509    
1510     <t>Possible Answers:</t>
1511    
1512     <t>LinuxSampler will answer by sending a &lt;CRLF> separated list.
1513     Each answer line begins with the information category name
1514     followed by a colon and then a space character &lt;SP> and finally
1515     the info character string to that info category. There is
1516     information which is always returned, independent of the
1517     given driver parameter and there is optional information
1518     which is only shown dependent to given driver parameter. At
1519     the moment the following information categories are defined:</t>
1520    
1521     <t>
1522     <list>
1523     <t>TYPE -
1524     <list>
1525     <t>either "BOOL" for boolean value(s) or "INT" for integer
1526     value(s) or "FLOAT" for dotted number(s) or "STRING" for
1527     character string(s)
1528     (always returned, no matter which driver parameter)</t>
1529     </list>
1530     </t>
1531    
1532     <t>DESCRIPTION -
1533     <list>
1534     <t>arbitrary text describing the purpose of the parameter
1535     (always returned, no matter which driver parameter)</t>
1536     </list>
1537     </t>
1538    
1539     <t>MANDATORY -
1540     <list>
1541     <t>either true or false, defines if this parameter must be
1542     given when the device is to be created with the
1543 schoenebeck 534 <xref target="CREATE MIDI_INPUT_DEVICE">
1544     'CREATE MIDI_INPUT_DEVICE'</xref> command
1545 schoenebeck 151 (always returned, no matter which driver parameter)</t>
1546     </list>
1547     </t>
1548    
1549     <t>FIX -
1550     <list>
1551     <t>either true or false, if false then this parameter can
1552     be changed at any time, once the device is created by
1553 schoenebeck 534 the <xref target="CREATE MIDI_INPUT_DEVICE">
1554     'CREATE MIDI_INPUT_DEVICE'</xref> command
1555 schoenebeck 151 (always returned, no matter which driver parameter)</t>
1556     </list>
1557     </t>
1558    
1559     <t>MULTIPLICITY -
1560     <list>
1561     <t>either true or false, defines if this parameter allows
1562     only one value or a list of values, where true means
1563     multiple values and false only a single value allowed
1564     (always returned, no matter which driver parameter)</t>
1565     </list>
1566     </t>
1567    
1568     <t>DEPENDS -
1569     <list>
1570 schoenebeck 561 <t>comma separated list of parameters this parameter depends
1571 schoenebeck 151 on, means the values for fields 'DEFAULT', 'RANGE_MIN',
1572     'RANGE_MAX' and 'POSSIBILITIES' might depend on these
1573     listed parameters, for example assuming that an audio
1574 schoenebeck 222 driver (like the ALSA driver) offers parameters 'card'
1575 schoenebeck 151 and 'samplerate' then parameter 'samplerate' would
1576     depend on 'card' because the possible values for
1577     'samplerate' depends on the sound card which can be
1578     chosen by the 'card' parameter
1579     (optionally returned, dependent to driver parameter)</t>
1580     </list>
1581     </t>
1582    
1583     <t>DEFAULT -
1584     <list>
1585     <t>reflects the default value for this parameter which is
1586     used when the device is created and not explicitly
1587 schoenebeck 534 given with the <xref target="CREATE MIDI_INPUT_DEVICE">
1588     'CREATE MIDI_INPUT_DEVICE'</xref> command,
1589 schoenebeck 151 in case of MULTIPLCITY=true, this is a comma separated
1590     list, that's why character strings are encapsulated into
1591     apostrophes (')
1592     (optionally returned, dependent to driver parameter)</t>
1593     </list>
1594     </t>
1595    
1596     <t>RANGE_MIN -
1597     <list>
1598     <t>defines lower limit of the allowed value range for this
1599     parameter, can be an integer value as well as a dotted
1600     number, this parameter is often used in conjunction
1601     with RANGE_MAX, but may also appear without
1602     (optionally returned, dependent to driver parameter)</t>
1603     </list>
1604     </t>
1605    
1606     <t>RANGE_MAX -
1607     <list>
1608     <t>defines upper limit of the allowed value range for this
1609     parameter, can be an integer value as well as a dotted
1610     number, this parameter is often used in conjunction with
1611     RANGE_MIN, but may also appear without
1612     (optionally returned, dependent to driver parameter)</t>
1613     </list>
1614     </t>
1615    
1616 schoenebeck 494 <t>POSSIBILITIES -
1617 schoenebeck 151 <list>
1618     <t>comma separated list of possible values for this
1619     parameter, character strings are encapsulated into
1620     apostrophes
1621     (optionally returned, dependent to driver parameter)</t>
1622     </list>
1623     </t>
1624     </list>
1625     </t>
1626    
1627     <t>The mentioned fields above don't have to be in particular order.</t>
1628    
1629     <t>Example:</t>
1630     <t>
1631     <list>
1632 schoenebeck 222 <t>C: "GET MIDI_INPUT_DRIVER_PARAMETER INFO ALSA ACTIVE"</t>
1633 schoenebeck 151 <t>S: "DESCRIPTION: Whether device is enabled"</t>
1634     <t>&nbsp;&nbsp;&nbsp;"TYPE: BOOL"</t>
1635     <t>&nbsp;&nbsp;&nbsp;"MANDATORY: false"</t>
1636     <t>&nbsp;&nbsp;&nbsp;"FIX: false"</t>
1637     <t>&nbsp;&nbsp;&nbsp;"MULTIPLICITY: false"</t>
1638     <t>&nbsp;&nbsp;&nbsp;"DEFAULT: true"</t>
1639     <t>&nbsp;&nbsp;&nbsp;"."</t>
1640     </list>
1641     </t>
1642     </section>
1643    
1644 schoenebeck 534 <section title="Creating a MIDI input device" anchor="CREATE MIDI_INPUT_DEVICE">
1645 schoenebeck 151 <t>Use the following command to create a new MIDI input device for the desired MIDI input system:</t>
1646     <t>
1647     <list>
1648     <t>CREATE MIDI_INPUT_DEVICE &lt;midi-input-driver&gt; [&lt;param-list&gt;]</t>
1649     </list>
1650     </t>
1651    
1652 schoenebeck 571 <t>Where &lt;midi-input-driver&gt; should be replaced by the desired MIDI input system as returned
1653     by the <xref target="LIST AVAILABLE_MIDI_INPUT_DRIVERS">
1654     "LIST AVAILABLE_MIDI_INPUT_DRIVERS"</xref> command and &lt;param-list&gt; by an
1655 schoenebeck 151 optional list of driver specific parameters in form of "key1=val1 key2=val2 ...", where
1656     character string values should be encapsulated into apostrophes (').
1657     Note that there might be drivers which require parameter(s) to be
1658     given with this command. Use the previously described commands in
1659     this chapter to get that information.</t>
1660    
1661     <t>Possible Answers:</t>
1662     <t>
1663     <list>
1664     <t>"OK[&lt;device-id&gt;]" -
1665     <list>
1666     <t>in case the device was successfully created, where
1667     &lt;device-id&gt; is the numerical ID of the new device</t>
1668     </list>
1669     </t>
1670     <t>"WRN[&lt;device-id&gt;]:&lt;warning-code&gt;:&lt;warning-message&gt;" -
1671     <list>
1672     <t>in case the driver was loaded successfully, where
1673     &lt;device-id&gt; is the numerical ID of the new device, but
1674     there are noteworthy issue(s) related, providing an
1675     appropriate warning code and warning message</t>
1676     </list>
1677     </t>
1678     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
1679     <list>
1680     <t>in case it failed, providing an appropriate error code and error message</t>
1681     </list>
1682     </t>
1683     </list>
1684     </t>
1685     <t>Example:</t>
1686     <t>
1687     <list>
1688 schoenebeck 222 <t>C: "CREATE MIDI_INPUT_DEVICE ALSA"</t>
1689 schoenebeck 151 <t>S: "OK[0]"</t>
1690     </list>
1691     </t>
1692     </section>
1693    
1694 schoenebeck 534 <section title="Destroying a MIDI input device" anchor="DESTROY MIDI_INPUT_DEVICE">
1695 schoenebeck 151 <t>Use the following command to destroy a created MIDI input device:</t>
1696     <t>
1697     <list>
1698     <t>DESTROY MIDI_INPUT_DEVICE &lt;device-id&gt;</t>
1699     </list>
1700     </t>
1701 schoenebeck 571 <t>Where &lt;device-id&gt; should be replaced by the device's numerical ID as returned by the
1702     <xref target="CREATE MIDI_INPUT_DEVICE">"CREATE MIDI_INPUT_DEVICE"</xref>
1703     or <xref target="LIST MIDI_INPUT_DEVICES">"LIST MIDI_INPUT_DEVICES"</xref>
1704     command.</t>
1705 schoenebeck 151 <t>Possible Answers:</t>
1706     <t>
1707     <list>
1708     <t>"OK" -
1709     <list>
1710     <t>in case the device was successfully destroyed</t>
1711     </list>
1712     </t>
1713     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
1714     <list>
1715     <t>in case the device was destroyed, but there are noteworthy
1716     issue(s) related, providing an appropriate warning code and
1717     warning message</t>
1718     </list>
1719     </t>
1720     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
1721     <list>
1722     <t>in case it failed, providing an appropriate error code and error message</t>
1723     </list>
1724     </t>
1725     </list>
1726     </t>
1727     <t>Example:</t>
1728     <t>
1729     <list>
1730     <t>C: "DESTROY MIDI_INPUT_DEVICE 0"</t>
1731     <t>S: "OK"</t>
1732     </list>
1733     </t>
1734     </section>
1735    
1736 schoenebeck 534 <section title="Getting all created MIDI input device count" anchor="GET MIDI_INPUT_DEVICES">
1737 schoenebeck 151 <t>Use the following command to count all created MIDI input devices:</t>
1738     <t>
1739     <list>
1740     <t>GET MIDI_INPUT_DEVICES</t>
1741     </list>
1742     </t>
1743     <t>Possible Answers:</t>
1744     <t>
1745     <list>
1746     <t>LinuxSampler will answer by sending the current number of all
1747     MIDI input devices.</t>
1748     </list>
1749     </t>
1750     <t>Example:</t>
1751     <t>
1752     <list>
1753     <t>C: "GET MIDI_INPUT_DEVICES"</t>
1754     <t>S: "3"</t>
1755     </list>
1756     </t>
1757     </section>
1758    
1759    
1760 schoenebeck 534 <section title="Getting all created MIDI input device list" anchor="LIST MIDI_INPUT_DEVICES">
1761 schoenebeck 151 <t>Use the following command to list all created MIDI input devices:</t>
1762     <t>
1763     <list>
1764     <t>LIST MIDI_INPUT_DEVICES</t>
1765     </list>
1766     </t>
1767     <t>Possible Answers:</t>
1768     <t>
1769     <list>
1770     <t>LinuxSampler will answer by sending a comma separated list
1771     with the numerical Ids of all created MIDI input devices.</t>
1772     </list>
1773     </t>
1774     <t>Examples:</t>
1775     <t>
1776     <list>
1777     <t>C: "LIST MIDI_INPUT_DEVICES"</t>
1778     <t>S: "0,1,2"</t>
1779     </list>
1780     </t>
1781     <t>
1782     <list>
1783     <t>C: "LIST MIDI_INPUT_DEVICES"</t>
1784     <t>S: "1,3"</t>
1785     </list>
1786     </t>
1787     </section>
1788    
1789 schoenebeck 534 <section title="Getting current settings of a MIDI input device" anchor="GET MIDI_INPUT_DEVICE INFO">
1790 schoenebeck 151 <t>Use the following command to get current settings of a specific, created MIDI input device:</t>
1791     <t>
1792     <list>
1793     <t>GET MIDI_INPUT_DEVICE INFO &lt;device-id&gt;</t>
1794     </list>
1795     </t>
1796 schoenebeck 571 <t>Where &lt;device-id&gt; is the numerical ID of the MIDI input device as returned by the
1797     <xref target="CREATE MIDI_INPUT_DEVICE">"CREATE MIDI_INPUT_DEVICE"</xref>
1798     or <xref target="LIST MIDI_INPUT_DEVICES">"LIST MIDI_INPUT_DEVICES"</xref>
1799     command.</t>
1800 schoenebeck 151 <t>Possible Answers:</t>
1801     <t>
1802     <list>
1803     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
1804     Each answer line begins with the information category name
1805     followed by a colon and then a space character &lt;SP&gt; and finally
1806     the info character string to that info category. As some
1807     parameters might allow multiple values, character strings are
1808     encapsulated into apostrophes ('). At the moment the following
1809     information categories are defined (independent of driver):</t>
1810    
1811     <t>
1812     <list>
1813     <t>DRIVER -
1814     <list>
1815     <t>identifier of the used MIDI input driver, as e.g.
1816 schoenebeck 534 returned by the <xref target="LIST AVAILABLE_MIDI_INPUT_DRIVERS">
1817     "LIST AVAILABLE_MIDI_INPUT_DRIVERS"</xref>
1818 schoenebeck 151 command</t>
1819     </list>
1820     </t>
1821     </list>
1822     <list>
1823     <t>ACTIVE -
1824     <list>
1825     <t>either true or false, if false then the MIDI device is
1826     inactive and doesn't listen to any incoming MIDI events
1827     and thus doesn't forward them to connected sampler
1828     channels</t>
1829     </list>
1830     </t>
1831     </list>
1832     </t>
1833     </list>
1834     </t>
1835    
1836     <t>The mentioned fields above don't have to be in particular
1837     order. The fields above are only those fields which are
1838     returned by all MIDI input devices. Every MIDI input driver
1839     might have its own, additional driver specific parameters (see
1840 schoenebeck 534 <xref target="GET MIDI_INPUT_DRIVER INFO">
1841     "GET MIDI_INPUT_DRIVER INFO"</xref> command) which are also returned
1842 schoenebeck 151 by this command.</t>
1843    
1844     <t>Example:</t>
1845     <t>
1846     <list>
1847     <t>C: "GET MIDI_INPUT_DEVICE INFO 0"</t>
1848 schoenebeck 222 <t>S: "DRIVER: ALSA"</t>
1849     <t>&nbsp;&nbsp;&nbsp;"ACTIVE: true"</t>
1850 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
1851     </list>
1852     </t>
1853     </section>
1854    
1855 schoenebeck 534 <section title="Changing settings of MIDI input devices" anchor="SET MIDI_INPUT_DEVICE_PARAMETER">
1856 schoenebeck 151 <t>Use the following command to alter a specific setting of a created MIDI input device:</t>
1857     <t>
1858     <list>
1859     <t>SET MIDI_INPUT_DEVICE_PARAMETER &lt;device-id&gt; &lt;key&gt;=&lt;value&gt;</t>
1860     </list>
1861     </t>
1862    
1863     <t>Where &lt;device-id&gt; should be replaced by the numerical ID of the
1864 schoenebeck 571 MIDI input device as returned by the
1865     <xref target="CREATE MIDI_INPUT_DEVICE">"CREATE MIDI_INPUT_DEVICE"</xref>
1866     or <xref target="LIST MIDI_INPUT_DEVICES">"LIST MIDI_INPUT_DEVICES"</xref>
1867     command, &lt;key&gt; by the name of the parameter to change and
1868 schoenebeck 151 &lt;value&gt; by the new value for this parameter.</t>
1869    
1870     <t>Possible Answers:</t>
1871     <t>
1872     <list>
1873     <t>"OK" -
1874     <list>
1875     <t>in case setting was successfully changed</t>
1876     </list>
1877     </t>
1878     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
1879     <list>
1880     <t>in case setting was changed successfully, but there are
1881     noteworthy issue(s) related, providing an appropriate
1882     warning code and warning message</t>
1883     </list>
1884     </t>
1885     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
1886     <list>
1887     <t>in case it failed, providing an appropriate error code and error message</t>
1888     </list>
1889     </t>
1890     </list>
1891     </t>
1892     <t>Example:</t>
1893     <t>
1894     <list>
1895 schoenebeck 494 <t>C: "SET MIDI_INPUT_DEVICE_PARAMETER 0 ACTIVE=false"</t>
1896 schoenebeck 151 <t>S: "OK"</t>
1897     </list>
1898     </t>
1899     </section>
1900    
1901 schoenebeck 534 <section title="Getting information about a MIDI port" anchor="GET MIDI_INPUT_PORT INFO">
1902 schoenebeck 151 <t>Use the following command to get information about a MIDI port:</t>
1903     <t>
1904     <list>
1905     <t>GET MIDI_INPUT_PORT INFO &lt;device-id&gt; &lt;midi-port&gt;</t>
1906     </list>
1907     </t>
1908 schoenebeck 571 <t>Where &lt;device-id&gt; is the numerical ID of the MIDI input device as returned by the
1909     <xref target="CREATE MIDI_INPUT_DEVICE">"CREATE MIDI_INPUT_DEVICE"</xref>
1910     or <xref target="LIST MIDI_INPUT_DEVICES">"LIST MIDI_INPUT_DEVICES"</xref>
1911     command and &lt;midi-port&gt; the MIDI input port number.</t>
1912 schoenebeck 151 <t>Possible Answers:</t>
1913     <t>
1914     <list>
1915     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
1916     Each answer line begins with the information category name
1917     followed by a colon and then a space character &lt;SP&gt; and finally
1918     the info character string to that info category. At the moment
1919     the following information categories are defined:</t>
1920    
1921     <t>NAME -
1922     <list>
1923     <t>arbitrary character string naming the port</t>
1924     </list>
1925     </t>
1926     </list>
1927     </t>
1928    
1929     <t>The field above is only the one which is returned by all MIDI
1930     ports regardless of the MIDI driver and port. Every MIDI port
1931     might have its own, additional driver and port specific
1932     parameters.</t>
1933    
1934     <t>Example:</t>
1935     <t>
1936     <list>
1937     <t>C: "GET MIDI_INPUT_PORT INFO 0 0"</t>
1938 schoenebeck 222 <t>S: "NAME: 'Masterkeyboard'"</t>
1939     <t>&nbsp;&nbsp;&nbsp;"ALSA_SEQ_BINDINGS: '64:0'"</t>
1940 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
1941     </list>
1942     </t>
1943     </section>
1944    
1945 schoenebeck 534 <section title="Getting information about specific MIDI port parameter" anchor="GET MIDI_INPUT_PORT_PARAMETER INFO">
1946 schoenebeck 151 <t>Use the following command to get detailed information about specific MIDI port parameter:</t>
1947     <t>
1948     <list>
1949     <t>GET MIDI_INPUT_PORT_PARAMETER INFO &lt;dev-id&gt; &lt;port&gt; &lt;param&gt;</t>
1950     </list>
1951     </t>
1952    
1953 schoenebeck 571 <t>Where &lt;dev-id&gt; is the numerical ID of the MIDI input device as returned by the
1954     <xref target="CREATE MIDI_INPUT_DEVICE">"CREATE MIDI_INPUT_DEVICE"</xref>
1955     or <xref target="LIST MIDI_INPUT_DEVICES">"LIST MIDI_INPUT_DEVICES"</xref>
1956     command, &lt;port&gt; the MIDI port number and
1957 schoenebeck 151 &lt;param&gt; a specific port parameter name for which information should be
1958 schoenebeck 534 obtained (as returned by the <xref target="GET MIDI_INPUT_PORT INFO">
1959     "GET MIDI_INPUT_PORT INFO"</xref> command).</t>
1960 schoenebeck 151
1961     <t>Possible Answers:</t>
1962     <t>
1963     <list>
1964     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
1965     Each answer line begins with the information category name
1966     followed by a colon and then a space character &lt;SP&gt; and finally
1967     the info character string to that info category. There is
1968     information which is always returned, independently of the
1969     given channel parameter and there is optional information
1970     which are only shown dependently to the given MIDI port. At the
1971     moment the following information categories are defined:</t>
1972    
1973     <t>TYPE -
1974     <list>
1975     <t>either "BOOL" for boolean value(s) or "INT" for integer
1976     value(s) or "FLOAT" for dotted number(s) or "STRING" for
1977     character string(s)
1978     (always returned)</t>
1979     </list>
1980     </t>
1981     <t>DESCRIPTION -
1982     <list>
1983     <t>arbitrary text describing the purpose of the parameter
1984     (always returned)</t>
1985     </list>
1986     </t>
1987     <t>FIX -
1988     <list>
1989     <t>either true or false, if true then this parameter is
1990     read only, thus cannot be altered
1991     (always returned)</t>
1992     </list>
1993     </t>
1994     <t>MULTIPLICITY -
1995     <list>
1996     <t>either true or false, defines if this parameter allows
1997     only one value or a list of values, where true means
1998     multiple values and false only a single value allowed
1999     (always returned)</t>
2000     </list>
2001     </t>
2002     <t>RANGE_MIN -
2003     <list>
2004     <t>defines lower limit of the allowed value range for this
2005     parameter, can be an integer value as well as a dotted
2006     number, this parameter is usually used in conjunction
2007     with 'RANGE_MAX' but may also appear without
2008     (optionally returned, dependent to driver and port
2009     parameter)</t>
2010     </list>
2011     </t>
2012     <t>RANGE_MAX -
2013     <list>
2014     <t>defines upper limit of the allowed value range for this
2015     parameter, can be an integer value as well as a dotted
2016     number, this parameter is usually used in conjunction
2017     with 'RANGE_MIN' but may also appear without
2018     (optionally returned, dependent to driver and port
2019     parameter)</t>
2020     </list>
2021     </t>
2022 schoenebeck 494 <t>POSSIBILITIES -
2023 schoenebeck 151 <list>
2024     <t>comma separated list of possible values for this
2025     parameter, character strings are encapsulated into
2026     apostrophes
2027     (optionally returned, dependent to device and port
2028     parameter)</t>
2029     </list>
2030     </t>
2031     </list>
2032     </t>
2033    
2034     <t>The mentioned fields above don't have to be in particular order.</t>
2035    
2036     <t>Example:</t>
2037     <t>
2038     <list>
2039 schoenebeck 222 <t>C: "GET MIDI_INPUT_PORT_PARAMETER INFO 0 0 ALSA_SEQ_BINDINGS"</t>
2040     <t>S: "DESCRIPTION: bindings to other ALSA sequencer clients"</t>
2041     <t>&nbsp;&nbsp;&nbsp;"TYPE: STRING"</t>
2042 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"FIX: false"</t>
2043     <t>&nbsp;&nbsp;&nbsp;"MULTIPLICITY: true"</t>
2044 schoenebeck 494 <t>&nbsp;&nbsp;&nbsp;"POSSIBILITIES: '64:0','68:0','68:1'"</t>
2045 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
2046     </list>
2047     </t>
2048     </section>
2049    
2050 schoenebeck 534 <section title="Changing settings of MIDI input ports" anchor="SET MIDI_INPUT_PORT_PARAMETER">
2051 schoenebeck 151 <t>Use the following command to alter a specific setting of a MIDI input port:</t>
2052     <t>
2053     <list>
2054 schoenebeck 221 <t>SET MIDI_INPUT_PORT_PARAMETER &lt;device-id&gt; &lt;port&gt; &lt;key&gt;=&lt;value&gt;</t>
2055 schoenebeck 151 </list>
2056     </t>
2057    
2058     <t>Where &lt;device-id&gt; should be replaced by the numerical ID of the
2059 schoenebeck 571 MIDI device as returned by the
2060     <xref target="CREATE MIDI_INPUT_DEVICE">"CREATE MIDI_INPUT_DEVICE"</xref>
2061     or <xref target="LIST MIDI_INPUT_DEVICES">"LIST MIDI_INPUT_DEVICES"</xref>
2062     command, &lt;port&gt; by the MIDI port number, &lt;key&gt; by the name of
2063 schoenebeck 151 the parameter to change and &lt;value&gt; by the new value for this
2064 iliev 1296 parameter (encapsulated into apostrophes) or NONE (not encapsulated into apostrophes)
2065     for specifying no value for parameters allowing a list of values.</t>
2066 schoenebeck 151
2067     <t>Possible Answers:</t>
2068     <t>
2069     <list>
2070     <t>"OK" -
2071     <list>
2072     <t>in case setting was successfully changed</t>
2073     </list>
2074     </t>
2075     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2076     <list>
2077     <t>in case setting was changed successfully, but there are
2078     noteworthy issue(s) related, providing an appropriate
2079     warning code and warning message</t>
2080     </list>
2081     </t>
2082     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2083     <list>
2084     <t>in case it failed, providing an appropriate error code and error message</t>
2085     </list>
2086     </t>
2087     </list>
2088     </t>
2089     <t>Example:</t>
2090     <t>
2091     <list>
2092 iliev 1296 <t>C: "SET MIDI_INPUT_PORT_PARAMETER 0 0 ALSA_SEQ_BINDINGS='20:0'"</t>
2093     <t>S: "OK"</t>
2094 schoenebeck 151 </list>
2095     </t>
2096 iliev 1296 <t>
2097     <list>
2098     <t>C: "SET MIDI_INPUT_PORT_PARAMETER 0 0 ALSA_SEQ_BINDINGS=NONE"</t>
2099     <t>S: "OK"</t>
2100     </list>
2101     </t>
2102 schoenebeck 151 </section>
2103     </section>
2104    
2105     <section title="Configuring sampler channels">
2106 schoenebeck 571 <t>The following commands describe how to add and remove sampler channels, associate a
2107     sampler channel with a sampler engine, load instruments and connect sampler channels to
2108     MIDI and audio devices.</t>
2109 schoenebeck 151
2110 schoenebeck 534 <section title="Loading an instrument" anchor="LOAD INSTRUMENT">
2111 schoenebeck 151 <t>An instrument file can be loaded and assigned to a sampler channel by one of the following commands:</t>
2112     <t>
2113     <list>
2114     <t>LOAD INSTRUMENT [NON_MODAL] '&lt;filename&gt;' &lt;instr-index&gt; &lt;sampler-channel&gt;</t>
2115     </list>
2116     </t>
2117    
2118     <t>Where &lt;filename&gt; is the name of the instrument file on the
2119     LinuxSampler instance's host system, &lt;instr-index&gt; the index of the
2120     instrument in the instrument file and &lt;sampler-channel> is the
2121     number of the sampler channel the instrument should be assigned to.
2122     Each sampler channel can only have one instrument.</t>
2123    
2124 schoenebeck 1250 <t>Notice: since LSCP 1.2 the &lt;filename&gt; argument supports
2125 schoenebeck 1249 escape characters for special characters (see chapter
2126     "<xref target="character_set">Character Set and Escape Sequences</xref>"
2127     for details) and accordingly backslash characters in the filename
2128     MUST now be escaped as well!</t>
2129    
2130 schoenebeck 151 <t>The difference between regular and NON_MODAL versions of the command
2131     is that the regular command returns OK only after the instrument has been
2132     fully loaded and the channel is ready to be used while NON_MODAL version
2133     returns immediately and a background process is launched to load the instrument
2134 schoenebeck 534 on the channel. The <xref target="GET CHANNEL INFO">GET CHANNEL INFO</xref>
2135     command can be used to obtain loading
2136 schoenebeck 151 progress from INSTRUMENT_STATUS field. LOAD command will perform sanity checks
2137     such as making sure that the file could be read and it is of a proper format
2138     and SHOULD return ERR and SHOULD not launch the background process should any
2139     errors be detected at that point.</t>
2140    
2141     <t>Possible Answers:</t>
2142     <t>
2143     <list>
2144     <t>"OK" -
2145     <list>
2146     <t>in case the instrument was successfully loaded</t>
2147     </list>
2148     </t>
2149     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2150     <list>
2151     <t>in case the instrument was loaded successfully, but there
2152     are noteworthy issue(s) related (e.g. Engine doesn't support
2153     one or more patch parameters provided by the loaded
2154     instrument file), providing an appropriate warning code and
2155     warning message</t>
2156     </list>
2157     </t>
2158     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2159     <list>
2160     <t>in case it failed, providing an appropriate error code and error message</t>
2161     </list>
2162     </t>
2163     </list>
2164     </t>
2165 schoenebeck 1554 <t>Example (Unix):</t>
2166 schoenebeck 151 <t>
2167     <list>
2168 schoenebeck 1554 <t>C: LOAD INSTRUMENT '/home/joe/gigs/cello.gig' 0 0</t>
2169     <t>S: OK</t>
2170 schoenebeck 151 </list>
2171     </t>
2172 schoenebeck 1554 <t>Example (Windows):</t>
2173     <t>
2174     <list>
2175     <t>C: LOAD INSTRUMENT 'D:/MySounds/cello.gig' 0 0</t>
2176     <t>S: OK</t>
2177     </list>
2178     </t>
2179 schoenebeck 151 </section>
2180    
2181 schoenebeck 534 <section title="Loading a sampler engine" anchor="LOAD ENGINE">
2182 schoenebeck 571 <t>A sampler engine type can be associated to a specific sampler
2183 schoenebeck 151 channel by the following command:</t>
2184     <t>
2185     <list>
2186     <t>LOAD ENGINE &lt;engine-name&gt; &lt;sampler-channel&gt;</t>
2187     </list>
2188     </t>
2189    
2190 schoenebeck 494 <t>Where &lt;engine-name&gt; is an engine name as obtained by the
2191 schoenebeck 534 <xref target="LIST AVAILABLE_ENGINES">
2192 schoenebeck 571 "LIST AVAILABLE_ENGINES"</xref> command and &lt;sampler-channel&gt;
2193     the sampler channel as returned by the
2194     <xref target="ADD CHANNEL">"ADD CHANNEL"</xref> or
2195     <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command where
2196     the engine type should be assigned to. This command should be issued
2197     after adding a new sampler channel and before any other control
2198     commands on the new sampler channel. It can also be used to change
2199     the engine type of a sampler channel. This command has (currently) no
2200     way to define or force if a new engine instance should be created and
2201     assigned to the given sampler channel or if an already existing
2202     instance of that engine type, shared with other sampler channels,
2203     should be used.</t>
2204 schoenebeck 151
2205     <t>Possible Answers:</t>
2206     <t>
2207     <list>
2208     <t>"OK" -
2209     <list>
2210     <t>in case the engine was successfully deployed</t>
2211     </list>
2212     </t>
2213     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2214     <list>
2215     <t>in case the engine was deployed successfully, but there
2216     are noteworthy issue(s) related, providing an appropriate
2217     warning code and warning message</t>
2218     </list>
2219     </t>
2220     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2221     <list>
2222     <t>in case it failed, providing an appropriate error code and
2223     error message</t>
2224     </list>
2225     </t>
2226     </list>
2227     </t>
2228     <t>Example:</t>
2229     <t>
2230     <list>
2231     <t></t>
2232     </list>
2233     </t>
2234     </section>
2235    
2236 schoenebeck 534 <section title="Getting all created sampler channel count" anchor="GET CHANNELS">
2237 schoenebeck 151 <t>The number of sampler channels can change on runtime. To get the
2238     current amount of sampler channels, the front-end can send the
2239     following command:</t>
2240     <t>
2241     <list>
2242     <t>GET CHANNELS</t>
2243     </list>
2244     </t>
2245     <t>Possible Answers:</t>
2246     <t>
2247     <list>
2248     <t>LinuxSampler will answer by returning the current number of sampler channels.</t>
2249     </list>
2250     </t>
2251     <t>Example:</t>
2252     <t>
2253     <list>
2254     <t>C: "GET CHANNELS"</t>
2255     <t>S: "12"</t>
2256     </list>
2257     </t>
2258     </section>
2259    
2260 schoenebeck 534 <section title="Getting all created sampler channel list" anchor="LIST CHANNELS">
2261 schoenebeck 151 <t>The number of sampler channels can change on runtime. To get the
2262     current list of sampler channels, the front-end can send the
2263     following command:</t>
2264     <t>
2265     <list>
2266     <t>LIST CHANNELS</t>
2267     </list>
2268     </t>
2269     <t>Possible Answers:</t>
2270     <t>
2271     <list>
2272     <t>LinuxSampler will answer by returning a comma separated list
2273     with all sampler channels numerical IDs.</t>
2274     </list>
2275     </t>
2276     <t>Example:</t>
2277     <t>
2278     <list>
2279     <t>C: "LIST CHANNELS"</t>
2280     <t>S: "0,1,2,3,4,5,6,9,10,11,15,20"</t>
2281     </list>
2282     </t>
2283     </section>
2284    
2285 schoenebeck 534 <section title="Adding a new sampler channel" anchor="ADD CHANNEL">
2286 schoenebeck 151 <t>A new sampler channel can be added to the end of the sampler
2287     channel list by sending the following command:</t>
2288     <t>
2289     <list>
2290     <t>ADD CHANNEL</t>
2291     </list>
2292     </t>
2293     <t>This will increment the sampler channel count by one and the new
2294     sampler channel will be appended to the end of the sampler channel
2295     list. The front-end should send the respective, related commands
2296     right after to e.g. load an engine, load an instrument and setting
2297     input, output method and eventually other commands to initialize
2298     the new channel. The front-end should use the sampler channel
2299     returned by the answer of this command to perform the previously
2300     recommended commands, to avoid race conditions e.g. with other
2301     front-ends that might also have sent an "ADD CHANNEL" command.</t>
2302     <t>Possible Answers:</t>
2303     <t>
2304     <list>
2305     <t>"OK[&lt;sampler-channel&gt;]" -
2306     <list>
2307     <t>in case a new sampler channel could be added, where
2308     &lt;sampler-channel&gt; reflects the channel number of the new
2309 schoenebeck 561 created sampler channel which should be used to set up
2310     the sampler channel by sending subsequent initialization
2311 schoenebeck 151 commands</t>
2312     </list>
2313     </t>
2314     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2315     <list>
2316     <t>in case a new channel was added successfully, but there are
2317     noteworthy issue(s) related, providing an appropriate
2318     warning code and warning message</t>
2319     </list>
2320     </t>
2321     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2322     <list>
2323     <t>in case it failed, providing an appropriate error code and
2324     error message</t>
2325     </list>
2326     </t>
2327     </list>
2328     </t>
2329     <t>Example:</t>
2330     <t>
2331     <list>
2332     <t></t>
2333     </list>
2334     </t>
2335     </section>
2336    
2337 schoenebeck 534 <section title="Removing a sampler channel" anchor="REMOVE CHANNEL">
2338 schoenebeck 151 <t>A sampler channel can be removed by sending the following command:</t>
2339     <t>
2340     <list>
2341     <t>REMOVE CHANNEL &lt;sampler-channel&gt;</t>
2342     </list>
2343     </t>
2344    
2345 schoenebeck 561 <t>Where &lt;sampler-channel&gt; should be replaced by the
2346     number of the sampler channel as given by the
2347     <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2348     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref>
2349     command. The channel numbers of all subsequent sampler channels
2350     remain the same.</t>
2351 schoenebeck 151
2352     <t>Possible Answers:</t>
2353     <t>
2354     <list>
2355     <t>"OK" -
2356     <list>
2357     <t>in case the given sampler channel could be removed</t>
2358     </list>
2359     </t>
2360     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2361     <list>
2362     <t>in case the given channel was removed, but there are
2363     noteworthy issue(s) related, providing an appropriate
2364     warning code and warning message</t>
2365     </list>
2366     </t>
2367     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2368     <list>
2369     <t>in case it failed, providing an appropriate error code and
2370     error message</t>
2371     </list>
2372     </t>
2373     </list>
2374     </t>
2375     <t>Example:</t>
2376     <t>
2377     <list>
2378     <t></t>
2379     </list>
2380     </t>
2381     </section>
2382    
2383 schoenebeck 534 <section title="Getting amount of available engines" anchor="GET AVAILABLE_ENGINES">
2384     <t>The front-end can ask for the number of available engines by sending the following command:</t>
2385 schoenebeck 151 <t>
2386     <list>
2387     <t>GET AVAILABLE_ENGINES</t>
2388     </list>
2389     </t>
2390     <t>Possible Answers:</t>
2391     <t>
2392     <list>
2393 schoenebeck 534 <t>LinuxSampler will answer by sending the number of available engines.</t>
2394     </list>
2395     </t>
2396     <t>Example:</t>
2397     <t>
2398     <list>
2399     <t>C: "GET AVAILABLE_ENGINES"</t>
2400     <t>S: "4"</t>
2401     </list>
2402     </t>
2403     </section>
2404    
2405     <section title="Getting all available engines" anchor="LIST AVAILABLE_ENGINES">
2406     <t>The front-end can ask for a list of all available engines by sending the following command:</t>
2407     <t>
2408     <list>
2409     <t>LIST AVAILABLE_ENGINES</t>
2410     </list>
2411     </t>
2412     <t>Possible Answers:</t>
2413     <t>
2414     <list>
2415 schoenebeck 561 <t>LinuxSampler will answer by sending a comma separated list
2416     of the engines' names encapsulated into apostrophes (').
2417     Engine names can consist of lower and upper cases,
2418     digits and underlines ("_" character).</t>
2419 schoenebeck 151 </list>
2420     </t>
2421     <t>Example:</t>
2422     <t>
2423     <list>
2424 schoenebeck 534 <t>C: "LIST AVAILABLE_ENGINES"</t>
2425 schoenebeck 561 <t>S: "'GigEngine','AkaiEngine','DLSEngine','JoesCustomEngine'"</t>
2426 schoenebeck 151 </list>
2427     </t>
2428     </section>
2429    
2430 schoenebeck 534 <section title="Getting information about an engine" anchor="GET ENGINE INFO">
2431 schoenebeck 151 <t>The front-end can ask for information about a specific engine by
2432     sending the following command:</t>
2433     <t>
2434     <list>
2435     <t>GET ENGINE INFO &lt;engine-name&gt;</t>
2436     </list>
2437     </t>
2438 schoenebeck 494 <t>Where &lt;engine-name&gt; is an engine name as obtained by the
2439 schoenebeck 534 <xref target="LIST AVAILABLE_ENGINES">
2440     "LIST AVAILABLE_ENGINES"</xref> command.</t>
2441 schoenebeck 151 <t>Possible Answers:</t>
2442     <t>
2443     <list>
2444 schoenebeck 494 <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
2445 schoenebeck 151 Each answer line begins with the information category name
2446     followed by a colon and then a space character &lt;SP&gt; and finally
2447     the info character string to that info category. At the moment
2448     the following categories are defined:</t>
2449    
2450     <t>
2451     <list>
2452     <t>DESCRIPTION -
2453     <list>
2454 schoenebeck 1399 <t>arbitrary description text about the engine
2455     (note that the character string may contain
2456     <xref target="character_set">escape sequences</xref>)</t>
2457 schoenebeck 151 </list>
2458     </t>
2459     <t>VERSION -
2460     <list>
2461     <t>arbitrary character string regarding the engine's version</t>
2462     </list>
2463     </t>
2464     </list>
2465     </t>
2466     </list>
2467     </t>
2468    
2469     <t>The mentioned fields above don't have to be in particular order.</t>
2470    
2471     <t>Example:</t>
2472     <t>
2473     <list>
2474     <t>C: "GET ENGINE INFO JoesCustomEngine"</t>
2475     <t>S: "DESCRIPTION: this is Joe's custom sampler engine"</t>
2476     <t>&nbsp;&nbsp;&nbsp;"VERSION: testing-1.0"</t>
2477     <t>&nbsp;&nbsp;&nbsp;"."</t>
2478     </list>
2479     </t>
2480     </section>
2481    
2482 schoenebeck 534 <section title="Getting sampler channel information" anchor="GET CHANNEL INFO">
2483 schoenebeck 151 <t>The front-end can ask for the current settings of a sampler channel
2484     by sending the following command:</t>
2485     <t>
2486     <list>
2487     <t>GET CHANNEL INFO &lt;sampler-channel&gt;</t>
2488     </list>
2489     </t>
2490 schoenebeck 571 <t>Where &lt;sampler-channel&gt; is the sampler channel number the front-end is interested in
2491     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2492     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command.</t>
2493 schoenebeck 151 <t>Possible Answers:</t>
2494     <t>
2495     <list>
2496     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
2497     Each answer line begins with the settings category name
2498     followed by a colon and then a space character &lt;SP&gt; and finally
2499     the info character string to that setting category. At the
2500     moment the following categories are defined:</t>
2501    
2502     <t>
2503     <list>
2504     <t>ENGINE_NAME -
2505     <list>
2506 schoenebeck 571 <t>name of the engine that is associated with the sampler
2507     channel, "NONE" if there's no engine associated yet for
2508 schoenebeck 151 this sampler channel</t>
2509     </list>
2510     </t>
2511     <t>AUDIO_OUTPUT_DEVICE -
2512     <list>
2513     <t>numerical ID of the audio output device which is
2514     currently connected to this sampler channel to output
2515 schoenebeck 1804 the audio signal, "-1" if there's no device
2516 schoenebeck 151 connected to this sampler channel</t>
2517     </list>
2518     </t>
2519     <t>AUDIO_OUTPUT_CHANNELS -
2520     <list>
2521     <t>number of output channels the sampler channel offers
2522     (dependent to used sampler engine and loaded instrument)</t>
2523     </list>
2524     </t>
2525     <t>AUDIO_OUTPUT_ROUTING -
2526     <list>
2527     <t>comma separated list which reflects to which audio
2528     channel of the selected audio output device each
2529     sampler output channel is routed to, e.g. "0,3" would
2530     mean the engine's output channel 0 is routed to channel
2531     0 of the audio output device and the engine's output
2532     channel 1 is routed to the channel 3 of the audio
2533     output device</t>
2534     </list>
2535     </t>
2536     <t>INSTRUMENT_FILE -
2537     <list>
2538     <t>the file name of the loaded instrument, "NONE" if
2539     there's no instrument yet loaded for this sampler
2540 schoenebeck 1399 channel (note: since LSCP 1.2 this path may contain
2541     <xref target="character_set">escape sequences</xref>)</t>
2542 schoenebeck 151 </list>
2543     </t>
2544     <t>INSTRUMENT_NR -
2545     <list>
2546 schoenebeck 1804 <t>the instrument index number of the loaded instrument,
2547     "-1" if there's no instrument loaded for this sampler
2548     channel</t>
2549 schoenebeck 151 </list>
2550     </t>
2551 senkov 377 <t>INSTRUMENT_NAME -
2552     <list>
2553 schoenebeck 1399 <t>the instrument name of the loaded instrument
2554     (note: since LSCP 1.2 this character string may contain
2555     <xref target="character_set">escape sequences</xref>)</t>
2556 senkov 377 </list>
2557     </t>
2558 schoenebeck 151 <t>INSTRUMENT_STATUS -
2559     <list>
2560 schoenebeck 1804 <t>Integer values 0 to 100 indicating loading progress
2561     percentage for the instrument. Negative
2562     value indicates a loading exception (also returns "-1" in case no
2563     instrument was yet to be loaded on the sampler channel).
2564     Value of 100 indicates that the instrument is fully
2565 schoenebeck 151 loaded.</t>
2566     </list>
2567     </t>
2568     <t>MIDI_INPUT_DEVICE -
2569     <list>
2570     <t>numerical ID of the MIDI input device which is
2571     currently connected to this sampler channel to deliver
2572 schoenebeck 1804 MIDI input commands, "-1" if there's no device
2573 schoenebeck 151 connected to this sampler channel</t>
2574     </list>
2575     </t>
2576     <t>MIDI_INPUT_PORT -
2577     <list>
2578 schoenebeck 1804 <t>port number of the MIDI input device (in case a
2579     MIDI device was already assigned to the sampler
2580     channel)</t>
2581 schoenebeck 151 </list>
2582     </t>
2583     <t>MIDI_INPUT_CHANNEL -
2584     <list>
2585     <t>the MIDI input channel number this sampler channel
2586     should listen to or "ALL" to listen on all MIDI channels</t>
2587     </list>
2588     </t>
2589     <t>VOLUME -
2590     <list>
2591     <t>optionally dotted number for the channel volume factor
2592 schoenebeck 1026 (where a value &lt; 1.0 means attenuation and a value >
2593 schoenebeck 151 1.0 means amplification)</t>
2594     </list>
2595     </t>
2596 iliev 706 <t>MUTE -
2597     <list>
2598     <t>Determines whether the channel is muted, "true" if the
2599 schoenebeck 709 channel is muted, "false" if the channel is not muted, and
2600     "MUTED_BY_SOLO" if the channel is muted because of the
2601     presence of a solo channel and will be unmuted when
2602 iliev 706 there are no solo channels left</t>
2603     </list>
2604     </t>
2605     <t>SOLO -
2606     <list>
2607     <t>Determines whether this is a solo channel, "true" if
2608     the channel is a solo channel; "false" otherwise</t>
2609     </list>
2610     </t>
2611 schoenebeck 973 <t>MIDI_INSTRUMENT_MAP -
2612     <list>
2613     <t>Determines to which MIDI instrument map this sampler
2614     channel is assigned to. Read chapter
2615     <xref target="SET CHANNEL MIDI_INSTRUMENT_MAP">"SET CHANNEL MIDI_INSTRUMENT_MAP"</xref>
2616     for a list of possible values.</t>
2617     </list>
2618     </t>
2619 schoenebeck 151 </list>
2620     </t>
2621     </list>
2622     </t>
2623     <t>The mentioned fields above don't have to be in particular order.</t>
2624    
2625     <t>Example:</t>
2626     <t>
2627     <list>
2628     <t>C: "GET CHANNEL INFO 34"</t>
2629     <t>S: "ENGINE_NAME: GigEngine"</t>
2630     <t>&nbsp;&nbsp;&nbsp;"VOLUME: 1.0"</t>
2631     <t>&nbsp;&nbsp;&nbsp;"AUDIO_OUTPUT_DEVICE: 0"</t>
2632     <t>&nbsp;&nbsp;&nbsp;"AUDIO_OUTPUT_CHANNELS: 2"</t>
2633     <t>&nbsp;&nbsp;&nbsp;"AUDIO_OUTPUT_ROUTING: 0,1"</t>
2634     <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_FILE: /home/joe/FazioliPiano.gig"</t>
2635     <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_NR: 0"</t>
2636 senkov 377 <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_NAME: Fazioli Piano"</t>
2637 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_STATUS: 100"</t>
2638     <t>&nbsp;&nbsp;&nbsp;"MIDI_INPUT_DEVICE: 0"</t>
2639     <t>&nbsp;&nbsp;&nbsp;"MIDI_INPUT_PORT: 0"</t>
2640     <t>&nbsp;&nbsp;&nbsp;"MIDI_INPUT_CHANNEL: 5"</t>
2641 schoenebeck 973 <t>&nbsp;&nbsp;&nbsp;"VOLUME: 1.0"</t>
2642     <t>&nbsp;&nbsp;&nbsp;"MUTE: false"</t>
2643     <t>&nbsp;&nbsp;&nbsp;"SOLO: false"</t>
2644     <t>&nbsp;&nbsp;&nbsp;"MIDI_INSTRUMENT_MAP: NONE"</t>
2645 schoenebeck 151 <t>&nbsp;&nbsp;&nbsp;"."</t>
2646     </list>
2647     </t>
2648     </section>
2649    
2650 schoenebeck 534 <section title="Current number of active voices" anchor="GET CHANNEL VOICE_COUNT">
2651 schoenebeck 151 <t>The front-end can ask for the current number of active voices on a
2652     sampler channel by sending the following command:</t>
2653     <t>
2654     <list>
2655 schoenebeck 206 <t>GET CHANNEL VOICE_COUNT &lt;sampler-channel&gt;</t>
2656 schoenebeck 151 </list>
2657     </t>
2658 schoenebeck 571 <t>Where &lt;sampler-channel&gt; is the sampler channel number the front-end is interested in
2659     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2660     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command.</t>
2661 schoenebeck 206
2662 schoenebeck 151 <t>Possible Answers:</t>
2663     <t>
2664     <list>
2665     <t>LinuxSampler will answer by returning the number of active
2666     voices on that channel.</t>
2667     </list>
2668     </t>
2669     <t>Example:</t>
2670     <t>
2671     <list>
2672     <t></t>
2673     </list>
2674     </t>
2675     </section>
2676    
2677 schoenebeck 534 <section title="Current number of active disk streams" anchor="GET CHANNEL STREAM_COUNT">
2678 schoenebeck 151 <t>The front-end can ask for the current number of active disk streams
2679     on a sampler channel by sending the following command:</t>
2680     <t>
2681     <list>
2682     <t>GET CHANNEL STREAM_COUNT &lt;sampler-channel&gt;</t>
2683     </list>
2684     </t>
2685 schoenebeck 571 <t>Where &lt;sampler-channel&gt; is the sampler channel number the front-end is interested in
2686     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2687     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command.</t>
2688 schoenebeck 151
2689     <t>Possible Answers:</t>
2690     <t>
2691     <list>
2692     <t>LinuxSampler will answer by returning the number of active
2693     disk streams on that channel in case the engine supports disk
2694     streaming, if the engine doesn't support disk streaming it will
2695     return "NA" for not available.</t>
2696     </list>
2697     </t>
2698     <t>Example:</t>
2699     <t>
2700     <list>
2701     <t></t>
2702     </list>
2703     </t>
2704     </section>
2705    
2706 schoenebeck 534 <section title="Current fill state of disk stream buffers" anchor="GET CHANNEL BUFFER_FILL">
2707 schoenebeck 151 <t>The front-end can ask for the current fill state of all disk streams
2708     on a sampler channel by sending the following command:</t>
2709     <t>
2710     <list>
2711     <t>GET CHANNEL BUFFER_FILL BYTES &lt;sampler-channel&gt;</t>
2712     </list>
2713     </t>
2714     <t>to get the fill state in bytes or</t>
2715     <t>
2716     <list>
2717     <t>GET CHANNEL BUFFER_FILL PERCENTAGE &lt;sampler-channel&gt;</t>
2718     </list>
2719     </t>
2720     <t>to get the fill state in percent, where &lt;sampler-channel&gt; is the
2721 schoenebeck 571 sampler channel number the front-end is interested in
2722     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2723     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command.</t>
2724 schoenebeck 151
2725     <t>Possible Answers:</t>
2726     <t>
2727     <list>
2728     <t>LinuxSampler will either answer by returning a comma separated
2729     string with the fill state of all disk stream buffers on that
2730     channel or an empty line if there are no active disk streams or
2731     "NA" for *not available* in case the engine which is deployed
2732     doesn't support disk streaming. Each entry in the answer list
2733     will begin with the stream's ID in brackets followed by the
2734     numerical representation of the fill size (either in bytes or
2735     percentage). Note: due to efficiency reasons the fill states in
2736     the response are not in particular order, thus the front-end has
2737     to sort them by itself if necessary.</t>
2738     </list>
2739     </t>
2740     <t>Examples:</t>
2741     <t>
2742     <list>
2743     <t>C: "GET CHANNEL BUFFER_FILL BYTES 4"</t>
2744     <t>S: "[115]420500,[116]510300,[75]110000,[120]230700"</t>
2745     </list>
2746    
2747     <list>
2748     <t>C: "GET CHANNEL BUFFER_FILL PERCENTAGE 4"</t>
2749     <t>S: "[115]90%,[116]98%,[75]40%,[120]62%"</t>
2750     </list>
2751    
2752     <list>
2753     <t>C: "GET CHANNEL BUFFER_FILL PERCENTAGE 4"</t>
2754     <t>S: ""</t>
2755     </list>
2756     </t>
2757     </section>
2758    
2759 schoenebeck 534 <section title="Setting audio output device" anchor="SET CHANNEL AUDIO_OUTPUT_DEVICE">
2760 schoenebeck 151 <t>The front-end can set the audio output device on a specific sampler
2761     channel by sending the following command:</t>
2762     <t>
2763     <list>
2764     <t>SET CHANNEL AUDIO_OUTPUT_DEVICE &lt;sampler-channel&gt; &lt;audio-device-id&gt;</t>
2765     </list>
2766     </t>
2767 schoenebeck 571 <t>Where &lt;sampler-channel&gt; is the respective sampler channel
2768     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2769     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command and
2770     &lt;audio-device-id&gt; is the numerical ID of the audio output device as given by the
2771     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
2772     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
2773     command.</t>
2774 schoenebeck 151
2775     <t>Possible Answers:</t>
2776     <t>
2777     <list>
2778     <t>"OK" -
2779     <list>
2780     <t>on success</t>
2781     </list>
2782     </t>
2783     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2784     <list>
2785     <t>if audio output device was set, but there are noteworthy
2786     issue(s) related, providing an appropriate warning code and
2787     warning message</t>
2788     </list>
2789     </t>
2790     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2791     <list>
2792     <t>in case it failed, providing an appropriate error code and error message</t>
2793     </list>
2794     </t>
2795     </list>
2796     </t>
2797     <t>Examples:</t>
2798     <t>
2799     <list>
2800     <t></t>
2801     </list>
2802     </t>
2803     </section>
2804    
2805 schoenebeck 973 <section title="Setting audio output type" anchor="SET CHANNEL AUDIO_OUTPUT_TYPE">
2806 schoenebeck 151 <t>DEPRECATED: THIS COMMAND WILL DISAPPEAR SOON!</t>
2807    
2808     <t>The front-end can alter the audio output type on a specific sampler
2809     channel by sending the following command:</t>
2810     <t>
2811     <list>
2812     <t>SET CHANNEL AUDIO_OUTPUT_TYPE &lt;sampler-channel&gt; &lt;audio-output-type&gt;</t>
2813     </list>
2814     </t>
2815 schoenebeck 222 <t>Where &lt;audio-output-type&gt; is currently either "ALSA" or "JACK" and
2816 schoenebeck 151 &lt;sampler-channel&gt; is the respective sampler channel number.</t>
2817    
2818     <t>Possible Answers:</t>
2819     <t>
2820     <list>
2821     <t>"OK" -
2822     <list>
2823     <t>on success</t>
2824     </list>
2825     </t>
2826     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2827     <list>
2828     <t>if audio output type was set, but there are noteworthy
2829     issue(s) related, providing an appropriate warning code and
2830     warning message</t>
2831     </list>
2832     </t>
2833     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2834     <list>
2835     <t>in case it failed, providing an appropriate error code and error message</t>
2836     </list>
2837     </t>
2838     </list>
2839     </t>
2840     <t>Examples:</t>
2841     <t>
2842     <list>
2843     <t></t>
2844     </list>
2845     </t>
2846     </section>
2847    
2848 schoenebeck 534 <section title="Setting audio output channel" anchor="SET CHANNEL AUDIO_OUTPUT_CHANNEL">
2849 schoenebeck 151 <t>The front-end can alter the audio output channel on a specific
2850     sampler channel by sending the following command:</t>
2851     <t>
2852     <list>
2853     <t>SET CHANNEL AUDIO_OUTPUT_CHANNEL &lt;sampler-chan&gt; &lt;audio-out&gt; &lt;audio-in&gt;</t>
2854     </list>
2855     </t>
2856 schoenebeck 571 <t>Where &lt;sampler-chan&gt; is the sampler channel number
2857     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2858     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command, &lt;audio-out&gt; is the
2859 schoenebeck 499 numerical ID of the sampler channel's audio output channel which should be
2860     rerouted and &lt;audio-in&gt; is the numerical ID of the audio channel of the selected audio
2861 schoenebeck 151 output device where &lt;audio-out&gt; should be routed to.</t>
2862    
2863     <t>Possible Answers:</t>
2864     <t>
2865     <list>
2866     <t>"OK" -
2867     <list>
2868     <t>on success</t>
2869     </list>
2870     </t>
2871     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2872     <list>
2873     <t>if audio output channel was set, but there are noteworthy
2874     issue(s) related, providing an appropriate warning code and
2875     warning message</t>
2876     </list>
2877     </t>
2878     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2879     <list>
2880     <t>in case it failed, providing an appropriate error code and error message</t>
2881     </list>
2882     </t>
2883     </list>
2884     </t>
2885     <t>Examples:</t>
2886     <t>
2887     <list>
2888     <t></t>
2889     </list>
2890     </t>
2891     </section>
2892    
2893 schoenebeck 534 <section title="Setting MIDI input device" anchor="SET CHANNEL MIDI_INPUT_DEVICE">
2894 schoenebeck 151 <t>The front-end can set the MIDI input device on a specific sampler
2895     channel by sending the following command:</t>
2896     <t>
2897     <list>
2898     <t>SET CHANNEL MIDI_INPUT_DEVICE &lt;sampler-channel&gt; &lt;midi-device-id&gt;</t>
2899     </list>
2900     </t>
2901 schoenebeck 571 <t>Where &lt;sampler-channel&gt; is the sampler channel number
2902     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
2903     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command
2904     and &lt;midi-device-id&gt; is the numerical ID of the MIDI input device as returned by the
2905     <xref target="CREATE MIDI_INPUT_DEVICE">"CREATE MIDI_INPUT_DEVICE"</xref>
2906     or <xref target="LIST MIDI_INPUT_DEVICES">"LIST MIDI_INPUT_DEVICES"</xref> command.</t>
2907 schoenebeck 151
2908     <t>Possible Answers:</t>
2909     <t>
2910     <list>
2911     <t>"OK" -
2912     <list>
2913     <t>on success</t>
2914     </list>
2915     </t>
2916     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2917     <list>
2918     <t>if MIDI input device was set, but there are noteworthy
2919     issue(s) related, providing an appropriate warning code and
2920     warning message</t>
2921     </list>
2922     </t>
2923     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2924     <list>
2925     <t>in case it failed, providing an appropriate error code and error message</t>
2926     </list>
2927     </t>
2928     </list>
2929     </t>
2930     <t>Examples:</t>
2931     <t>
2932     <list>
2933     <t></t>
2934     </list>
2935     </t>
2936     </section>
2937    
2938 schoenebeck 534 <section title="Setting MIDI input type" anchor="SET CHANNEL MIDI_INPUT_TYPE">
2939 schoenebeck 151 <t>DEPRECATED: THIS COMMAND WILL DISAPPEAR SOON!</t>
2940    
2941     <t>The front-end can alter the MIDI input type on a specific sampler
2942     channel by sending the following command:</t>
2943     <t>
2944     <list>
2945     <t>SET CHANNEL MIDI_INPUT_TYPE &lt;sampler-channel&gt; &lt;midi-input-type&gt;</t>
2946     </list>
2947     </t>
2948 schoenebeck 222 <t>Where &lt;midi-input-type&gt; is currently only "ALSA" and
2949 schoenebeck 151 &lt;sampler-channel&gt; is the respective sampler channel number.</t>
2950    
2951     <t>Possible Answers:</t>
2952     <t>
2953     <list>
2954     <t>"OK" -
2955     <list>
2956     <t>on success</t>
2957     </list>
2958     </t>
2959     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
2960     <list>
2961     <t>if MIDI input type was set, but there are noteworthy
2962     issue(s) related, providing an appropriate warning code and
2963     warning message</t>
2964     </list>
2965     </t>
2966     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
2967     <list>
2968     <t>in case it failed, providing an appropriate error code and error message</t>
2969     </list>
2970     </t>
2971     </list>
2972     </t>
2973     <t>Examples:</t>
2974     <t>
2975     <list>
2976     <t></t>
2977     </list>
2978     </t>
2979     </section>
2980    
2981 schoenebeck 534 <section title="Setting MIDI input port" anchor="SET CHANNEL MIDI_INPUT_PORT">
2982 schoenebeck 499 <t>The front-end can alter the MIDI input port on a specific sampler
2983 schoenebeck 151 channel by sending the following command:</t>
2984     <t>
2985     <list>
2986     <t>SET CHANNEL MIDI_INPUT_PORT &lt;sampler-channel&gt; &lt;midi-input-port&gt;</t>
2987     </list>
2988     </t>
2989     <t>Where &lt;midi-input-port&gt; is a MIDI input port number of the
2990     MIDI input device connected to the sampler channel given by
2991     &lt;sampler-channel&gt;.</t>
2992    
2993     <t>Possible Answers:</t>
2994     <t>
2995     <list>
2996     <t>"OK" -
2997     <list>
2998     <t>on success</t>
2999     </list>
3000     </t>
3001     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3002     <list>
3003     <t>if MIDI input port was set, but there are noteworthy
3004     issue(s) related, providing an appropriate warning code and
3005     warning message</t>
3006     </list>
3007     </t>
3008     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3009     <list>
3010 schoenebeck 561 <t>in case it failed, providing an appropriate error code and error message</t>
3011 schoenebeck 151 </list>
3012     </t>
3013     </list>
3014     </t>
3015     <t>Examples:</t>
3016     <t>
3017     <list>
3018     <t></t>
3019     </list>
3020     </t>
3021     </section>
3022    
3023 schoenebeck 534 <section title="Setting MIDI input channel" anchor="SET CHANNEL MIDI_INPUT_CHANNEL">
3024 schoenebeck 151 <t>The front-end can alter the MIDI channel a sampler channel should
3025     listen to by sending the following command:</t>
3026     <t>
3027     <list>
3028     <t>SET CHANNEL MIDI_INPUT_CHANNEL &lt;sampler-channel&gt; &lt;midi-input-chan&gt;</t>
3029     </list>
3030     </t>
3031 schoenebeck 499 <t>Where &lt;midi-input-chan&gt; is the number of the new MIDI input channel where
3032 schoenebeck 151 &lt;sampler-channel&gt; should listen to or "ALL" to listen on all 16 MIDI
3033     channels.</t>
3034    
3035     <t>Possible Answers:</t>
3036     <t>
3037     <list>
3038     <t>"OK" -
3039     <list>
3040     <t>on success</t>
3041     </list>
3042     </t>
3043     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3044     <list>
3045     <t>if MIDI input channel was set, but there are noteworthy
3046     issue(s) related, providing an appropriate warning code and
3047     warning message</t>
3048     </list>
3049     </t>
3050     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3051     <list>
3052     <t>in case it failed, providing an appropriate error code and error message</t>
3053     </list>
3054     </t>
3055     </list>
3056     </t>
3057     <t>Examples:</t>
3058     <t>
3059     <list>
3060     <t></t>
3061     </list>
3062     </t>
3063     </section>
3064    
3065 schoenebeck 534 <section title="Setting channel volume" anchor="SET CHANNEL VOLUME">
3066 schoenebeck 151 <t>The front-end can alter the volume of a sampler channel by sending
3067     the following command:</t>
3068     <t>
3069     <list>
3070     <t>SET CHANNEL VOLUME &lt;sampler-channel&gt; &lt;volume&gt;</t>
3071     </list>
3072     </t>
3073     <t>Where &lt;volume&gt; is an optionally dotted positive number (a value
3074     smaller than 1.0 means attenuation, whereas a value greater than
3075     1.0 means amplification) and &lt;sampler-channel&gt; defines the sampler
3076     channel where this volume factor should be set.</t>
3077    
3078     <t>Possible Answers:</t>
3079     <t>
3080     <list>
3081     <t>"OK" -
3082     <list>
3083     <t>on success</t>
3084     </list>
3085     </t>
3086     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3087     <list>
3088     <t>if channel volume was set, but there are noteworthy
3089     issue(s) related, providing an appropriate warning code and
3090     warning message</t>
3091     </list>
3092     </t>
3093     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3094     <list>
3095     <t>in case it failed, providing an appropriate error code and error message</t>
3096     </list>
3097     </t>
3098     </list>
3099     </t>
3100     <t>Examples:</t>
3101     <t>
3102     <list>
3103     <t></t>
3104     </list>
3105     </t>
3106     </section>
3107    
3108 iliev 706 <section title="Muting a sampler channel" anchor="SET CHANNEL MUTE">
3109     <t>The front-end can mute/unmute a specific sampler
3110     channel by sending the following command:</t>
3111     <t>
3112     <list>
3113     <t>SET CHANNEL MUTE &lt;sampler-channel&gt; &lt;mute&gt;</t>
3114     </list>
3115     </t>
3116     <t>Where &lt;sampler-channel&gt; is the respective sampler channel
3117     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3118     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command and
3119     &lt;mute&gt; should be replaced either by "1" to mute the channel or "0"
3120     to unmute the channel.</t>
3121    
3122     <t>Possible Answers:</t>
3123     <t>
3124     <list>
3125     <t>"OK" -
3126     <list>
3127     <t>on success</t>
3128     </list>
3129     </t>
3130     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3131     <list>
3132     <t>if the channel was muted/unmuted, but there are noteworthy
3133     issue(s) related, providing an appropriate warning code and
3134     warning message</t>
3135     </list>
3136     </t>
3137     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3138     <list>
3139     <t>in case it failed, providing an appropriate error code and error message</t>
3140     </list>
3141     </t>
3142     </list>
3143     </t>
3144     <t>Examples:</t>
3145     <t>
3146     <list>
3147     <t></t>
3148     </list>
3149     </t>
3150     </section>
3151    
3152     <section title="Soloing a sampler channel" anchor="SET CHANNEL SOLO">
3153     <t>The front-end can solo/unsolo a specific sampler channel
3154     by sending the following command:</t>
3155     <t>
3156     <list>
3157     <t>SET CHANNEL SOLO &lt;sampler-channel&gt; &lt;solo&gt;</t>
3158     </list>
3159     </t>
3160     <t>Where &lt;sampler-channel&gt; is the respective sampler channel
3161     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3162     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command and
3163     &lt;solo&gt; should be replaced either by "1" to solo the channel or "0"
3164     to unsolo the channel.</t>
3165    
3166     <t>Possible Answers:</t>
3167     <t>
3168     <list>
3169     <t>"OK" -
3170     <list>
3171     <t>on success</t>
3172     </list>
3173     </t>
3174     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3175     <list>
3176     <t>if the channel was soloed/unsoloed, but there are noteworthy
3177     issue(s) related, providing an appropriate warning code and
3178     warning message</t>
3179     </list>
3180     </t>
3181     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3182     <list>
3183     <t>in case it failed, providing an appropriate error code and error message</t>
3184     </list>
3185     </t>
3186     </list>
3187     </t>
3188     <t>Examples:</t>
3189     <t>
3190     <list>
3191     <t></t>
3192     </list>
3193     </t>
3194     </section>
3195    
3196 schoenebeck 973 <section title="Assigning a MIDI instrument map to a sampler channel" anchor="SET CHANNEL MIDI_INSTRUMENT_MAP">
3197     <t>The front-end can assign a MIDI instrument map to a specific sampler channel
3198     by sending the following command:</t>
3199     <t>
3200     <list>
3201     <t>SET CHANNEL MIDI_INSTRUMENT_MAP &lt;sampler-channel&gt; &lt;map&gt;</t>
3202     </list>
3203     </t>
3204     <t>Where &lt;sampler-channel&gt; is the respective sampler channel
3205     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3206     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command and
3207     &lt;map&gt; can have the following possibilites:</t>
3208     <t>
3209     <list>
3210     <t>"NONE" -
3211     <list>
3212     <t>This is the default setting. In this case
3213     the sampler channel is not assigned any MIDI
3214     instrument map and thus will ignore all MIDI
3215     program change messages.</t>
3216     </list>
3217     </t>
3218     <t>"DEFAULT" -
3219     <list>
3220     <t>The sampler channel will always use the
3221     default MIDI instrument map to handle MIDI
3222     program change messages.</t>
3223     </list>
3224     </t>
3225     <t>numeric ID -
3226     <list>
3227     <t>You can assign a specific MIDI instrument map
3228     by replacing &lt;map&gt; with the respective numeric
3229     ID of the MIDI instrument map as returned by the
3230     <xref target="LIST MIDI_INSTRUMENT_MAPS">"LIST MIDI_INSTRUMENT_MAPS"</xref>
3231     command. Once that map will be deleted, the sampler
3232     channel would fall back to "NONE".</t>
3233     </list>
3234     </t>
3235     </list>
3236     </t>
3237     <t>Read chapter <xref target="MIDI Instrument Mapping">"MIDI Instrument Mapping"</xref>
3238     for details regarding MIDI instrument mapping.</t>
3239    
3240     <t>Possible Answers:</t>
3241     <t>
3242     <list>
3243     <t>"OK" -
3244     <list>
3245     <t>on success</t>
3246     </list>
3247     </t>
3248     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3249     <list>
3250     <t>in case it failed, providing an appropriate error code and error message</t>
3251     </list>
3252     </t>
3253     </list>
3254     </t>
3255    
3256     <t>Examples:</t>
3257     <t>
3258     <list>
3259     <t></t>
3260     </list>
3261     </t>
3262     </section>
3263    
3264 schoenebeck 1001 <section title="Adding an effect send to a sampler channel" anchor="CREATE FX_SEND">
3265     <t>The front-end can create an additional effect send on a specific sampler channel
3266     by sending the following command:</t>
3267     <t>
3268     <list>
3269     <t>CREATE FX_SEND &lt;sampler-channel&gt; &lt;midi-ctrl&gt; [&lt;name&gt;]</t>
3270     </list>
3271     </t>
3272     <t>Where &lt;sampler-channel&gt; is the respective sampler channel
3273     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3274     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command, that is the
3275     sampler channel on which the effect send should be created on, &lt;midi-ctrl&gt;
3276     is a number between 0..127 defining the MIDI controller which can alter the
3277     effect send level and &lt;name&gt; is an optional argument defining a name
3278 schoenebeck 1389 for the effect send entity. The name does not have to be unique, but MUST be
3279     encapsulated into apostrophes and supports escape sequences as described in chapter
3280     "<xref target="character_set">Character Set and Escape Sequences</xref>".</t>
3281 schoenebeck 1001
3282     <t>By default, that is as initial routing, the effect send's audio channels
3283     are automatically routed to the last audio channels of the sampler channel's
3284     audio output device, that way you can i.e. first increase the amount of audio
3285     channels on the audio output device for having dedicated effect send output
3286     channels and when "CREATE FX_SEND" is called, those channels will automatically
3287     be picked. You can alter the destination channels however with
3288     <xref target="SET FX_SEND AUDIO_OUTPUT_CHANNEL">"SET FX_SEND AUDIO_OUTPUT_CHANNEL"</xref>.
3289     </t>
3290    
3291     <t>Note: Create effect sends on a sampler channel only when needed, because having effect
3292     sends on a sampler channel will decrease runtime performance, because for implementing channel
3293     effect sends, separate (sampler channel local) audio buffers are needed to render and mix
3294     the voices and route the audio signal afterwards to the master outputs and effect send
3295     outputs (along with their respective effect send levels). A sampler channel without effect
3296     sends however can mix its voices directly into the audio output devices's audio buffers
3297     and is thus faster.
3298     </t>
3299    
3300     <t>Possible Answers:</t>
3301     <t>
3302     <list>
3303     <t>"OK[&lt;fx-send-id&gt;]" -
3304     <list>
3305     <t>in case a new effect send could be added to the
3306     sampler channel, where &lt;fx-send-id&gt; reflects the
3307     unique ID of the newly created effect send entity</t>
3308     </list>
3309     </t>
3310     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3311     <list>
3312     <t>when a new effect send could not be added, i.e.
3313     due to invalid parameters</t>
3314     </list>
3315     </t>
3316     </list>
3317     </t>
3318    
3319     <t>Examples:</t>
3320     <t>
3321     <list>
3322     <t>C: "CREATE FX_SEND 0 91 'Reverb Send'"</t>
3323     <t>S: "OK[0]"</t>
3324     </list>
3325     </t>
3326 schoenebeck 1026 <t>
3327 schoenebeck 1001 <list>
3328     <t>C: "CREATE FX_SEND 0 93"</t>
3329     <t>S: "OK[1]"</t>
3330     </list>
3331     </t>
3332     </section>
3333    
3334     <section title="Removing an effect send from a sampler channel" anchor="DESTROY FX_SEND">
3335     <t>The front-end can remove an existing effect send on a specific sampler channel
3336     by sending the following command:</t>
3337     <t>
3338     <list>
3339     <t>DESTROY FX_SEND &lt;sampler-channel&gt; &lt;fx-send-id&gt;</t>
3340     </list>
3341     </t>
3342     <t>Where &lt;sampler-channel&gt; is the respective sampler channel
3343     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3344     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command, that is the
3345     sampler channel from which the effect send should be removed from and
3346     &lt;fx-send-id&gt; is the respective effect send number as returned by the
3347     <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3348     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command.</t>
3349    
3350     <t>Possible Answers:</t>
3351     <t>
3352     <list>
3353     <t>"OK" -
3354     <list>
3355     <t>on success</t>
3356     </list>
3357     </t>
3358     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3359     <list>
3360     <t>in case it failed, providing an appropriate error code and
3361     error message</t>
3362     </list>
3363     </t>
3364     </list>
3365     </t>
3366    
3367     <t>Example:</t>
3368     <t>
3369     <list>
3370     <t>C: "DESTROY FX_SEND 0 0"</t>
3371     <t>S: "OK"</t>
3372     </list>
3373     </t>
3374     </section>
3375    
3376     <section title="Getting amount of effect sends on a sampler channel" anchor="GET FX_SENDS">
3377     <t>The front-end can ask for the amount of effect sends on a specific sampler channel
3378     by sending the following command:</t>
3379     <t>
3380     <list>
3381     <t>GET FX_SENDS &lt;sampler-channel&gt;</t>
3382     </list>
3383     </t>
3384     <t>Where &lt;sampler-channel&gt; is the respective sampler channel
3385     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3386     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command.</t>
3387    
3388     <t>Possible Answers:</t>
3389     <t>
3390     <list>
3391     <t>The sampler will answer by returning the number of effect
3392     sends on the given sampler channel.</t>
3393     </list>
3394     </t>
3395    
3396     <t>Example:</t>
3397     <t>
3398     <list>
3399     <t>C: "GET FX_SENDS 0"</t>
3400     <t>S: "2"</t>
3401     </list>
3402     </t>
3403     </section>
3404    
3405     <section title="Listing all effect sends on a sampler channel" anchor="LIST FX_SENDS">
3406     <t>The front-end can ask for a list of effect sends on a specific sampler channel
3407     by sending the following command:</t>
3408     <t>
3409     <list>
3410     <t>LIST FX_SENDS &lt;sampler-channel&gt;</t>
3411     </list>
3412     </t>
3413     <t>Where &lt;sampler-channel&gt; is the respective sampler channel
3414     number as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3415     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command.</t>
3416    
3417     <t>Possible Answers:</t>
3418     <t>
3419     <list>
3420     <t>The sampler will answer by returning a comma separated list
3421     with all effect sends' numerical IDs on the given sampler
3422     channel.</t>
3423     </list>
3424     </t>
3425    
3426     <t>Examples:</t>
3427     <t>
3428     <list>
3429     <t>C: "LIST FX_SENDS 0"</t>
3430     <t>S: "0,1"</t>
3431     </list>
3432     </t>
3433     <t>
3434     <list>
3435     <t>C: "LIST FX_SENDS 1"</t>
3436     <t>S: ""</t>
3437     </list>
3438     </t>
3439     </section>
3440    
3441     <section title="Getting effect send information" anchor="GET FX_SEND INFO">
3442     <t>The front-end can ask for the current settings of an effect send entity
3443     by sending the following command:</t>
3444     <t>
3445     <list>
3446     <t>GET FX_SEND INFO &lt;sampler-channel&gt; &lt;fx-send-id&gt;</t>
3447     </list>
3448     </t>
3449     <t>Where &lt;sampler-channel&gt; is the sampler channel number
3450     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3451     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command and
3452     &lt;fx-send-id&gt; reflects the numerical ID of the effect send entity
3453     as returned by the <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3454     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command.
3455     </t>
3456    
3457     <t>Possible Answers:</t>
3458     <t>
3459     <list>
3460     <t>The sampler will answer by sending a &lt;CRLF&gt; separated list.
3461     Each answer line begins with the settings category name
3462     followed by a colon and then a space character &lt;SP&gt; and finally
3463     the info character string to that setting category. At the
3464     moment the following categories are defined:</t>
3465    
3466     <t>
3467     <list>
3468     <t>NAME -
3469     <list>
3470 schoenebeck 1399 <t>name of the effect send entity
3471     (note that this character string may contain
3472     <xref target="character_set">escape sequences</xref>)</t>
3473 schoenebeck 1001 </list>
3474     </t>
3475 schoenebeck 1026 <t>MIDI_CONTROLLER -
3476     <list>
3477     <t>a value between 0 and 127 reflecting the MIDI controller
3478     which is able to modify the effect send's send level</t>
3479     </list>
3480     </t>
3481     <t>LEVEL -
3482     <list>
3483     <t>optionally dotted number reflecting the effect send's
3484     current send level (where a value &lt; 1.0 means attenuation
3485     and a value > 1.0 means amplification)</t>
3486     </list>
3487     </t>
3488 schoenebeck 1001 <t>AUDIO_OUTPUT_ROUTING -
3489     <list>
3490     <t>comma separated list which reflects to which audio
3491     channel of the selected audio output device each
3492     effect send output channel is routed to, e.g. "0,3" would
3493     mean the effect send's output channel 0 is routed to channel
3494     0 of the audio output device and the effect send's output
3495     channel 1 is routed to the channel 3 of the audio
3496     output device (see
3497     <xref target="SET FX_SEND AUDIO_OUTPUT_CHANNEL">"SET FX_SEND AUDIO_OUTPUT_CHANNEL"</xref>
3498 schoenebeck 2138 for details), if an internal send
3499     effect is assigned to the effect
3500     send, then this setting defines the
3501     audio channel routing to that
3502     effect instance respectively</t>
3503 schoenebeck 1001 </list>
3504     </t>
3505 schoenebeck 2140 <t>EFFECT -
3506 schoenebeck 2138 <list>
3507     <t>destination send effect chain ID
3508     and destination effect chain
3509     position, separated by comma in the
3510     form "&lt;effect-chain&gt;,&lt;chain-pos&gt;"
3511     or "NONE" if there is no send effect
3512     assigned to the effect send</t>
3513     </list>
3514     </t>
3515 schoenebeck 1001 </list>
3516     </t>
3517     </list>
3518     </t>
3519     <t>The mentioned fields above don't have to be in particular order.</t>
3520    
3521     <t>Example:</t>
3522     <t>
3523     <list>
3524     <t>C: "GET FX_SEND INFO 0 0"</t>
3525     <t>S: "NAME: Reverb Send"</t>
3526 schoenebeck 1026 <t>&nbsp;&nbsp;&nbsp;"MIDI_CONTROLLER: 91"</t>
3527     <t>&nbsp;&nbsp;&nbsp;"LEVEL: 0.3"</t>
3528 schoenebeck 1001 <t>&nbsp;&nbsp;&nbsp;"AUDIO_OUTPUT_ROUTING: 2,3"</t>
3529 schoenebeck 2140 <t>&nbsp;&nbsp;&nbsp;"EFFECT: NONE"</t>
3530 schoenebeck 1001 <t>&nbsp;&nbsp;&nbsp;"."</t>
3531     </list>
3532     </t>
3533 schoenebeck 2140 <t>
3534     <list>
3535     <t>C: "GET FX_SEND INFO 0 1"</t>
3536     <t>S: "NAME: Delay Send (Internal)"</t>
3537     <t>&nbsp;&nbsp;&nbsp;"MIDI_CONTROLLER: 93"</t>
3538     <t>&nbsp;&nbsp;&nbsp;"LEVEL: 0.51"</t>
3539     <t>&nbsp;&nbsp;&nbsp;"AUDIO_OUTPUT_ROUTING: 1,2"</t>
3540     <t>&nbsp;&nbsp;&nbsp;"EFFECT: 2,0"</t>
3541     <t>&nbsp;&nbsp;&nbsp;"."</t>
3542     </list>
3543     </t>
3544 schoenebeck 1001 </section>
3545    
3546 iliev 1135 <section title="Changing effect send's name" anchor="SET FX_SEND NAME">
3547     <t>The front-end can alter the current name of an effect
3548     send entity by sending the following command:</t>
3549     <t>
3550     <list>
3551     <t>SET FX_SEND NAME &lt;sampler-chan&gt; &lt;fx-send-id&gt; &lt;name&gt;</t>
3552     </list>
3553     </t>
3554     <t>Where &lt;sampler-chan&gt; is the sampler channel number
3555     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3556     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command,
3557     &lt;fx-send-id&gt; reflects the numerical ID of the effect send entity
3558     as returned by the <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3559     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command and
3560     &lt;name&gt; is the new name of the effect send entity, which
3561 schoenebeck 1389 does not have to be unique (name MUST be encapsulated into apostrophes
3562     and supports escape sequences as described in chapter
3563     "<xref target="character_set">Character Set and Escape Sequences</xref>").
3564     </t>
3565 iliev 1135
3566     <t>Possible Answers:</t>
3567     <t>
3568     <list>
3569     <t>"OK" -
3570     <list>
3571     <t>on success</t>
3572     </list>
3573     </t>
3574     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3575     <list>
3576     <t>in case it failed, providing an appropriate error code and error message</t>
3577     </list>
3578     </t>
3579     </list>
3580     </t>
3581     <t>Example:</t>
3582     <t>
3583     <list>
3584     <t>C: "SET FX_SEND NAME 0 0 'Fx Send 1'"</t>
3585     <t>S: "OK"</t>
3586     </list>
3587     </t>
3588     </section>
3589    
3590 schoenebeck 1001 <section title="Altering effect send's audio routing" anchor="SET FX_SEND AUDIO_OUTPUT_CHANNEL">
3591     <t>The front-end can alter the destination of an effect send's audio channel on a specific
3592     sampler channel by sending the following command:</t>
3593     <t>
3594     <list>
3595     <t>SET FX_SEND AUDIO_OUTPUT_CHANNEL &lt;sampler-chan&gt; &lt;fx-send-id&gt; &lt;audio-src&gt; &lt;audio-dst&gt;</t>
3596     </list>
3597     </t>
3598     <t>Where &lt;sampler-chan&gt; is the sampler channel number
3599     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3600     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command,
3601     &lt;fx-send-id&gt; reflects the numerical ID of the effect send entity
3602     as returned by the <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3603     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command,
3604     &lt;audio-src&gt; is the numerical ID of the effect send's audio channel
3605     which should be rerouted and &lt;audio-dst&gt; is the numerical ID of
3606     the audio channel of the selected audio output device where &lt;audio-src&gt;
3607 schoenebeck 2138 should be routed to. If an internal send effect is assigned
3608     to the effect send, then this setting defines the audio
3609     channel routing to that effect instance respectively.</t>
3610 schoenebeck 1001
3611     <t>Note that effect sends can only route audio to the same audio output
3612     device as assigned to the effect send's sampler channel. Also note that an
3613     effect send entity does always have exactly as much audio channels as its
3614     sampler channel. So if the sampler channel is stereo, the effect send does
3615     have two audio channels as well. Also keep in mind that the amount of audio
3616     channels on a sampler channel might be dependant not only to the deployed
3617     sampler engine on the sampler channel, but also dependant to the instrument
3618     currently loaded. However you can (effectively) turn an i.e. stereo effect
3619     send into a mono one by simply altering its audio routing appropriately.</t>
3620    
3621     <t>Possible Answers:</t>
3622     <t>
3623     <list>
3624     <t>"OK" -
3625     <list>
3626     <t>on success</t>
3627     </list>
3628     </t>
3629     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3630     <list>
3631     <t>if audio output channel was set, but there are noteworthy
3632     issue(s) related, providing an appropriate warning code and
3633     warning message</t>
3634     </list>
3635     </t>
3636     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3637     <list>
3638     <t>in case it failed, providing an appropriate error code and error message</t>
3639     </list>
3640     </t>
3641     </list>
3642     </t>
3643     <t>Example:</t>
3644     <t>
3645     <list>
3646     <t>C: "SET FX_SEND AUDIO_OUTPUT_CHANNEL 0 0 0 2"</t>
3647     <t>S: "OK"</t>
3648     </list>
3649     </t>
3650     </section>
3651    
3652 schoenebeck 2140 <section title="Assigning destination effect to an effect send" anchor="SET FX_SEND EFFECT">
3653 schoenebeck 2138 <t>The front-end can (re-)assign a destination effect to an
3654     effect send by sending the following command:</t>
3655     <t>
3656     <list>
3657 schoenebeck 2140 <t>SET FX_SEND EFFECT &lt;sampler-chan&gt; &lt;fx-send-id&gt; &lt;effect-chain&gt; &lt;chain-pos&gt;</t>
3658 schoenebeck 2138 </list>
3659     </t>
3660     <t>Where &lt;sampler-chan&gt; is the sampler channel number
3661     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3662     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command,
3663     &lt;fx-send-id&gt; reflects the numerical ID of the effect send entity
3664     as returned by the <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3665     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command,
3666     &lt;effect-chain&gt; by the numerical ID of the destination
3667     effect chain as returned by the
3668     <xref target="ADD SEND_EFFECT_CHAIN">"ADD SEND_EFFECT_CHAIN"</xref>
3669     or
3670     <xref target="LIST SEND_EFFECT_CHAINS">"LIST SEND_EFFECT_CHAINS"</xref>
3671     command and &lt;chain-pos&gt; reflects the exact effect
3672     chain position in the effect chain which hosts the actual
3673     destination effect.</t>
3674    
3675     <t>Possible Answers:</t>
3676     <t>
3677     <list>
3678     <t>"OK" -
3679     <list>
3680     <t>on success</t>
3681     </list>
3682     </t>
3683     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3684     <list>
3685     <t>in case it failed, providing an appropriate error code and error message</t>
3686     </list>
3687     </t>
3688     </list>
3689     </t>
3690     <t>Example:</t>
3691     <t>
3692     <list>
3693 schoenebeck 2140 <t>C: "SET FX_SEND EFFECT 0 0 2 5"</t>
3694 schoenebeck 2138 <t>S: "OK"</t>
3695     </list>
3696     </t>
3697     </section>
3698    
3699 schoenebeck 2140 <section title="Removing destination effect from an effect send" anchor="REMOVE FX_SEND EFFECT">
3700 schoenebeck 2138 <t>The front-end can (re-)assign a destination effect to an
3701     effect send by sending the following command:</t>
3702     <t>
3703     <list>
3704 schoenebeck 2140 <t>REMOVE FX_SEND EFFECT &lt;sampler-chan&gt; &lt;fx-send-id&gt;</t>
3705 schoenebeck 2138 </list>
3706     </t>
3707     <t>Where &lt;sampler-chan&gt; is the sampler channel number
3708     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3709     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command,
3710     &lt;fx-send-id&gt; reflects the numerical ID of the effect send entity
3711     as returned by the <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3712     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command.</t>
3713    
3714     <t>After the destination effect has been removed from the
3715     effect send, the audio signal of the effect send will be
3716     routed directly to the audio output device, according to the
3717     audio channel routing setting of the effect send.
3718     </t>
3719    
3720     <t>Possible Answers:</t>
3721     <t>
3722     <list>
3723     <t>"OK" -
3724     <list>
3725     <t>on success</t>
3726     </list>
3727     </t>
3728     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3729     <list>
3730     <t>in case it failed, providing an appropriate error code and error message</t>
3731     </list>
3732     </t>
3733     </list>
3734     </t>
3735     <t>Example:</t>
3736     <t>
3737     <list>
3738 schoenebeck 2140 <t>C: "REMOVE FX_SEND EFFECT 0 0"</t>
3739 schoenebeck 2138 <t>S: "OK"</t>
3740     </list>
3741     </t>
3742     </section>
3743    
3744 schoenebeck 1026 <section title="Altering effect send's MIDI controller" anchor="SET FX_SEND MIDI_CONTROLLER">
3745     <t>The front-end can alter the MIDI controller of an effect
3746     send entity by sending the following command:</t>
3747     <t>
3748     <list>
3749     <t>SET FX_SEND MIDI_CONTROLLER &lt;sampler-chan&gt; &lt;fx-send-id&gt; &lt;midi-ctrl&gt;</t>
3750     </list>
3751     </t>
3752     <t>Where &lt;sampler-chan&gt; is the sampler channel number
3753     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3754     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command,
3755     &lt;fx-send-id&gt; reflects the numerical ID of the effect send entity
3756     as returned by the <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3757     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command and
3758     &lt;midi-ctrl&gt; reflects the MIDI controller which shall be
3759     able to modify the effect send's send level.</t>
3760 schoenebeck 1001
3761 schoenebeck 1026 <t>Possible Answers:</t>
3762     <t>
3763     <list>
3764     <t>"OK" -
3765     <list>
3766     <t>on success</t>
3767     </list>
3768     </t>
3769     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3770     <list>
3771     <t>if MIDI controller was set, but there are noteworthy
3772     issue(s) related, providing an appropriate warning code and
3773     warning message</t>
3774     </list>
3775     </t>
3776     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3777     <list>
3778     <t>in case it failed, providing an appropriate error code and error message</t>
3779     </list>
3780     </t>
3781     </list>
3782     </t>
3783     <t>Example:</t>
3784     <t>
3785     <list>
3786     <t>C: "SET FX_SEND MIDI_CONTROLLER 0 0 91"</t>
3787     <t>S: "OK"</t>
3788     </list>
3789     </t>
3790     </section>
3791    
3792     <section title="Altering effect send's send level" anchor="SET FX_SEND LEVEL">
3793     <t>The front-end can alter the current send level of an effect
3794     send entity by sending the following command:</t>
3795     <t>
3796     <list>
3797     <t>SET FX_SEND LEVEL &lt;sampler-chan&gt; &lt;fx-send-id&gt; &lt;volume&gt;</t>
3798     </list>
3799     </t>
3800     <t>Where &lt;sampler-chan&gt; is the sampler channel number
3801     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3802     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command,
3803     &lt;fx-send-id&gt; reflects the numerical ID of the effect send entity
3804     as returned by the <xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref>
3805     or <xref target="LIST FX_SENDS">"LIST FX_SENDS"</xref> command and
3806     &lt;volume&gt; is an optionally dotted positive number (a value
3807     smaller than 1.0 means attenuation, whereas a value greater than
3808     1.0 means amplification) reflecting the new send level.</t>
3809    
3810     <t>Possible Answers:</t>
3811     <t>
3812     <list>
3813     <t>"OK" -
3814     <list>
3815     <t>on success</t>
3816     </list>
3817     </t>
3818     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3819     <list>
3820     <t>if new send level was set, but there are noteworthy
3821     issue(s) related, providing an appropriate warning code and
3822     warning message</t>
3823     </list>
3824     </t>
3825     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3826     <list>
3827     <t>in case it failed, providing an appropriate error code and error message</t>
3828     </list>
3829     </t>
3830     </list>
3831     </t>
3832     <t>Example:</t>
3833     <t>
3834     <list>
3835     <t>C: "SET FX_SEND LEVEL 0 0 0.15"</t>
3836     <t>S: "OK"</t>
3837     </list>
3838     </t>
3839     </section>
3840    
3841 iliev 1771 <section title="Sending MIDI messages to sampler channel" anchor="SEND CHANNEL MIDI_DATA">
3842 schoenebeck 2025 <t>The front-end can send MIDI events to a specific sampler channel
3843 iliev 1771 by sending the following command:</t>
3844     <t>
3845     <list>
3846     <t>SEND CHANNEL MIDI_DATA &lt;midi-msg&gt; &lt;sampler-chan&gt; &lt;arg1&gt; &lt;arg2&gt;</t>
3847     </list>
3848     </t>
3849     <t>Where &lt;sampler-chan&gt; is the sampler channel number
3850     as returned by the <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
3851     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref> command,
3852 iliev 1782 &lt;arg1&gt; and &lt;arg2&gt; arguments depend on the &lt;midi-msg&gt; argument, which
3853     specifies the MIDI message type. Currently, the following MIDI messages are supported:</t>
3854 iliev 1771 <t>
3855     <list>
3856 iliev 1782 <t>"NOTE_ON" -
3857 iliev 1771 <list>
3858 iliev 1782 <t>For turning on MIDI notes, where &lt;arg1&gt;
3859     specifies the key number and &lt;arg2&gt; the velocity
3860 iliev 1771 as described in the MIDI specification.</t>
3861     </list>
3862     </t>
3863     <t>"NOTE_OFF" -
3864     <list>
3865 iliev 1782 <t>For turning a currently playing MIDI note off, where &lt;arg1&gt;
3866     specifies the key number and &lt;arg2&gt; the velocity
3867 iliev 1771 as described in the MIDI specification.</t>
3868     </list>
3869     </t>
3870 schoenebeck 2025 <t>"CC" -
3871     <list>
3872     <t>For changing a MIDI controller, where &lt;arg1&gt;
3873     specifies the controller number and &lt;arg2&gt; the
3874     new value of the controller as described in the Control
3875     Change section of the MIDI specification.</t>
3876     </list>
3877     </t>
3878 iliev 1771 </list>
3879     </t>
3880 iliev 1782 <t>CAUTION: This command is provided for implementations of virtual MIDI keyboards
3881 iliev 1771 and no realtime guarantee whatsoever will be made!</t>
3882     <t>Possible Answers:</t>
3883     <t>
3884     <list>
3885     <t>"OK" -
3886     <list>
3887     <t>on success</t>
3888     </list>
3889     </t>
3890     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3891     <list>
3892     <t>in case it failed, providing an appropriate error code and error message</t>
3893     </list>
3894     </t>
3895     </list>
3896     </t>
3897     <t>Example:</t>
3898     <t>
3899     <list>
3900     <t>C: "SEND CHANNEL MIDI_DATA NOTE_ON 0 56 112"</t>
3901     <t>S: "OK"</t>
3902     </list>
3903     </t>
3904     </section>
3905    
3906 schoenebeck 534 <section title="Resetting a sampler channel" anchor="RESET CHANNEL">
3907 schoenebeck 151 <t>The front-end can reset a particular sampler channel by sending the following command:</t>
3908     <t>
3909     <list>
3910     <t>RESET CHANNEL &lt;sampler-channel&gt;</t>
3911     </list>
3912     </t>
3913     <t>
3914     Where &lt;sampler-channel&gt; defines the sampler channel to be reset.
3915     This will cause the engine on that sampler channel, its voices and
3916     eventually disk streams and all control and status variables to be
3917     reset.</t>
3918    
3919     <t>Possible Answers:</t>
3920     <t>
3921     <list>
3922     <t>"OK" -
3923     <list>
3924     <t>on success</t>
3925     </list>
3926     </t>
3927     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3928     <list>
3929     <t>if channel was reset, but there are noteworthy issue(s)
3930     related, providing an appropriate warning code and warning
3931     message</t>
3932     </list>
3933     </t>
3934     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3935     <list>
3936     <t>in case it failed, providing an appropriate error code and
3937     error message</t>
3938     </list>
3939     </t>
3940     </list>
3941     </t>
3942     <t>Examples:</t>
3943     <t>
3944     <list>
3945     <t></t>
3946     </list>
3947     </t>
3948     </section>
3949     </section>
3950    
3951     <section title="Controlling connection">
3952     <t>The following commands are used to control the connection to LinuxSampler.</t>
3953    
3954 schoenebeck 534 <section title="Register front-end for receiving event messages" anchor="SUBSCRIBE">
3955 schoenebeck 151 <t>The front-end can register itself to the LinuxSampler application to
3956     be informed about noteworthy events by sending this command:</t>
3957     <t>
3958     <list>
3959     <t>SUBSCRIBE &lt;event-id&gt;</t>
3960     </list>
3961     </t>
3962     <t>where &lt;event-id&gt; will be replaced by the respective event that
3963     client wants to subscribe to.</t>
3964    
3965     <t>Possible Answers:</t>
3966     <t>
3967     <list>
3968     <t>"OK" -
3969     <list>
3970     <t>on success</t>
3971     </list>
3972     </t>
3973     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
3974     <list>
3975     <t>if registration succeeded, but there are noteworthy
3976     issue(s) related, providing an appropriate warning code and
3977     warning message</t>
3978     </list>
3979     </t>
3980     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
3981     <list>
3982     <t>in case it failed, providing an appropriate error code and
3983     error message</t>
3984     </list>
3985     </t>
3986     </list>
3987     </t>
3988     <t>Examples:</t>
3989     <t>
3990     <list>
3991     <t></t>
3992     </list>
3993     </t>
3994     </section>
3995    
3996 schoenebeck 534 <section title="Unregister front-end for not receiving event messages" anchor="UNSUBSCRIBE">
3997 schoenebeck 151 <t>The front-end can unregister itself if it doesn't want to receive event
3998     messages anymore by sending the following command:</t>
3999     <t>
4000     <list>
4001     <t>UNSUBSCRIBE &lt;event-id&gt;</t>
4002     </list>
4003     </t>
4004     <t>Where &lt;event-id&gt; will be replaced by the respective event that
4005     client doesn't want to receive anymore.</t>
4006    
4007     <t>Possible Answers:</t>
4008     <t>
4009     <list>
4010     <t>"OK" -
4011     <list>
4012     <t>on success</t>
4013     </list>
4014     </t>
4015     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
4016     <list>
4017     <t>if unregistration succeeded, but there are noteworthy
4018     issue(s) related, providing an appropriate warning code and
4019     warning message</t>
4020     </list>
4021     </t>
4022     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4023     <list>
4024     <t>in case it failed, providing an appropriate error code and
4025     error message</t>
4026     </list>
4027     </t>
4028     </list>
4029     </t>
4030     <t>Examples:</t>
4031     <t>
4032     <list>
4033     <t></t>
4034     </list>
4035     </t>
4036     </section>
4037    
4038 schoenebeck 534 <section title="Enable or disable echo of commands" anchor="SET ECHO">
4039 schoenebeck 151 <t>To enable or disable back sending of commands to the client the following command can be used:</t>
4040     <t>
4041     <list>
4042     <t>SET ECHO &lt;value&gt;</t>
4043     </list>
4044     </t>
4045     <t>Where &lt;value&gt; should be replaced either by "1" to enable echo mode
4046     or "0" to disable echo mode. When echo mode is enabled, all
4047     commands send to LinuxSampler will be immediately send back and
4048     after this echo the actual response to the command will be
4049     returned. Echo mode will only be altered for the client connection
4050     that issued the "SET ECHO" command, not globally for all client
4051     connections.</t>
4052    
4053     <t>Possible Answers:</t>
4054     <t>
4055     <list>
4056     <t>"OK" -
4057     <list>
4058     <t>usually</t>
4059     </list>
4060     </t>
4061     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4062     <list>
4063     <t>on syntax error, e.g. non boolean value</t>
4064     </list>
4065     </t>
4066     </list>
4067     </t>
4068     <t>Examples:</t>
4069     <t>
4070     <list>
4071     <t></t>
4072     </list>
4073     </t>
4074     </section>
4075    
4076 schoenebeck 534 <section title="Close client connection" anchor="QUIT">
4077 schoenebeck 151 <t>The client can close its network connection to LinuxSampler by sending the following command:</t>
4078     <t>
4079     <list>
4080     <t>QUIT</t>
4081     </list>
4082     </t>
4083     <t>This is probably more interesting for manual telnet connections to
4084     LinuxSampler than really useful for a front-end implementation.</t>
4085     </section>
4086     </section>
4087 schoenebeck 212
4088     <section title="Global commands">
4089     <t>The following commands have global impact on the sampler.</t>
4090    
4091 iliev 778 <section title="Current number of active voices" anchor="GET TOTAL_VOICE_COUNT">
4092     <t>The front-end can ask for the current number of active voices on
4093     the sampler by sending the following command:</t>
4094     <t>
4095     <list>
4096     <t>GET TOTAL_VOICE_COUNT</t>
4097     </list>
4098     </t>
4099    
4100     <t>Possible Answers:</t>
4101     <t>
4102     <list>
4103     <t>LinuxSampler will answer by returning the number of all active
4104     voices on the sampler.</t>
4105     </list>
4106     </t>
4107     </section>
4108    
4109     <section title="Maximum amount of active voices" anchor="GET TOTAL_VOICE_COUNT_MAX">
4110     <t>The front-end can ask for the maximum number of active voices
4111     by sending the following command:</t>
4112     <t>
4113     <list>
4114     <t>GET TOTAL_VOICE_COUNT_MAX</t>
4115     </list>
4116     </t>
4117    
4118     <t>Possible Answers:</t>
4119     <t>
4120     <list>
4121     <t>LinuxSampler will answer by returning the maximum number
4122     of active voices.</t>
4123     </list>
4124     </t>
4125     </section>
4126    
4127 iliev 1541 <section title="Current number of active disk streams" anchor="GET TOTAL_STREAM_COUNT">
4128     <t>The front-end can ask for the current number of active disk streams on
4129     the sampler by sending the following command:</t>
4130     <t>
4131     <list>
4132     <t>GET TOTAL_STREAM_COUNT</t>
4133     </list>
4134     </t>
4135    
4136     <t>Possible Answers:</t>
4137     <t>
4138     <list>
4139     <t>LinuxSampler will answer by returning the number of all active
4140     disk streams on the sampler.</t>
4141     </list>
4142     </t>
4143     </section>
4144    
4145 schoenebeck 534 <section title="Reset sampler" anchor="RESET">
4146 schoenebeck 212 <t>The front-end can reset the whole sampler by sending the following command:</t>
4147     <t>
4148     <list>
4149     <t>RESET</t>
4150     </list>
4151     </t>
4152    
4153     <t>Possible Answers:</t>
4154     <t>
4155     <list>
4156     <t>"OK" -
4157     <list>
4158     <t>always</t>
4159     </list>
4160     </t>
4161     </list>
4162     </t>
4163     <t>Examples:</t>
4164     <t>
4165     <list>
4166     <t></t>
4167     </list>
4168     </t>
4169     </section>
4170 schoenebeck 571
4171     <section title="General sampler informations" anchor="GET SERVER INFO">
4172     <t>The client can ask for general informations about the LinuxSampler
4173     instance by sending the following command:</t>
4174     <t>
4175     <list>
4176     <t>GET SERVER INFO</t>
4177     </list>
4178     </t>
4179     <t>Possible Answers:</t>
4180     <t>
4181     <list>
4182     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
4183 schoenebeck 573 Each answer line begins with the information category name
4184 schoenebeck 571 followed by a colon and then a space character &lt;SP&gt; and finally
4185     the info character string to that information category. At the
4186     moment the following categories are defined:
4187     </t>
4188     <t>
4189     <list>
4190     <t>DESCRIPTION -
4191     <list>
4192 schoenebeck 1389 <t>arbitrary textual description about the sampler
4193     (note that the character string may contain
4194 iliev 1387 <xref target="character_set">escape sequences</xref>)</t>
4195 schoenebeck 571 </list>
4196     </t>
4197     <t>VERSION -
4198     <list>
4199     <t>version of the sampler</t>
4200     </list>
4201     </t>
4202     <t>PROTOCOL_VERSION -
4203     <list>
4204     <t>version of the LSCP specification the sampler
4205     complies with (see <xref target="LSCP versioning" /> for details)</t>
4206     </list>
4207     </t>
4208 iliev 1161 <t>INSTRUMENTS_DB_SUPPORT -
4209     <list>
4210     <t>either yes or no, specifies whether the
4211     sampler is build with instruments database support.</t>
4212     </list>
4213     </t>
4214 schoenebeck 571 </list>
4215     </t>
4216     </list>
4217     </t>
4218     <t>The mentioned fields above don't have to be in particular order.
4219     Other fields might be added in future.</t>
4220     </section>
4221 schoenebeck 1005
4222     <section title="Getting global volume attenuation" anchor="GET VOLUME">
4223     <t>The client can ask for the current global sampler-wide volume
4224     attenuation by sending the following command:</t>
4225     <t>
4226     <list>
4227     <t>GET VOLUME</t>
4228     </list>
4229     </t>
4230     <t>Possible Answers:</t>
4231     <t>
4232     <list>
4233     <t>The sampler will always answer by returning the optional
4234     dotted floating point coefficient, reflecting the current
4235     global volume attenuation.
4236     </t>
4237     </list>
4238     </t>
4239     <t>Note: it is up to the respective sampler engine whether to obey
4240     that global volume parameter or not, but in general all engines SHOULD
4241     use this parameter.</t>
4242     </section>
4243    
4244     <section title="Setting global volume attenuation" anchor="SET VOLUME">
4245     <t>The client can alter the current global sampler-wide volume
4246     attenuation by sending the following command:</t>
4247     <t>
4248     <list>
4249     <t>SET VOLUME &lt;volume&gt;</t>
4250     </list>
4251     </t>
4252     <t>Where &lt;volume&gt; should be replaced by the optional dotted
4253     floating point value, reflecting the new global volume parameter.
4254     This value might usually be in the range between 0.0 and 1.0, that
4255     is for attenuating the overall volume.</t>
4256    
4257     <t>Possible Answers:</t>
4258     <t>
4259     <list>
4260     <t>"OK" -
4261     <list>
4262     <t>on success</t>
4263     </list>
4264     </t>
4265     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
4266     <list>
4267     <t>if the global volume was set, but there are noteworthy
4268     issue(s) related, providing an appropriate warning code and
4269     warning message</t>
4270     </list>
4271     </t>
4272     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4273     <list>
4274     <t>in case it failed, providing an appropriate error code and error message</t>
4275     </list>
4276     </t>
4277     </list>
4278     </t>
4279     </section>
4280 schoenebeck 1800
4281     <section title="Getting global voice limit" anchor="GET VOICES">
4282     <t>The client can ask for the current global sampler-wide limit
4283     for maximum voices by sending the following command:</t>
4284     <t>
4285     <list>
4286     <t>GET VOICES</t>
4287     </list>
4288     </t>
4289     <t>Possible Answers:</t>
4290     <t>
4291     <list>
4292     <t>LinuxSampler will answer by returning the number for
4293     the current limit of maximum voices.</t>
4294     </list>
4295     </t>
4296    
4297     <t>The voice limit setting defines how many voices should maximum
4298     be processed by the sampler at the same time. If the user
4299     triggers new notes which would exceed that voice limit, the
4300     sampler engine will react by stealing old voices for those
4301     newly triggered notes. Note that the amount of voices triggered
4302     by a new note can be larger than one and is dependent to the
4303     respective instrument and probably further criterias.</t>
4304     </section>
4305    
4306     <section title="Setting global voice limit" anchor="SET VOICES">
4307     <t>The client can alter the current global sampler-wide limit
4308     for maximum voices by sending the following command:</t>
4309     <t>
4310     <list>
4311     <t>SET VOICES &lt;max-voices&gt;</t>
4312     </list>
4313     </t>
4314     <t>Where &lt;max-voices&gt; should be replaced by the integer
4315     value, reflecting the new global amount limit of maximum voices.
4316     This value has to be larger than 0.</t>
4317    
4318     <t>Possible Answers:</t>
4319     <t>
4320     <list>
4321     <t>"OK" -
4322     <list>
4323     <t>on success</t>
4324     </list>
4325     </t>
4326     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
4327     <list>
4328     <t>if the voice limit was set, but there are noteworthy
4329     issue(s) related, providing an appropriate warning code and
4330     warning message</t>
4331     </list>
4332     </t>
4333     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4334     <list>
4335     <t>in case it failed, providing an appropriate error code and error message</t>
4336     </list>
4337     </t>
4338     </list>
4339     </t>
4340    
4341     <t>Note: the given value will be passed to all sampler engine instances.
4342     The total amount of maximum voices on the running system might thus
4343     be as big as the given value multiplied by the current amount of engine
4344     instances.</t>
4345    
4346     <t>Caution: when adjusting the voice limit, you SHOULD also
4347     adjust the disk stream limit respectively and vice versa.</t>
4348     </section>
4349    
4350     <section title="Getting global disk stream limit" anchor="GET STREAMS">
4351     <t>The client can ask for the current global sampler-wide limit
4352     for maximum disk streams by sending the following command:</t>
4353     <t>
4354     <list>
4355     <t>GET STREAMS</t>
4356     </list>
4357     </t>
4358     <t>Possible Answers:</t>
4359     <t>
4360     <list>
4361     <t>LinuxSampler will answer by returning the number for
4362     the current limit of maximum disk streams.</t>
4363     </list>
4364     </t>
4365    
4366     <t>The disk stream limit setting defines how many disk streams should
4367     maximum be processed by a sampler engine at the same time. The
4368     higher this value, the more memory (RAM) will be occupied, since
4369     every disk streams allocates a certain buffer size for being able
4370     to perform its streaming operations.</t>
4371     </section>
4372    
4373     <section title="Setting global disk stream limit" anchor="SET STREAMS">
4374     <t>The client can alter the current global sampler-wide limit
4375     for maximum disk streams by sending the following command:</t>
4376     <t>
4377     <list>
4378     <t>SET STREAMS &lt;max-streams&gt;</t>
4379     </list>
4380     </t>
4381     <t>Where &lt;max-streams&gt; should be replaced by the integer
4382     value, reflecting the new global amount limit of maximum disk streams.
4383     This value has to be positive.</t>
4384    
4385     <t>Possible Answers:</t>
4386     <t>
4387     <list>
4388     <t>"OK" -
4389     <list>
4390     <t>on success</t>
4391     </list>
4392     </t>
4393     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
4394     <list>
4395     <t>if the disk stream limit was set, but there are noteworthy
4396     issue(s) related, providing an appropriate warning code and
4397     warning message</t>
4398     </list>
4399     </t>
4400     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4401     <list>
4402     <t>in case it failed, providing an appropriate error code and error message</t>
4403     </list>
4404     </t>
4405     </list>
4406     </t>
4407    
4408     <t>Note: the given value will be passed to all sampler engine instances.
4409     The total amount of maximum disk streams on the running system might
4410     thus be as big as the given value multiplied by the current amount of
4411     engine instances.</t>
4412    
4413     <t>Caution: when adjusting the disk stream limit, you SHOULD also
4414     adjust the voice limit respectively and vice versa.</t>
4415     </section>
4416    
4417 schoenebeck 212 </section>
4418 schoenebeck 944
4419    
4420 schoenebeck 973 <section title="MIDI Instrument Mapping" anchor="MIDI Instrument Mapping">
4421 schoenebeck 944 <t>The MIDI protocol provides a way to switch between instruments
4422     by sending so called MIDI bank select and MIDI program change
4423     messages which are essentially just numbers. The following commands
4424     allow to actually map arbitrary MIDI bank select / program change
4425     numbers with real instruments.</t>
4426 schoenebeck 973 <t>The sampler allows to manage an arbitrary amount of MIDI
4427     instrument maps which define which instrument to load on
4428     which MIDI program change message.</t>
4429     <t>By default, that is when the sampler is launched, there is no
4430     map, thus the sampler will simply ignore all program change
4431     messages. The front-end has to explicitly create at least one
4432     map, add entries to the map and tell the respective sampler
4433     channel(s) which MIDI instrument map to use, so the sampler
4434     knows how to react on a given program change message on the
4435     respective sampler channel, that is by switching to the
4436     respectively defined engine type and loading the respective
4437     instrument. See command
4438     <xref target="SET CHANNEL MIDI_INSTRUMENT_MAP">"SET CHANNEL MIDI_INSTRUMENT_MAP"</xref>
4439     for how to assign a MIDI instrument map to a sampler channel.</t>
4440 schoenebeck 944 <t>Also note per MIDI specification a bank select message does not
4441     cause to switch to another instrument. Instead when receiving a
4442     bank select message the bank value will be stored and a subsequent
4443     program change message (which may occur at any time) will finally
4444     cause the sampler to switch to the respective instrument as
4445     reflected by the current MIDI instrument map.</t>
4446    
4447 schoenebeck 1389 <section title="Create a new MIDI instrument map" anchor="ADD MIDI_INSTRUMENT_MAP">
4448 schoenebeck 973 <t>The front-end can add a new MIDI instrument map by sending
4449     the following command:</t>
4450     <t>
4451     <list>
4452     <t>ADD MIDI_INSTRUMENT_MAP [&lt;name&gt;]</t>
4453     </list>
4454     </t>
4455     <t>Where &lt;name&gt; is an optional argument allowing to
4456     assign a custom name to the new map. MIDI instrument Map
4457 schoenebeck 1389 names do not have to be unique, but MUST be encapsulated
4458     into apostrophes and support escape sequences as described
4459     in chapter "<xref target="character_set">Character Set and Escape Sequences</xref>".
4460     </t>
4461 schoenebeck 973
4462     <t>Possible Answers:</t>
4463     <t>
4464     <list>
4465     <t>"OK[&lt;map&gt;]" -
4466     <list>
4467     <t>in case a new MIDI instrument map could
4468     be added, where &lt;map&gt; reflects the
4469     unique ID of the newly created MIDI
4470     instrument map</t>
4471     </list>
4472     </t>
4473     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4474     <list>
4475     <t>when a new map could not be created, which
4476     might never occur in practice</t>
4477     </list>
4478     </t>
4479     </list>
4480     </t>
4481    
4482     <t>Examples:</t>
4483     <t>
4484     <list>
4485     <t>C: "ADD MIDI_INSTRUMENT_MAP 'Standard Map'"</t>
4486     <t>S: "OK[0]"</t>
4487     </list>
4488     </t>
4489     <t>
4490     <list>
4491     <t>C: "ADD MIDI_INSTRUMENT_MAP 'Standard Drumkit'"</t>
4492     <t>S: "OK[1]"</t>
4493     </list>
4494     </t>
4495     <t>
4496     <list>
4497     <t>C: "ADD MIDI_INSTRUMENT_MAP"</t>
4498     <t>S: "OK[5]"</t>
4499     </list>
4500     </t>
4501     </section>
4502    
4503     <section title="Delete one particular or all MIDI instrument maps" anchor="REMOVE MIDI_INSTRUMENT_MAP">
4504     <t>The front-end can delete a particular MIDI instrument map
4505     by sending the following command:</t>
4506     <t>
4507     <list>
4508     <t>REMOVE MIDI_INSTRUMENT_MAP &lt;map&gt;</t>
4509     </list>
4510     </t>
4511     <t>Where &lt;map&gt; reflects the unique ID of the map to delete
4512     as returned by the <xref target="LIST MIDI_INSTRUMENT_MAPS">"LIST MIDI_INSTRUMENT_MAPS"</xref>
4513     command.</t>
4514     <t>The front-end can delete all MIDI instrument maps by
4515     sending the following command:</t>
4516     <t>
4517     <list>
4518     <t>REMOVE MIDI_INSTRUMENT_MAP ALL</t>
4519     </list>
4520     </t>
4521    
4522     <t>Possible Answers:</t>
4523     <t>
4524     <list>
4525     <t>"OK" -
4526     <list>
4527     <t>in case the map(s) could be deleted</t>
4528     </list>
4529     </t>
4530     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4531     <list>
4532     <t>when the given map does not exist</t>
4533     </list>
4534     </t>
4535     </list>
4536     </t>
4537    
4538     <t>Examples:</t>
4539     <t>
4540     <list>
4541     <t>C: "REMOVE MIDI_INSTRUMENT_MAP 0"</t>
4542     <t>S: "OK"</t>
4543     </list>
4544     </t>
4545     <t>
4546     <list>
4547     <t>C: "REMOVE MIDI_INSTRUMENT_MAP ALL"</t>
4548     <t>S: "OK"</t>
4549     </list>
4550     </t>
4551     </section>
4552    
4553     <section title="Get amount of existing MIDI instrument maps" anchor="GET MIDI_INSTRUMENT_MAPS">
4554     <t>The front-end can retrieve the current amount of MIDI
4555     instrument maps by sending the following command:</t>
4556     <t>
4557     <list>
4558     <t>GET MIDI_INSTRUMENT_MAPS</t>
4559     </list>
4560     </t>
4561    
4562     <t>Possible Answers:</t>
4563     <t>
4564     <list>
4565     <t>The sampler will answer by returning the current
4566     number of MIDI instrument maps.</t>
4567     </list>
4568     </t>
4569    
4570     <t>Example:</t>
4571     <t>
4572     <list>
4573     <t>C: "GET MIDI_INSTRUMENT_MAPS"</t>
4574     <t>S: "2"</t>
4575     </list>
4576     </t>
4577     </section>
4578    
4579     <section title="Getting all created MIDI instrument maps" anchor="LIST MIDI_INSTRUMENT_MAPS">
4580     <t>The number of MIDI instrument maps can change on runtime. To get the
4581     current list of MIDI instrument maps, the front-end can send the
4582     following command:</t>
4583     <t>
4584     <list>
4585     <t>LIST MIDI_INSTRUMENT_MAPS</t>
4586     </list>
4587     </t>
4588     <t>Possible Answers:</t>
4589     <t>
4590     <list>
4591     <t>The sampler will answer by returning a comma separated list
4592     with all MIDI instrument maps' numerical IDs.</t>
4593     </list>
4594     </t>
4595     <t>Example:</t>
4596     <t>
4597     <list>
4598     <t>C: "LIST MIDI_INSTRUMENT_MAPS"</t>
4599     <t>S: "0,1,5,12"</t>
4600     </list>
4601     </t>
4602     </section>
4603    
4604     <section title="Getting MIDI instrument map information" anchor="GET MIDI_INSTRUMENT_MAP INFO">
4605     <t>The front-end can ask for the current settings of a MIDI
4606     instrument map by sending the following command:</t>
4607     <t>
4608     <list>
4609     <t>GET MIDI_INSTRUMENT_MAP INFO &lt;map&gt;</t>
4610     </list>
4611     </t>
4612     <t>Where &lt;map&gt; is the numerical ID of the map the
4613     front-end is interested in as returned by the
4614     <xref target="LIST MIDI_INSTRUMENT_MAPS">"LIST MIDI_INSTRUMENT_MAPS"</xref>
4615     command.</t>
4616    
4617     <t>Possible Answers:</t>
4618     <t>
4619     <list>
4620     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
4621     Each answer line begins with the settings category name
4622     followed by a colon and then a space character &lt;SP&gt; and finally
4623     the info character string to that setting category. At the
4624     moment the following categories are defined:</t>
4625    
4626     <t>
4627     <list>
4628     <t>NAME -
4629     <list>
4630     <t>custom name of the given map,
4631 schoenebeck 1399 which does not have to be unique
4632     (note that this character string may contain
4633     <xref target="character_set">escape sequences</xref>)</t>
4634 schoenebeck 973 </list>
4635     </t>
4636 iliev 1135 <t>DEFAULT -
4637     <list>
4638     <t>either true or false,
4639     defines whether this map is the default map</t>
4640     </list>
4641     </t>
4642 schoenebeck 973 </list>
4643     </t>
4644     </list>
4645     </t>
4646     <t>The mentioned fields above don't have to be in particular order.</t>
4647    
4648     <t>Example:</t>
4649     <t>
4650     <list>
4651     <t>C: "GET MIDI_INSTRUMENT_MAP INFO 0"</t>
4652     <t>S: "NAME: Standard Map"</t>
4653 iliev 1136 <t>&nbsp;&nbsp;&nbsp;"DEFAULT: true"</t>
4654 schoenebeck 973 <t>&nbsp;&nbsp;&nbsp;"."</t>
4655     </list>
4656     </t>
4657     </section>
4658    
4659     <section title="Renaming a MIDI instrument map" anchor="SET MIDI_INSTRUMENT_MAP NAME">
4660     <t>The front-end can alter the custom name of a MIDI
4661     instrument map by sending the following command:</t>
4662     <t>
4663     <list>
4664     <t>SET MIDI_INSTRUMENT_MAP NAME &lt;map&gt; &lt;name&gt;</t>
4665     </list>
4666     </t>
4667     <t>Where &lt;map&gt; is the numerical ID of the map and
4668     &lt;name&gt; the new custom name of the map, which does not
4669 schoenebeck 1389 have to be unique (name MUST be encapsulated into apostrophes
4670     and supports escape sequences as described in chapter
4671     "<xref target="character_set">Character Set and Escape Sequences</xref>").
4672     </t>
4673 schoenebeck 973
4674     <t>Possible Answers:</t>
4675     <t>
4676     <list>
4677     <t>"OK" -
4678     <list>
4679     <t>on success</t>
4680     </list>
4681     </t>
4682     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4683     <list>
4684     <t>in case the given map does not exist</t>
4685     </list>
4686     </t>
4687     </list>
4688     </t>
4689    
4690     <t>Example:</t>
4691     <t>
4692     <list>
4693     <t>C: "SET MIDI_INSTRUMENT_MAP NAME 0 'Foo instruments'"</t>
4694     <t>S: "OK"</t>
4695     </list>
4696     </t>
4697     </section>
4698    
4699 schoenebeck 944 <section title="Create or replace a MIDI instrument map entry" anchor="MAP MIDI_INSTRUMENT">
4700     <t>The front-end can create a new or replace an existing entry
4701 schoenebeck 973 in a sampler's MIDI instrument map by sending the following
4702 schoenebeck 944 command:</t>
4703     <t>
4704     <list>
4705 schoenebeck 1047 <t>MAP MIDI_INSTRUMENT [NON_MODAL] &lt;map&gt;
4706 schoenebeck 973 &lt;midi_bank&gt; &lt;midi_prog&gt; &lt;engine_name&gt;
4707 schoenebeck 944 &lt;filename&gt; &lt;instrument_index&gt; &lt;volume_value&gt;
4708     [&lt;instr_load_mode&gt;] [&lt;name&gt;]</t>
4709     </list>
4710     </t>
4711 schoenebeck 973 <t>Where &lt;map&gt; is the numeric ID of the map to alter,
4712     &lt;midi_bank&gt; is an integer value between
4713     0..16383 reflecting the MIDI bank select index,
4714     &lt;midi_prog&gt; an
4715 schoenebeck 944 integer value between 0..127 reflecting the MIDI program change
4716     index, &lt;engine_name&gt; a sampler engine name as returned by
4717     the <xref target="LIST AVAILABLE_ENGINES">"LIST AVAILABLE_ENGINES"</xref>
4718     command (not encapsulated into apostrophes), &lt;filename&gt; the name
4719 schoenebeck 1249 of the instrument's file to be deployed (encapsulated into apostrophes,
4720     supporting escape sequences as described in chapter
4721     "<xref target="character_set">Character Set and Escape Sequences</xref>"),
4722 schoenebeck 973 &lt;instrument_index&gt; the index (integer value) of the instrument
4723 schoenebeck 944 within the given file, &lt;volume_value&gt; reflects the master
4724     volume of the instrument as optionally dotted number (where a
4725 schoenebeck 1026 value &lt; 1.0 means attenuation and a value > 1.0 means
4726 schoenebeck 944 amplification). This parameter easily allows to adjust the
4727     volume of all intruments within a custom instrument map
4728     without having to adjust their instrument files. The
4729     OPTIONAL &lt;instr_load_mode&gt; argument defines the life
4730     time of the instrument, that is when the instrument should
4731     be loaded, when freed and has exactly the following
4732     possibilities:</t>
4733     <t>
4734     <list>
4735     <t>"ON_DEMAND" -
4736     <list>
4737     <t>The instrument will be loaded when needed,
4738     that is when demanded by at least one sampler
4739     channel. It will immediately be freed from memory
4740     when not needed by any sampler channel anymore.</t>
4741     </list>
4742     </t>
4743     <t>"ON_DEMAND_HOLD" -
4744     <list>
4745     <t>The instrument will be loaded when needed,
4746     that is when demanded by at least one sampler
4747     channel. It will be kept in memory even when
4748     not needed by any sampler channel anymore.
4749     Instruments with this mode are only freed
4750     when the sampler is reset or all mapping
4751     entries with this mode (and respective
4752     instrument) are explicitly changed to
4753     "ON_DEMAND" and no sampler channel is using
4754     the instrument anymore.</t>
4755     </list>
4756     </t>
4757     <t>"PERSISTENT" -
4758     <list>
4759     <t>The instrument will immediately be loaded
4760 schoenebeck 1047 into memory when this mapping
4761 schoenebeck 944 command is sent and the instrument is kept all
4762     the time. Instruments with this mode are
4763     only freed when the sampler is reset or all
4764     mapping entries with this mode (and
4765     respective instrument) are explicitly
4766     changed to "ON_DEMAND" and no sampler
4767     channel is using the instrument anymore.</t>
4768     </list>
4769     </t>
4770     <t>not supplied -
4771     <list>
4772     <t>In case there is no &lt;instr_load_mode&gt;
4773     argument given, it will be up to the
4774     InstrumentManager to decide which mode to use.
4775     Usually it will use "ON_DEMAND" if an entry
4776     for the given instrument does not exist in
4777     the InstrumentManager's list yet, otherwise
4778     if an entry already exists, it will simply
4779     stick with the mode currently reflected by
4780     the already existing entry, that is it will
4781     not change the mode.</t>
4782     </list>
4783     </t>
4784     </list>
4785     </t>
4786     <t>
4787     The &lt;instr_load_mode&gt; argument thus allows to define an
4788     appropriate strategy (low memory consumption vs. fast
4789     instrument switching) for each instrument individually. Note, the
4790     following restrictions apply to this argument: "ON_DEMAND_HOLD" and
4791     "PERSISTENT" have to be supported by the respective sampler engine
4792     (which is technically the case when the engine provides an
4793     InstrumentManager for its format). If this is not the case the
4794     argument will automatically fall back to the default value
4795     "ON_DEMAND". Also the load mode of one instrument may
4796     automatically change the laod mode of other instrument(s), i.e.
4797     because the instruments are part of the same file and the
4798     engine does not allow a way to manage load modes for them
4799     individually. Due to this, in case the frontend shows the
4800     load modes of entries, the frontend should retrieve the actual
4801     mode by i.e. sending
4802     <xref target="GET MIDI_INSTRUMENT INFO">"GET MIDI_INSTRUMENT INFO"</xref>
4803 iliev 1387 command(s). Finally the OPTIONAL &lt;name&gt; argument allows to set a custom name
4804     (encapsulated into apostrophes, supporting escape sequences as described in chapter
4805     "<xref target="character_set">Character Set and Escape Sequences</xref>") for the
4806     mapping entry, useful for frontends for displaying an appropriate name for
4807 schoenebeck 944 mapped instruments (using
4808     <xref target="GET MIDI_INSTRUMENT INFO">"GET MIDI_INSTRUMENT INFO"</xref>).
4809     </t>
4810     <t>
4811 schoenebeck 1047 By default, "MAP MIDI_INSTRUMENT" commands block until the mapping is
4812     completely established in the sampler. The OPTIONAL "NON_MODAL" argument
4813     however causes the respective "MAP MIDI_INSTRUMENT" command to return
4814     immediately, that is to let the sampler establish the mapping in the
4815     background. So this argument might be especially useful for mappings with
4816     a "PERSISTENT" type, because these have to load the respective instruments
4817     immediately and might thus block for a very long time. It is recommended
4818     however to use the OPTIONAL "NON_MODAL" argument only if really necessary,
4819     because it has the following drawbacks: as "NON_MODAL" instructions return
4820     immediately, they may not necessarily return an error i.e. when the given
4821     instrument file turns out to be corrupt, beside that subsequent commands
4822     in a LSCP instruction sequence might fail, because mandatory mappings are
4823     not yet completed.
4824 schoenebeck 944 </t>
4825    
4826     <t>Possible Answers:</t>
4827     <t>
4828     <list>
4829     <t>"OK" -
4830     <list>
4831     <t>usually</t>
4832     </list>
4833     </t>
4834     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4835     <list>
4836 schoenebeck 973 <t>when the given map or engine does not exist or a value
4837 schoenebeck 944 is out of range</t>
4838     </list>
4839     </t>
4840     </list>
4841     </t>
4842    
4843     <t>Examples:</t>
4844     <t>
4845     <list>
4846 schoenebeck 973 <t>C: "MAP MIDI_INSTRUMENT 0 3 0 gig '/usr/share/Steinway D.gig' 0 0.8 PERSISTENT"</t>
4847 schoenebeck 944 <t>S: "OK"</t>
4848     </list>
4849     </t>
4850     <t>
4851     <list>
4852 schoenebeck 973 <t>C: "MAP MIDI_INSTRUMENT 0 4 50 gig '/home/john/foostrings.gig' 7 1.0"</t>
4853 schoenebeck 944 <t>S: "OK"</t>
4854     </list>
4855     </t>
4856     <t>
4857     <list>
4858     <t>C: "MAP MIDI_INSTRUMENT 0 0 0 gig '/usr/share/piano.gig' 0 1.0 'Normal Piano'"</t>
4859     <t>S: "OK"</t>
4860 schoenebeck 973 <t>C: "MAP MIDI_INSTRUMENT 0 1 0 gig '/usr/share/piano.gig' 0 0.25 'Silent Piano'"</t>
4861 schoenebeck 944 <t>S: "OK"</t>
4862     </list>
4863     </t>
4864     <t>
4865     <list>
4866 schoenebeck 1047 <t>C: "MAP MIDI_INSTRUMENT NON_MODAL 1 8 120 gig '/home/joe/foodrums.gig' 0 1.0 PERSISTENT 'Foo Drumkit'"</t>
4867 schoenebeck 944 <t>S: "OK"</t>
4868     </list>
4869     </t>
4870     </section>
4871    
4872     <section title="Getting ammount of MIDI instrument map entries" anchor="GET MIDI_INSTRUMENTS">
4873 schoenebeck 973 <t>The front-end can query the amount of currently existing
4874     entries in a MIDI instrument map by sending the following
4875 schoenebeck 944 command:</t>
4876     <t>
4877     <list>
4878 schoenebeck 973 <t>GET MIDI_INSTRUMENTS &lt;map&gt;</t>
4879 schoenebeck 944 </list>
4880     </t>
4881 schoenebeck 973 <t>The front-end can query the amount of currently existing
4882     entries in all MIDI instrument maps by sending the following
4883     command:</t>
4884     <t>
4885     <list>
4886     <t>GET MIDI_INSTRUMENTS ALL</t>
4887     </list>
4888     </t>
4889 schoenebeck 944 <t>Possible Answers:</t>
4890     <t>
4891     <list>
4892 schoenebeck 973 <t>The sampler will answer by sending the current number of
4893     entries in the MIDI instrument map(s).</t>
4894 schoenebeck 944 </list>
4895     </t>
4896    
4897     <t>Example:</t>
4898     <t>
4899     <list>
4900 schoenebeck 973 <t>C: "GET MIDI_INSTRUMENTS 0"</t>
4901     <t>S: "234"</t>
4902 schoenebeck 944 </list>
4903     </t>
4904 schoenebeck 973 <t>
4905     <list>
4906     <t>C: "GET MIDI_INSTRUMENTS ALL"</t>
4907     <t>S: "954"</t>
4908     </list>
4909     </t>
4910 schoenebeck 944 </section>
4911    
4912 schoenebeck 973 <section title="Getting indeces of all entries of a MIDI instrument map" anchor="LIST MIDI_INSTRUMENTS">
4913     <t>The front-end can query a list of all currently existing
4914     entries in a certain MIDI instrument map by sending the following
4915     command:</t>
4916 schoenebeck 944 <t>
4917     <list>
4918 schoenebeck 973 <t>LIST MIDI_INSTRUMENTS &lt;map&gt;</t>
4919 schoenebeck 944 </list>
4920     </t>
4921 schoenebeck 973 <t>Where &lt;map&gt; is the numeric ID of the MIDI instrument map.</t>
4922     <t>The front-end can query a list of all currently existing
4923     entries of all MIDI instrument maps by sending the following
4924     command:</t>
4925     <t>
4926     <list>
4927     <t>LIST MIDI_INSTRUMENTS ALL</t>
4928     </list>
4929     </t>
4930    
4931 schoenebeck 944 <t>Possible Answers:</t>
4932     <t>
4933     <list>
4934 schoenebeck 973 <t>The sampler will answer by sending a comma separated
4935     list of map ID - MIDI bank - MIDI program triples, where
4936     each triple is encapsulated into curly braces. The
4937     list is returned in one single line. Each triple
4938     just reflects the key of the respective map entry,
4939     thus subsequent
4940 schoenebeck 944 <xref target="GET MIDI_INSTRUMENT INFO">"GET MIDI_INSTRUMENT INFO"</xref>
4941     command(s) are necessary to retrieve detailed informations
4942     about each entry.</t>
4943     </list>
4944     </t>
4945    
4946     <t>Example:</t>
4947     <t>
4948     <list>
4949 schoenebeck 973 <t>C: "LIST MIDI_INSTRUMENTS 0"</t>
4950     <t>S: "{0,0,0},{0,0,1},{0,0,3},{0,1,4},{1,127,127}"</t>
4951 schoenebeck 944 </list>
4952     </t>
4953     </section>
4954    
4955     <section title="Remove an entry from the MIDI instrument map" anchor="UNMAP MIDI_INSTRUMENT">
4956 schoenebeck 973 <t>The front-end can delete an entry from a MIDI instrument
4957 schoenebeck 944 map by sending the following command:</t>
4958     <t>
4959     <list>
4960 schoenebeck 973 <t>UNMAP MIDI_INSTRUMENT &lt;map&gt; &lt;midi_bank&gt; &lt;midi_prog&gt;</t>
4961 schoenebeck 944 </list>
4962     </t>
4963     <t>
4964 schoenebeck 973 Where &lt;map&gt; is the numeric ID of the MIDI instrument map,
4965     &lt;midi_bank&gt; is an integer value between 0..16383
4966     reflecting the MIDI bank value and
4967     &lt;midi_prog&gt; an integer value between
4968     0..127 reflecting the MIDI program value of the map's entrie's key
4969 schoenebeck 944 index triple.
4970     </t>
4971    
4972     <t>Possible Answers:</t>
4973     <t>
4974     <list>
4975     <t>"OK" -
4976     <list>
4977     <t>usually</t>
4978     </list>
4979     </t>
4980     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
4981     <list>
4982     <t>when index out of bounds</t>
4983     </list>
4984     </t>
4985     </list>
4986     </t>
4987    
4988     <t>Example:</t>
4989     <t>
4990     <list>
4991 schoenebeck 973 <t>C: "UNMAP MIDI_INSTRUMENT 0 2 127"</t>
4992 schoenebeck 944 <t>S: "OK"</t>
4993     </list>
4994     </t>
4995     </section>
4996    
4997     <section title="Get current settings of MIDI instrument map entry" anchor="GET MIDI_INSTRUMENT INFO">
4998     <t>The front-end can retrieve the current settings of a certain
4999     instrument map entry by sending the following command:</t>
5000     <t>
5001     <list>
5002 schoenebeck 973 <t>GET MIDI_INSTRUMENT INFO &lt;map&gt; &lt;midi_bank&gt; &lt;midi_prog&gt;</t>
5003 schoenebeck 944 </list>
5004     </t>
5005     <t>
5006 schoenebeck 973 Where &lt;map&gt; is the numeric ID of the MIDI instrument map,
5007     &lt;midi_bank&gt; is an integer value between 0..16383
5008     reflecting the MIDI bank value, &lt;midi_bank&gt;
5009     and &lt;midi_prog&gt; an integer value between
5010     0..127 reflecting the MIDI program value of the map's entrie's key
5011 schoenebeck 944 index triple.
5012     </t>
5013    
5014     <t>Possible Answers:</t>
5015     <t>
5016     <list>
5017     <t>LinuxSampler will answer by sending a &lt;CRLF&gt;
5018     separated list. Each answer line begins with the
5019     information category name followed by a colon and then
5020     a space character &lt;SP&gt; and finally the info
5021     character string to that info category. At the moment
5022     the following categories are defined:</t>
5023     <t>"NAME" -
5024     <list>
5025     <t>Name for this MIDI instrument map entry (if defined).
5026     This name shall be used by frontends for displaying a
5027     name for this mapped instrument. It can be set and
5028     changed with the
5029     <xref target="MAP MIDI_INSTRUMENT">"MAP MIDI_INSTRUMENT"</xref>
5030 schoenebeck 1399 command and does not have to be unique.
5031     (note that this character string may contain
5032     <xref target="character_set">escape sequences</xref>)</t>
5033 schoenebeck 944 </list>
5034     </t>
5035     <t>"ENGINE_NAME" -
5036     <list>
5037     <t>Name of the engine to be deployed for this
5038     instrument.</t>
5039     </list>
5040     </t>
5041     <t>"INSTRUMENT_FILE" -
5042     <list>
5043 schoenebeck 1399 <t>File name of the instrument
5044     (note that this path may contain
5045     <xref target="character_set">escape sequences</xref>).</t>
5046 schoenebeck 944 </list>
5047     </t>
5048     <t>"INSTRUMENT_NR" -
5049     <list>
5050     <t>Index of the instrument within the file.</t>
5051     </list>
5052     </t>
5053     <t>"INSTRUMENT_NAME" -
5054     <list>
5055     <t>Name of the loaded instrument as reflected by its file.
5056     In contrast to the "NAME" field, the "INSTRUMENT_NAME" field
5057 schoenebeck 1399 cannot be changed (note that this character string may contain
5058     <xref target="character_set">escape sequences</xref>).</t>
5059 schoenebeck 944 </list>
5060     </t>
5061     <t>"LOAD_MODE" -
5062     <list>
5063     <t>Life time of instrument
5064     (see <xref target="MAP MIDI_INSTRUMENT">"MAP MIDI_INSTRUMENT"</xref> for details about this setting).</t>
5065     </list>
5066     </t>
5067     <t>"VOLUME" -
5068     <list>
5069     <t>master volume of the instrument as optionally
5070 schoenebeck 1026 dotted number (where a value &lt; 1.0 means attenuation
5071 schoenebeck 944 and a value > 1.0 means amplification)</t>
5072     </list>
5073     </t>
5074     <t>The mentioned fields above don't have to be in particular order.</t>
5075     </list>
5076     </t>
5077    
5078     <t>Example:</t>
5079     <t>
5080     <list>
5081 schoenebeck 973 <t>C: "GET MIDI_INSTRUMENT INFO 1 45 120"</t>
5082 schoenebeck 944 <t>S: "NAME: Drums for Foo Song"</t>
5083     <t>&nbsp;&nbsp;&nbsp;"ENGINE_NAME: GigEngine"</t>
5084     <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_FILE: /usr/share/joesdrumkit.gig"</t>
5085     <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_NR: 0"</t>
5086     <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_NAME: Joe's Drumkit"</t>
5087     <t>&nbsp;&nbsp;&nbsp;"LOAD_MODE: PERSISTENT"</t>
5088     <t>&nbsp;&nbsp;&nbsp;"VOLUME: 1.0"</t>
5089     <t>&nbsp;&nbsp;&nbsp;"."</t>
5090     </list>
5091     </t>
5092     </section>
5093    
5094     <section title="Clear MIDI instrument map" anchor="CLEAR MIDI_INSTRUMENTS">
5095 schoenebeck 973 <t>The front-end can clear a whole MIDI instrument map, that
5096     is delete all its entries by sending the following command:</t>
5097 schoenebeck 944 <t>
5098     <list>
5099 schoenebeck 973 <t>CLEAR MIDI_INSTRUMENTS &lt;map&gt;</t>
5100 schoenebeck 944 </list>
5101     </t>
5102 schoenebeck 973 <t>Where &lt;map&gt; is the numeric ID of the map to clear.</t>
5103     <t>The front-end can clear all MIDI instrument maps, that
5104     is delete all entries of all maps by sending the following
5105     command:</t>
5106     <t>
5107     <list>
5108     <t>CLEAR MIDI_INSTRUMENTS ALL</t>
5109     </list>
5110     </t>
5111     <t>The command "CLEAR MIDI_INSTRUMENTS ALL" does not delete the
5112     maps, only their entries, thus the map's settings like
5113     custom name will be preservevd.</t>
5114 schoenebeck 944
5115     <t>Possible Answers:</t>
5116     <t>
5117     <list>
5118     <t>"OK" -
5119     <list>
5120     <t>always</t>
5121     </list>
5122     </t>
5123     </list>
5124     </t>
5125    
5126 schoenebeck 973 <t>Examples:</t>
5127 schoenebeck 944 <t>
5128     <list>
5129 schoenebeck 973 <t>C: "CLEAR MIDI_INSTRUMENTS 0"</t>
5130 schoenebeck 944 <t>S: "OK"</t>
5131     </list>
5132     </t>
5133 schoenebeck 973 <t>
5134     <list>
5135     <t>C: "CLEAR MIDI_INSTRUMENTS ALL"</t>
5136     <t>S: "OK"</t>
5137     </list>
5138     </t>
5139 schoenebeck 944 </section>
5140     </section>
5141    
5142 iliev 1161
5143     <section title="Managing Instruments Database" anchor="Managing Instruments Database">
5144     <t>The following commands describe how to use and manage
5145 schoenebeck 1362 the instruments database.</t>
5146 iliev 1353 <t>Notice:</t>
5147     <t>
5148     <list>
5149 schoenebeck 1362 <t>All command arguments representing a path or
5150 iliev 1353 instrument/directory name support escape sequences as described in chapter
5151     "<xref target="character_set">Character Set and Escape Sequences</xref>".
5152     </t>
5153     <t>All occurrences of a forward slash in instrument and directory
5154     names are escaped with its hex (\x2f) or octal (\057) escape sequence.
5155     </t>
5156     </list>
5157     </t>
5158 iliev 1161
5159     <section title="Creating a new instrument directory" anchor="ADD DB_INSTRUMENT_DIRECTORY">
5160     <t>The front-end can add a new instrument directory to the
5161     instruments database by sending the following command:</t>
5162     <t>
5163     <list>
5164     <t>ADD DB_INSTRUMENT_DIRECTORY &lt;dir&gt;</t>
5165     </list>
5166     </t>
5167     <t>Where &lt;dir&gt; is the absolute path name of the directory
5168     to be created (encapsulated into apostrophes).</t>
5169    
5170     <t>Possible Answers:</t>
5171     <t>
5172     <list>
5173     <t>"OK" -
5174     <list>
5175     <t>on success</t>
5176     </list>
5177     </t>
5178     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5179     <list>
5180     <t>when the directory could not be created, which
5181     can happen if the directory already exists or the
5182     name contains not allowed symbols</t>
5183     </list>
5184     </t>
5185     </list>
5186     </t>
5187    
5188     <t>Examples:</t>
5189     <t>
5190     <list>
5191     <t>C: "ADD DB_INSTRUMENT_DIRECTORY '/Piano Collection'"</t>
5192     <t>S: "OK"</t>
5193     </list>
5194     </t>
5195     </section>
5196    
5197     <section title="Deleting an instrument directory" anchor="REMOVE DB_INSTRUMENT_DIRECTORY">
5198     <t>The front-end can delete a particular instrument directory
5199     from the instruments database by sending the following command:</t>
5200     <t>
5201     <list>
5202     <t>REMOVE DB_INSTRUMENT_DIRECTORY [FORCE] &lt;dir&gt;</t>
5203     </list>
5204     </t>
5205     <t>Where &lt;dir&gt; is the absolute path name of the directory
5206     to delete. The optional FORCE argument can be used to
5207     force the deletion of a non-empty directory and all its content.</t>
5208    
5209     <t>Possible Answers:</t>
5210     <t>
5211     <list>
5212     <t>"OK" -
5213     <list>
5214     <t>if the directory is deleted successfully</t>
5215     </list>
5216     </t>
5217     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5218     <list>
5219     <t>if the given directory does not exist, or
5220     if trying to delete a non-empty directory,
5221     without using the FORCE argument.</t>
5222     </list>
5223     </t>
5224     </list>
5225     </t>
5226    
5227     <t>Examples:</t>
5228     <t>
5229     <list>
5230     <t>C: "REMOVE DB_INSTRUMENT_DIRECTORY FORCE '/Piano Collection'"</t>
5231     <t>S: "OK"</t>
5232     </list>
5233     </t>
5234     </section>
5235    
5236     <section title="Getting amount of instrument directories" anchor="GET DB_INSTRUMENT_DIRECTORIES">
5237     <t>The front-end can retrieve the current amount of
5238     directories in a specific directory by sending the following command:</t>
5239     <t>
5240     <list>
5241 iliev 1187 <t>GET DB_INSTRUMENT_DIRECTORIES [RECURSIVE] &lt;dir&gt;</t>
5242 iliev 1161 </list>
5243     </t>
5244     <t>Where &lt;dir&gt; should be replaced by the absolute path
5245 iliev 1187 name of the directory. If RECURSIVE is specified, the number of
5246     all directories, including those located in subdirectories of the
5247     specified directory, will be returned.</t>
5248 iliev 1161
5249     <t>Possible Answers:</t>
5250     <t>
5251     <list>
5252     <t>The current number of instrument directories
5253     in the specified directory.</t>
5254     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5255     <list>
5256     <t>if the given directory does not exist.</t>
5257     </list>
5258     </t>
5259     </list>
5260     </t>
5261    
5262     <t>Example:</t>
5263     <t>
5264     <list>
5265     <t>C: "GET DB_INSTRUMENT_DIRECTORIES '/'"</t>
5266     <t>S: "2"</t>
5267     </list>
5268     </t>
5269     </section>
5270    
5271     <section title="Listing all directories in specific directory" anchor="LIST DB_INSTRUMENT_DIRECTORIES">
5272     <t>The front-end can retrieve the current list of directories
5273     in specific directory by sending the following command:</t>
5274     <t>
5275     <list>
5276 iliev 1187 <t>LIST DB_INSTRUMENT_DIRECTORIES [RECURSIVE] &lt;dir&gt;</t>
5277 iliev 1161 </list>
5278     </t>
5279     <t>Where &lt;dir&gt; should be replaced by the absolute path
5280 iliev 1187 name of the directory. If RECURSIVE is specified, the absolute path names
5281     of all directories, including those located in subdirectories of the
5282     specified directory, will be returned.</t>
5283 iliev 1161
5284     <t>Possible Answers:</t>
5285     <t>
5286     <list>
5287     <t>A comma separated list of all instrument directories
5288     (encapsulated into apostrophes) in the specified directory.</t>
5289     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5290     <list>
5291     <t>if the given directory does not exist.</t>
5292     </list>
5293     </t>
5294     </list>
5295     </t>
5296     <t>Example:</t>
5297     <t>
5298     <list>
5299     <t>C: "LIST DB_INSTRUMENT_DIRECTORIES '/'"</t>
5300     <t>S: "'Piano Collection','Percussion Collection'"</t>
5301     </list>
5302     </t>
5303 iliev 1187 <t>
5304     <list>
5305     <t>C: "LIST DB_INSTRUMENT_DIRECTORIES RECURSIVE '/'"</t>
5306     <t>S: "'/Piano Collection','/Piano Collection/Acoustic','/Piano Collection/Acoustic/New','/Percussion Collection'"</t>
5307     </list>
5308     </t>
5309 iliev 1161 </section>
5310    
5311     <section title="Getting instrument directory information" anchor="GET DB_INSTRUMENT_DIRECTORY INFO">
5312     <t>The front-end can ask for the current settings of an
5313     instrument directory by sending the following command:</t>
5314     <t>
5315     <list>
5316     <t>GET DB_INSTRUMENT_DIRECTORY INFO &lt;dir&gt;</t>
5317     </list>
5318     </t>
5319     <t>Where &lt;dir&gt; should be replaced by the absolute path
5320     name of the directory the front-end is interested in.</t>
5321    
5322     <t>Possible Answers:</t>
5323     <t>
5324     <list>
5325     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
5326     Each answer line begins with the settings category name
5327     followed by a colon and then a space character &lt;SP&gt; and finally
5328     the info character string to that setting category. At the
5329     moment the following categories are defined:</t>
5330    
5331     <t>
5332     <list>
5333     <t>DESCRIPTION -
5334     <list>
5335 schoenebeck 1362 <t>A brief description of the directory content.
5336     Note that the character string may contain
5337 iliev 1353 <xref target="character_set">escape sequences</xref>.</t>
5338 iliev 1161 </list>
5339     </t>
5340     <t>CREATED -
5341     <list>
5342     <t>The creation date and time of the directory,
5343     represented in "YYYY-MM-DD HH:MM:SS" format</t>
5344     </list>
5345     </t>
5346     <t>MODIFIED -
5347     <list>
5348     <t>The date and time of the last modification of the
5349     directory, represented in "YYYY-MM-DD HH:MM:SS" format</t>
5350     </list>
5351     </t>
5352     </list>
5353     </t>
5354     </list>
5355     </t>
5356     <t>The mentioned fields above don't have to be in particular order.</t>
5357    
5358     <t>Example:</t>
5359     <t>
5360     <list>
5361     <t>C: "GET DB_INSTRUMENT_DIRECTORY INFO '/Piano Collection'"</t>
5362     <t>S: "DESCRIPTION: Piano collection of instruments in GigaSampler format."</t>
5363     <t>&nbsp;&nbsp;&nbsp;"CREATED: 2007-02-05 10:23:12"</t>
5364     <t>&nbsp;&nbsp;&nbsp;"MODIFIED: 2007-04-07 12:50:21"</t>
5365     <t>&nbsp;&nbsp;&nbsp;"."</t>
5366     </list>
5367     </t>
5368     </section>
5369    
5370     <section title="Renaming an instrument directory" anchor="SET DB_INSTRUMENT_DIRECTORY NAME">
5371     <t>The front-end can alter the name of a specific
5372     instrument directory by sending the following command:</t>
5373     <t>
5374     <list>
5375     <t>SET DB_INSTRUMENT_DIRECTORY NAME &lt;dir&gt; &lt;name&gt;</t>
5376     </list>
5377     </t>
5378     <t>Where &lt;dir&gt; is the absolute path name of the directory and
5379     &lt;name&gt; is the new name for that directory.</t>
5380    
5381     <t>Possible Answers:</t>
5382     <t>
5383     <list>
5384     <t>"OK" -
5385     <list>
5386     <t>on success</t>
5387     </list>
5388     </t>
5389     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5390     <list>
5391     <t>in case the given directory does not exists,
5392     or if a directory with name equal to the new
5393     name already exists.</t>
5394     </list>
5395     </t>
5396     </list>
5397     </t>
5398    
5399     <t>Example:</t>
5400     <t>
5401     <list>
5402     <t>C: "SET DB_INSTRUMENT_DIRECTORY NAME '/Piano Collection/Acustic' 'Acoustic'"</t>
5403     <t>S: "OK"</t>
5404     </list>
5405     </t>
5406     </section>
5407    
5408     <section title="Moving an instrument directory" anchor="MOVE DB_INSTRUMENT_DIRECTORY">
5409     <t>The front-end can move a specific
5410     instrument directory by sending the following command:</t>
5411     <t>
5412     <list>
5413     <t>MOVE DB_INSTRUMENT_DIRECTORY &lt;dir&gt; &lt;dst&gt;</t>
5414     </list>
5415     </t>
5416     <t>Where &lt;dir&gt; is the absolute path name of the directory
5417     to move and &lt;dst&gt; is the location where the directory will
5418     be moved to.</t>
5419    
5420     <t>Possible Answers:</t>
5421     <t>
5422     <list>
5423     <t>"OK" -
5424     <list>
5425     <t>on success</t>
5426     </list>
5427     </t>
5428     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5429     <list>
5430     <t>in case a given directory does not exists,
5431     or if a directory with name equal to the name
5432     of the specified directory already exists in
5433     the destination directory. Error is also thrown
5434     when trying to move a directory to a subdirectory
5435     of itself.</t>
5436     </list>
5437     </t>
5438     </list>
5439     </t>
5440    
5441     <t>Example:</t>
5442     <t>
5443     <list>
5444     <t>C: "MOVE DB_INSTRUMENT_DIRECTORY '/Acoustic' '/Piano Collection/Acoustic'"</t>
5445     <t>S: "OK"</t>
5446     </list>
5447     </t>
5448     </section>
5449    
5450 iliev 1187 <section title="Copying instrument directories" anchor="COPY DB_INSTRUMENT_DIRECTORY">
5451     <t>The front-end can copy a specific
5452     instrument directory by sending the following command:</t>
5453     <t>
5454     <list>
5455     <t>COPY DB_INSTRUMENT_DIRECTORY &lt;dir&gt; &lt;dst&gt;</t>
5456     </list>
5457     </t>
5458     <t>Where &lt;dir&gt; is the absolute path name of the directory
5459     to copy and &lt;dst&gt; is the location where the directory will
5460     be copied to.</t>
5461    
5462     <t>Possible Answers:</t>
5463     <t>
5464     <list>
5465     <t>"OK" -
5466     <list>
5467     <t>on success</t>
5468     </list>
5469     </t>
5470     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5471     <list>
5472     <t>in case a given directory does not exists,
5473     or if a directory with name equal to the name
5474     of the specified directory already exists in
5475     the destination directory. Error is also thrown
5476     when trying to copy a directory to a subdirectory
5477     of itself.</t>
5478     </list>
5479     </t>
5480     </list>
5481     </t>
5482    
5483     <t>Example:</t>
5484     <t>
5485     <list>
5486     <t>C: "COPY DB_INSTRUMENT_DIRECTORY '/Piano Collection/Acoustic' '/Acoustic/Pianos'"</t>
5487     <t>S: "OK"</t>
5488     </list>
5489     </t>
5490     </section>
5491    
5492 iliev 1161 <section title="Changing the description of directory" anchor="SET DB_INSTRUMENT_DIRECTORY DESCRIPTION">
5493     <t>The front-end can alter the description of a specific
5494     instrument directory by sending the following command:</t>
5495     <t>
5496     <list>
5497     <t>SET DB_INSTRUMENT_DIRECTORY DESCRIPTION &lt;dir&gt; &lt;desc&gt;</t>
5498     </list>
5499     </t>
5500     <t>Where &lt;dir&gt; is the absolute path name of the directory and
5501 iliev 1353 &lt;desc&gt; is the new description for the directory
5502     (encapsulated into apostrophes, supporting escape sequences as described in chapter
5503     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
5504 iliev 1161
5505     <t>Possible Answers:</t>
5506     <t>
5507     <list>
5508     <t>"OK" -
5509     <list>
5510     <t>on success</t>
5511     </list>
5512     </t>
5513     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5514     <list>
5515     <t>in case the given directory does not exists.</t>
5516     </list>
5517     </t>
5518     </list>
5519     </t>
5520    
5521     <t>Example:</t>
5522     <t>
5523     <list>
5524     <t>C: "SET DB_INSTRUMENT_DIRECTORY DESCRIPTION '/Piano Collection' 'A collection of piano instruments in various format.'"</t>
5525     <t>S: "OK"</t>
5526     </list>
5527     </t>
5528     </section>
5529    
5530 iliev 1187 <section title="Finding directories" anchor="FIND DB_INSTRUMENT_DIRECTORIES">
5531     <t>The front-end can search for directories
5532     in specific directory by sending the following command:</t>
5533     <t>
5534     <list>
5535     <t>FIND DB_INSTRUMENT_DIRECTORIES [NON_RECURSIVE] &lt;dir&gt; &lt;criteria-list&gt;</t>
5536     </list>
5537     </t>
5538     <t>Where &lt;dir&gt; should be replaced by the absolute path
5539     name of the directory to search in. If NON_RECURSIVE is specified, the
5540     directories located in subdirectories of the specified directory will not
5541     be searched. &lt;criteria-list&gt; is a list of search criterias
5542     in form of "key1=val1 key2=val2 ...". The following criterias are
5543     allowed:</t>
5544     <t>
5545     <t>NAME='&lt;search-string&gt;'
5546     <list>
5547     <t>Restricts the search to directories, which names
5548 schoenebeck 1362 satisfy the supplied search string (encapsulated into apostrophes,
5549 iliev 1353 supporting escape sequences as described in chapter
5550     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
5551 iliev 1187 </list>
5552     </t>
5553    
5554     <t>CREATED='[&lt;date-after&gt;]..[&lt;date-before&gt;]'
5555     <list>
5556     <t>Restricts the search to directories, which creation
5557     date satisfies the specified period, where &lt;date-after&gt;
5558     and &lt;date-before&gt; are in "YYYY-MM-DD HH:MM:SS" format.
5559     If &lt;date-after&gt; is omitted the search is restricted to
5560     directories created before &lt;date-before&gt;. If
5561     &lt;date-before&gt; is omitted, the search is restricted
5562     to directories created after &lt;date-after&gt;.</t>
5563     </list>
5564     </t>
5565    
5566     <t>MODIFIED='[&lt;date-after&gt;]..[&lt;date-before&gt;]'
5567     <list>
5568     <t>Restricts the search to directories, which
5569     date of last modification satisfies the specified period, where
5570     &lt;date-after&gt; and &lt;date-before&gt; are in "YYYY-MM-DD HH:MM:SS"
5571     format. If &lt;date-after&gt; is omitted the search is restricted to
5572     directories, which are last modified before &lt;date-before&gt;. If
5573     &lt;date-before&gt; is omitted, the search is restricted to directories,
5574     which are last modified after &lt;date-after&gt;.</t>
5575     </list>
5576     </t>
5577    
5578     <t>DESCRIPTION='&lt;search-string&gt;'
5579     <list>
5580     <t>Restricts the search to directories with description
5581 iliev 1353 that satisfies the supplied search string
5582 schoenebeck 1362 (encapsulated into apostrophes, supporting escape
5583 iliev 1353 sequences as described in chapter
5584     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
5585 iliev 1187 </list>
5586     </t>
5587     </t>
5588    
5589     <t>Where &lt;search-string&gt; is either a regular expression, or a
5590     word list separated with spaces for OR search and with '+' for AND search.</t>
5591    
5592     <t>Possible Answers:</t>
5593     <t>
5594     <list>
5595     <t>A comma separated list with the absolute path names (encapsulated into
5596     apostrophes) of all directories in the specified directory that satisfy
5597     the supplied search criterias.</t>
5598     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5599     <list>
5600     <t>if the given directory does not exist.</t>
5601     </list>
5602     </t>
5603     </list>
5604     </t>
5605     <t>Example:</t>
5606     <t>
5607     <list>
5608     <t>C: "FIND DB_INSTRUMENT_DIRECTORIES '/' NAME='Piano'"</t>
5609     <t>S: "'/Piano Collection'"</t>
5610     </list>
5611     </t>
5612     <t>
5613     <list>
5614     <t>C: "FIND DB_INSTRUMENT_DIRECTORIES '/' CREATED='..2007-04-01 09:30:13'"</t>
5615     <t>S: "'/Piano Collection','/Percussions'"</t>
5616     </list>
5617     </t>
5618     </section>
5619    
5620 iliev 1161 <section title="Adding instruments to the instruments database" anchor="ADD DB_INSTRUMENTS">
5621     <t>The front-end can add one or more instruments
5622     to the instruments database by sending the following command:</t>
5623     <t>
5624     <list>
5625 iliev 1782 <t>ADD DB_INSTRUMENTS [NON_MODAL] [&lt;mode&gt;[ FILE_AS_DIR]] &lt;db_dir&gt; &lt;file_path&gt; [&lt;instr_index&gt;]</t>
5626 iliev 1161 </list>
5627     </t>
5628     <t>Where &lt;db_dir&gt; is the absolute path name of a directory
5629     (encapsulated into apostrophes) in the instruments database in which
5630     only the new instruments (that are not already in the database) will
5631     be added, &lt;file_path&gt; is the absolute path name of a file or
5632     directory in the file system (encapsulated into apostrophes). In case
5633     an instrument file is supplied, only the instruments in the specified
5634     file will be added to the instruments database. If the optional
5635     &lt;instr_index&gt; (the index of the instrument within the given file)
5636     is supplied too, then only the specified instrument will be added.
5637     In case a directory is supplied, the instruments in that directory
5638     will be added. The OPTIONAL &lt;mode&gt; argument is only applied
5639     when a directory is provided as &lt;file_path&gt; and specifies how the
5640     scanning will be done and has exactly the following possibilities:</t>
5641     <t>
5642     <list>
5643 iliev 1200 <t>"RECURSIVE" -
5644     <list>
5645     <t>All instruments will be processed, including those
5646     in the subdirectories, and the respective subdirectory
5647     tree structure will be recreated in the instruments
5648     database</t>
5649     </list>
5650     </t>
5651 iliev 1161 <t>"NON_RECURSIVE" -
5652     <list>
5653     <t>Only the instruments in the specified directory
5654     will be added, the instruments in the subdirectories
5655     will not be processed.</t>
5656     </list>
5657     </t>
5658     <t>"FLAT" -
5659     <list>
5660     <t>All instruments will be processed, including those
5661     in the subdirectories, but the respective subdirectory
5662     structure will not be recreated in the instruments
5663     database. All instruments will be added directly in
5664     the specified database directory.</t>
5665     </list>
5666     </t>
5667     </list>
5668     </t>
5669    
5670 iliev 1782 <t> If FILE_AS_DIR argument is supplied, all instruments in an instrument
5671     file will be added to a separate directory in the instruments database, which
5672     name will be the name of the instrument file with the file extension stripped off.
5673     </t>
5674 iliev 1200 <t>The difference between regular and NON_MODAL versions of the command
5675     is that the regular command returns when the scanning is finished
5676     while NON_MODAL version returns immediately and a background process is launched.
5677     The <xref target="GET DB_INSTRUMENTS_JOB INFO">GET DB_INSTRUMENTS_JOB INFO</xref>
5678     command can be used to monitor the scanning progress.</t>
5679    
5680 iliev 1161 <t>Possible Answers:</t>
5681     <t>
5682     <list>
5683     <t>"OK" -
5684     <list>
5685 iliev 1200 <t>on success when NON_MODAL is not supplied</t>
5686 iliev 1161 </list>
5687     </t>
5688 iliev 1200 <t>"OK[&lt;job-id&gt;]" -
5689     <list>
5690     <t>on success when NON_MODAL is supplied, where &lt;job-id&gt;
5691     is a numerical ID used to obtain status information about the job progress.
5692     See <xref target="GET DB_INSTRUMENTS_JOB INFO">GET DB_INSTRUMENTS_JOB INFO</xref>
5693     </t>
5694     </list>
5695     </t>
5696 iliev 1161 <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5697     <list>
5698     <t>if an invalid path is specified.</t>
5699     </list>
5700     </t>
5701     </list>
5702     </t>
5703    
5704     <t>Examples:</t>
5705     <t>
5706     <list>
5707     <t>C: "ADD DB_INSTRUMENTS '/Piano Collection' '/home/me/gigs/PMI Bosendorfer 290.gig' 0"</t>
5708     <t>S: "OK"</t>
5709     </list>
5710     </t>
5711     </section>
5712    
5713     <section title="Removing an instrument" anchor="REMOVE DB_INSTRUMENT">
5714     <t>The front-end can remove a particular instrument
5715     from the instruments database by sending the following command:</t>
5716     <t>
5717     <list>
5718     <t>REMOVE DB_INSTRUMENT &lt;instr_path&gt;</t>
5719     </list>
5720     </t>
5721     <t>Where &lt;instr_path&gt; is the absolute path name
5722     (in the instruments database) of the instrument to remove.</t>
5723    
5724     <t>Possible Answers:</t>
5725     <t>
5726     <list>
5727     <t>"OK" -
5728     <list>
5729     <t>if the instrument is removed successfully</t>
5730     </list>
5731     </t>
5732     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5733     <list>
5734     <t>if the given path does not exist or
5735     is a directory.</t>
5736     </list>
5737     </t>
5738     </list>
5739     </t>
5740    
5741     <t>Examples:</t>
5742     <t>
5743     <list>
5744     <t>C: "REMOVE DB_INSTRUMENT '/Piano Collection/Bosendorfer 290'"</t>
5745     <t>S: "OK"</t>
5746     </list>
5747     </t>
5748     </section>
5749    
5750     <section title="Getting amount of instruments" anchor="GET DB_INSTRUMENTS">
5751     <t>The front-end can retrieve the current amount of
5752     instruments in a specific directory by sending the following command:</t>
5753     <t>
5754     <list>
5755 iliev 1187 <t>GET DB_INSTRUMENTS [RECURSIVE] &lt;dir&gt;</t>
5756 iliev 1161 </list>
5757     </t>
5758     <t>Where &lt;dir&gt; should be replaced by the absolute path name
5759 iliev 1187 of the directory. If RECURSIVE is specified, the number of all
5760     instruments, including those located in subdirectories of the
5761     specified directory, will be returned.</t>
5762 iliev 1161
5763     <t>Possible Answers:</t>
5764     <t>
5765     <list>
5766     <t>The current number of instruments
5767     in the specified directory.</t>
5768     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5769     <list>
5770     <t>if the given directory does not exist.</t>
5771     </list>
5772     </t>
5773     </list>
5774     </t>
5775    
5776     <t>Example:</t>
5777     <t>
5778     <list>
5779     <t>C: "GET DB_INSTRUMENTS '/Piano Collection'"</t>
5780     <t>S: "2"</t>
5781     </list>
5782     </t>
5783     </section>
5784    
5785     <section title="Listing all instruments in specific directory" anchor="LIST DB_INSTRUMENTS">
5786     <t>The front-end can retrieve the current list of instruments
5787     in specific directory by sending the following command:</t>
5788     <t>
5789     <list>
5790 iliev 1187 <t>LIST DB_INSTRUMENTS [RECURSIVE] &lt;dir&gt;</t>
5791 iliev 1161 </list>
5792     </t>
5793     <t>Where &lt;dir&gt; should be replaced by the absolute path
5794 iliev 1187 name of the directory. If RECURSIVE is specified, the absolute path
5795     names of all instruments, including those located in subdirectories
5796     of the specified directory, will be returned.</t>
5797 iliev 1161
5798     <t>Possible Answers:</t>
5799     <t>
5800     <list>
5801     <t>A comma separated list of all instruments
5802     (encapsulated into apostrophes) in the specified directory.</t>
5803     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5804     <list>
5805     <t>if the given directory does not exist.</t>
5806     </list>
5807     </t>
5808     </list>
5809     </t>
5810     <t>Example:</t>
5811     <t>
5812     <list>
5813     <t>C: "LIST DB_INSTRUMENTS '/Piano Collection'"</t>
5814     <t>S: "'Bosendorfer 290','Steinway D'"</t>
5815     </list>
5816     </t>
5817 iliev 1187 <t>
5818     <list>
5819     <t>C: "LIST DB_INSTRUMENTS RECURSIVE '/Piano Collection'"</t>
5820     <t>S: "'/Piano Collection/Bosendorfer 290','/Piano Collection/Steinway D','/Piano Collection/Lite/Free Piano'"</t>
5821     </list>
5822     </t>
5823 iliev 1161 </section>
5824    
5825     <section title="Getting instrument information" anchor="GET DB_INSTRUMENT INFO">
5826     <t>The front-end can ask for the current settings of an
5827     instrument by sending the following command:</t>
5828     <t>
5829     <list>
5830     <t>GET DB_INSTRUMENT INFO &lt;instr_path&gt;</t>
5831     </list>
5832     </t>
5833     <t>Where &lt;instr_path&gt; should be replaced by the absolute path
5834     name of the instrument the front-end is interested in.</t>
5835    
5836     <t>Possible Answers:</t>
5837     <t>
5838     <list>
5839     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
5840     Each answer line begins with the settings category name
5841     followed by a colon and then a space character &lt;SP&gt; and finally
5842     the info character string to that setting category. At the
5843     moment the following categories are defined:</t>
5844    
5845     <t>
5846     <list>
5847     <t>INSTRUMENT_FILE -
5848     <list>
5849 schoenebeck 1362 <t>File name of the instrument.
5850     Note that the character string may contain
5851 iliev 1353 <xref target="character_set">escape sequences</xref>.</t>
5852 iliev 1161 </list>
5853     </t>
5854     <t>INSTRUMENT_NR -
5855     <list>
5856     <t>Index of the instrument within the file.</t>
5857     </list>
5858     </t>
5859     <t>FORMAT_FAMILY -
5860     <list>
5861     <t>The format family of the instrument.</t>
5862     </list>
5863     </t>
5864     <t>FORMAT_VERSION -
5865     <list>
5866     <t>The format version of the instrument.</t>
5867     </list>
5868     </t>
5869     <t>SIZE -
5870     <list>
5871     <t>The size of the instrument in bytes.</t>
5872     </list>
5873     </t>
5874     <t>CREATED -
5875     <list>
5876     <t>The date and time when the instrument is added
5877     in the instruments database, represented in
5878     "YYYY-MM-DD HH:MM:SS" format</t>
5879     </list>
5880     </t>
5881     <t>MODIFIED -
5882     <list>
5883     <t>The date and time of the last modification of the
5884     instrument's database settings, represented in
5885     "YYYY-MM-DD HH:MM:SS" format</t>
5886     </list>
5887     </t>
5888     <t>DESCRIPTION -
5889     <list>
5890 schoenebeck 1362 <t>A brief description of the instrument.
5891     Note that the character string may contain
5892 iliev 1353 <xref target="character_set">escape sequences</xref>.</t>
5893 iliev 1161 </list>
5894     </t>
5895     <t>IS_DRUM -
5896     <list>
5897     <t>either true or false, determines whether the
5898     instrument is a drumkit or a chromatic instrument</t>
5899     </list>
5900     </t>
5901     <t>PRODUCT -
5902     <list>
5903 schoenebeck 1362 <t>The product title of the instrument.
5904     Note that the character string may contain
5905 iliev 1353 <xref target="character_set">escape sequences</xref>.</t>
5906 iliev 1161 </list>
5907     </t>
5908     <t>ARTISTS -
5909     <list>
5910 schoenebeck 1362 <t>Lists the artist names.
5911     Note that the character string may contain
5912 iliev 1353 <xref target="character_set">escape sequences</xref>.</t>
5913 iliev 1161 </list>
5914     </t>
5915     <t>KEYWORDS -
5916     <list>
5917     <t>Provides a list of keywords that refer to the instrument.
5918 schoenebeck 1362 Keywords are separated with semicolon and blank.
5919     Note that the character string may contain
5920 iliev 1353 <xref target="character_set">escape sequences</xref>.</t>
5921 iliev 1161 </list>
5922     </t>
5923     </list>
5924     </t>
5925     </list>
5926     </t>
5927     <t>The mentioned fields above don't have to be in particular order.</t>
5928    
5929     <t>Example:</t>
5930     <t>
5931     <list>
5932     <t>C: "GET DB_INSTRUMENT INFO '/Piano Collection/Bosendorfer 290'"</t>
5933     <t>S: "INSTRUMENT_FILE: /home/me/gigs/Bosendorfer 290.gig"</t>
5934     <t>&nbsp;&nbsp;&nbsp;"INSTRUMENT_NR: 0"</t>
5935     <t>&nbsp;&nbsp;&nbsp;"FORMAT_FAMILY: GIG"</t>
5936     <t>&nbsp;&nbsp;&nbsp;"FORMAT_VERSION: 2"</t>
5937     <t>&nbsp;&nbsp;&nbsp;"SIZE: 2050871870"</t>
5938     <t>&nbsp;&nbsp;&nbsp;"CREATED: 2007-02-05 10:23:12"</t>
5939     <t>&nbsp;&nbsp;&nbsp;"MODIFIED: 2007-04-07 12:50:21"</t>
5940     <t>&nbsp;&nbsp;&nbsp;"DESCRIPTION: "</t>
5941     <t>&nbsp;&nbsp;&nbsp;"IS_DRUM: false"</t>
5942     <t>&nbsp;&nbsp;&nbsp;"PRODUCT: GRANDIOSO Bosendorfer 290"</t>
5943     <t>&nbsp;&nbsp;&nbsp;"ARTISTS: Post Musical Instruments"</t>
5944     <t>&nbsp;&nbsp;&nbsp;"KEYWORDS: Bosendorfer"</t>
5945     <t>&nbsp;&nbsp;&nbsp;"."</t>
5946     </list>
5947     </t>
5948     </section>
5949    
5950     <section title="Renaming an instrument" anchor="SET DB_INSTRUMENT NAME">
5951     <t>The front-end can alter the name of a specific
5952     instrument by sending the following command:</t>
5953     <t>
5954     <list>
5955     <t>SET DB_INSTRUMENT NAME &lt;instr&gt; &lt;name&gt;</t>
5956     </list>
5957     </t>
5958     <t>Where &lt;instr&gt; is the absolute path name of the instrument and
5959     &lt;name&gt; is the new name for that instrument.</t>
5960    
5961     <t>Possible Answers:</t>
5962     <t>
5963     <list>
5964     <t>"OK" -
5965     <list>
5966     <t>on success</t>
5967     </list>
5968     </t>
5969     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
5970     <list>
5971     <t>in case the given instrument does not exists,
5972     or if an instrument with name equal to the new
5973     name already exists.</t>
5974     </list>
5975     </t>
5976     </list>
5977     </t>
5978    
5979     <t>Example:</t>
5980     <t>
5981     <list>
5982     <t>C: "SET DB_INSTRUMENT NAME '/Piano Collection/Bosendorfer' 'Bosendorfer 290'"</t>
5983     <t>S: "OK"</t>
5984     </list>
5985     </t>
5986     </section>
5987    
5988     <section title="Moving an instrument" anchor="MOVE DB_INSTRUMENT">
5989     <t>The front-end can move a specific instrument to another directory by
5990     sending the following command:</t>
5991     <t>
5992     <list>
5993     <t>MOVE DB_INSTRUMENT &lt;instr&gt; &lt;dst&gt;</t>
5994     </list>
5995     </t>
5996     <t>Where &lt;instr&gt; is the absolute path name of the instrument
5997     to move and &lt;dst&gt; is the directory where the instrument will
5998     be moved to.</t>
5999    
6000     <t>Possible Answers:</t>
6001     <t>
6002     <list>
6003     <t>"OK" -
6004     <list>
6005     <t>on success</t>
6006     </list>
6007     </t>
6008     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6009     <list>
6010     <t>in case the given instrument does not exists,
6011     or if an instrument with name equal to the name of the
6012     specified instrument already exists in the destination
6013     directory.</t>
6014     </list>
6015     </t>
6016     </list>
6017     </t>
6018    
6019     <t>Example:</t>
6020     <t>
6021     <list>
6022     <t>C: "MOVE DB_INSTRUMENT '/Piano Collection/Bosendorfer 290' '/Piano Collection/Acoustic'"</t>
6023     <t>S: "OK"</t>
6024     </list>
6025     </t>
6026     </section>
6027    
6028 iliev 1187 <section title="Copying instruments" anchor="COPY DB_INSTRUMENT">
6029     <t>The front-end can copy a specific instrument to another directory by
6030     sending the following command:</t>
6031     <t>
6032     <list>
6033     <t>COPY DB_INSTRUMENT &lt;instr&gt; &lt;dst&gt;</t>
6034     </list>
6035     </t>
6036     <t>Where &lt;instr&gt; is the absolute path name of the instrument
6037     to copy and &lt;dst&gt; is the directory where the instrument will
6038     be copied to.</t>
6039    
6040     <t>Possible Answers:</t>
6041     <t>
6042     <list>
6043     <t>"OK" -
6044     <list>
6045     <t>on success</t>
6046     </list>
6047     </t>
6048     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6049     <list>
6050     <t>in case the given instrument does not exists,
6051     or if an instrument with name equal to the name of the
6052     specified instrument already exists in the destination
6053     directory.</t>
6054     </list>
6055     </t>
6056     </list>
6057     </t>
6058    
6059     <t>Example:</t>
6060     <t>
6061     <list>
6062     <t>C: "COPY DB_INSTRUMENT '/Piano Collection/Bosendorfer 290' '/Acoustic/Pianos/'"</t>
6063     <t>S: "OK"</t>
6064     </list>
6065     </t>
6066     </section>
6067    
6068 iliev 1161 <section title="Changing the description of instrument" anchor="SET DB_INSTRUMENT DESCRIPTION">
6069     <t>The front-end can alter the description of a specific
6070     instrument by sending the following command:</t>
6071     <t>
6072     <list>
6073     <t>SET DB_INSTRUMENT DESCRIPTION &lt;instr&gt; &lt;desc&gt;</t>
6074     </list>
6075     </t>
6076     <t>Where &lt;instr&gt; is the absolute path name of the instrument and
6077 schoenebeck 1554 &lt;desc&gt; is the new description for the instrument
6078 iliev 1353 (encapsulated into apostrophes, supporting escape sequences as described in chapter
6079     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
6080 iliev 1161
6081     <t>Possible Answers:</t>
6082     <t>
6083     <list>
6084     <t>"OK" -
6085     <list>
6086     <t>on success</t>
6087     </list>
6088     </t>
6089     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6090     <list>
6091     <t>in case the given instrument does not exists.</t>
6092     </list>
6093     </t>
6094     </list>
6095     </t>
6096    
6097     <t>Example:</t>
6098     <t>
6099     <list>
6100     <t>C: "SET DB_INSTRUMENT DESCRIPTION '/Piano Collection/Acoustic/Bosendorfer 290' 'No comment :)'"</t>
6101     <t>S: "OK"</t>
6102     </list>
6103     </t>
6104     </section>
6105    
6106 iliev 1187 <section title="Finding instruments" anchor="FIND DB_INSTRUMENTS">
6107     <t>The front-end can search for instruments
6108     in specific directory by sending the following command:</t>
6109     <t>
6110     <list>
6111     <t>FIND DB_INSTRUMENTS [NON_RECURSIVE] &lt;dir&gt; &lt;criteria-list&gt;</t>
6112     </list>
6113     </t>
6114     <t>Where &lt;dir&gt; should be replaced by the absolute path
6115     name of the directory to search in. If NON_RECURSIVE is specified, the
6116     directories located in subdirectories of the specified directory will not
6117     be searched. &lt;criteria-list&gt; is a list of search criterias
6118     in form of "key1=val1 key2=val2 ...". The following criterias are
6119     allowed:</t>
6120     <t>
6121     <t>NAME='&lt;search-string&gt;'
6122     <list>
6123     <t>Restricts the search to instruments, which names
6124 schoenebeck 1362 satisfy the supplied search string (encapsulated into apostrophes,
6125 iliev 1353 supporting escape sequences as described in chapter
6126     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
6127 iliev 1187 </list>
6128     </t>
6129    
6130     <t>SIZE=[&lt;min&gt;]..[&lt;max&gt;]
6131     <list>
6132 schoenebeck 1249 <t>Restricts the search to instruments, which
6133 iliev 1187 size is in the specified range. If &lt;min&gt; is omitted,
6134     the search results are restricted to instruments with size less then
6135     or equal to &lt;max&gt;. If &lt;max&gt; is omitted, the
6136     search is restricted to instruments with size greater then
6137     or equal to &lt;min&gt;.</t>
6138     </list>
6139     </t>
6140    
6141     <t>CREATED='[&lt;date-after&gt;]..[&lt;date-before&gt;]'
6142     <list>
6143     <t>Restricts the search to instruments, which creation
6144     date satisfies the specified period, where &lt;date-after&gt;
6145     and &lt;date-before&gt; are in "YYYY-MM-DD HH:MM:SS" format.
6146     If &lt;date-after&gt; is omitted the search is restricted to
6147     instruments created before &lt;date-before&gt;. If
6148     &lt;date-before&gt; is omitted, the search is restricted
6149     to instruments created after &lt;date-after&gt;.</t>
6150     </list>
6151     </t>
6152    
6153     <t>MODIFIED='[&lt;date-after&gt;]..[&lt;date-before&gt;]'
6154     <list>
6155     <t>Restricts the search to instruments, which
6156     date of last modification satisfies the specified period, where
6157     &lt;date-after&gt; and &lt;date-before&gt; are in "YYYY-MM-DD HH:MM:SS"
6158     format. If &lt;date-after&gt; is omitted the search is restricted to
6159     instruments, which are last modified before &lt;date-before&gt;. If
6160     &lt;date-before&gt; is omitted, the search is restricted to instruments,
6161     which are last modified after &lt;date-after&gt;.</t>
6162     </list>
6163     </t>
6164    
6165     <t>DESCRIPTION='&lt;search-string&gt;'
6166     <list>
6167     <t>Restricts the search to instruments with description
6168 schoenebeck 1362 that satisfies the supplied search string (encapsulated into apostrophes,
6169 iliev 1353 supporting escape sequences as described in chapter
6170     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
6171 iliev 1187 </list>
6172     </t>
6173    
6174     <t>PRODUCT='&lt;search-string&gt;'
6175     <list>
6176     <t>Restricts the search to instruments with product info
6177 schoenebeck 1362 that satisfies the supplied search string (encapsulated into apostrophes,
6178 iliev 1353 supporting escape sequences as described in chapter
6179     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
6180 iliev 1187 </list>
6181     </t>
6182    
6183     <t>ARTISTS='&lt;search-string&gt;'
6184     <list>
6185     <t>Restricts the search to instruments with artists info
6186 schoenebeck 1362 that satisfies the supplied search string (encapsulated into apostrophes,
6187 iliev 1353 supporting escape sequences as described in chapter
6188     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
6189 iliev 1187 </list>
6190     </t>
6191    
6192     <t>KEYWORDS='&lt;search-string&gt;'
6193     <list>
6194     <t>Restricts the search to instruments with keyword list
6195 schoenebeck 1362 that satisfies the supplied search string (encapsulated into apostrophes,
6196 iliev 1353 supporting escape sequences as described in chapter
6197     "<xref target="character_set">Character Set and Escape Sequences</xref>").</t>
6198 iliev 1187 </list>
6199     </t>
6200    
6201     <t>IS_DRUM=true | false
6202     <list>
6203 schoenebeck 1249 <t>Either true or false. Restricts the search to
6204 iliev 1187 drum kits or chromatic instruments.</t>
6205     </list>
6206     </t>
6207    
6208     <t>FORMAT_FAMILIES='&lt;format-list&gt;'
6209     <list>
6210     <t>Restricts the search to instruments of the supplied format families,
6211     where &lt;format-list&gt; is a comma separated list of format families.</t>
6212     </list>
6213     </t>
6214     </t>
6215    
6216     <t>Where &lt;search-string&gt; is either a regular expression, or a
6217     word list separated with spaces for OR search and with '+' for AND search.</t>
6218    
6219     <t>Possible Answers:</t>
6220     <t>
6221     <list>
6222     <t>A comma separated list with the absolute path names (encapsulated into
6223     apostrophes) of all instruments in the specified directory that satisfy
6224     the supplied search criterias.</t>
6225     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6226     <list>
6227     <t>if the given directory does not exist.</t>
6228     </list>
6229     </t>
6230     </list>
6231     </t>
6232     <t>Example:</t>
6233     <t>
6234     <list>
6235     <t>C: "FIND DB_INSTRUMENTS '/Piano Collection' NAME='bosendorfer+290'"</t>
6236     <t>S: "'/Piano Collection/Bosendorfer 290'"</t>
6237     </list>
6238     </t>
6239     <t>
6240     <list>
6241     <t>C: "FIND DB_INSTRUMENTS '/Piano Collection' CREATED='2007-04-01 09:30:13..'"</t>
6242     <t>S: "'/Piano Collection/Bosendorfer 290','/Piano Collection/Steinway D'"</t>
6243     </list>
6244     </t>
6245     </section>
6246    
6247 iliev 1200 <section title="Getting job status information" anchor="GET DB_INSTRUMENTS_JOB INFO">
6248     <t>The front-end can ask for the current status of a
6249     particular database instruments job by sending the following command:</t>
6250     <t>
6251     <list>
6252     <t>GET DB_INSTRUMENTS_JOB INFO &lt;job-id&gt;</t>
6253     </list>
6254     </t>
6255     <t>Where &lt;job-id&gt; should be replaced by the numerical ID
6256     of the job the front-end is interested in.</t>
6257    
6258     <t>Possible Answers:</t>
6259     <t>
6260     <list>
6261     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
6262     Each answer line begins with the settings category name
6263     followed by a colon and then a space character &lt;SP&gt; and finally
6264     the info character string to that setting category. At the
6265     moment the following categories are defined:</t>
6266    
6267     <t>
6268     <list>
6269     <t>FILES_TOTAL -
6270     <list>
6271     <t>The total number of files scheduled for scanning</t>
6272     </list>
6273     </t>
6274     <t>FILES_SCANNED -
6275     <list>
6276     <t>The current number of scanned files</t>
6277     </list>
6278     </t>
6279     <t>SCANNING -
6280     <list>
6281     <t>The absolute path name of the file which is currently
6282     being scanned</t>
6283     </list>
6284     </t>
6285     <t>STATUS -
6286     <list>
6287     <t>An integer value between 0 and 100 indicating the
6288     scanning progress percentage of the file which is
6289     currently being scanned</t>
6290     </list>
6291     </t>
6292     </list>
6293     </t>
6294     </list>
6295     </t>
6296     <t>The mentioned fields above don't have to be in particular order.</t>
6297    
6298     <t>Example:</t>
6299     <t>
6300     <list>
6301     <t>C: "GET DB_INSTRUMENTS_JOB INFO 2"</t>
6302     <t>S: "FILES_TOTAL: 12"</t>
6303     <t>&nbsp;&nbsp;&nbsp;"FILES_SCANNED: 7"</t>
6304     <t>&nbsp;&nbsp;&nbsp;"SCANNING: /home/me/gigs/Bosendorfer 290.gig"</t>
6305     <t>&nbsp;&nbsp;&nbsp;"STATUS: 42"</t>
6306     <t>&nbsp;&nbsp;&nbsp;"."</t>
6307     </list>
6308     </t>
6309     </section>
6310    
6311 iliev 1353 <section title="Formatting the instruments database" anchor="FORMAT INSTRUMENTS_DB">
6312     <t>The front-end can remove all instruments and directories and re-create
6313 schoenebeck 1362 the instruments database structure (e.g., in case of a database corruption)
6314 iliev 1353 by sending the following command:</t>
6315     <t>
6316     <list>
6317     <t>FORMAT INSTRUMENTS_DB</t>
6318     </list>
6319     </t>
6320 schoenebeck 1554
6321 iliev 1353 <t>Possible Answers:</t>
6322     <t>
6323     <list>
6324     <t>"OK" -
6325     <list>
6326     <t>on success</t>
6327     </list>
6328     </t>
6329     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6330     <list>
6331     <t>If the formatting of the instruments database
6332     failed.</t>
6333     </list>
6334     </t>
6335     </list>
6336     </t>
6337     </section>
6338    
6339 iliev 1727 <section title="Checking for lost instrument files" anchor="FIND LOST DB_INSTRUMENT_FILES">
6340     <t>The front-end can retrieve the list of all instrument files in the instruments database
6341     that don't exist in the filesystem by sending the following command:</t>
6342     <t>
6343     <list>
6344     <t>FIND LOST DB_INSTRUMENT_FILES</t>
6345     </list>
6346     </t>
6347    
6348     <t>Possible Answers:</t>
6349     <t>
6350     <list>
6351     <t>A comma separated list with the absolute path names
6352     (encapsulated into apostrophes) of all lost instrument files.</t>
6353     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6354     <list>
6355     <t>in case it failed, providing an appropriate error code and error message.</t>
6356     </list>
6357     </t>
6358     </list>
6359     </t>
6360     <t>Example:</t>
6361     <t>
6362     <list>
6363     <t>C: "FIND LOST DB_INSTRUMENT_FILES"</t>
6364     <t>S: "'/gigs/Bosendorfer 290.gig','/gigs/Steinway D.gig','/gigs/Free Piano.gig'"</t>
6365     </list>
6366     </t>
6367     </section>
6368    
6369     <section title="Replacing an instrument file" anchor="SET DB_INSTRUMENT FILE_PATH">
6370     <t>The front-end can substitute all occurrences of an instrument file
6371     in the instruments database with a new one by sending the following command:</t>
6372     <t>
6373     <list>
6374     <t>SET DB_INSTRUMENT FILE_PATH &lt;old_path&gt; &lt;new_path&gt;</t>
6375     </list>
6376     </t>
6377     <t>Where &lt;old_path&gt; is the absolute path name of the instrument file
6378     to substitute with &lt;new_path&gt;.</t>
6379    
6380     <t>Possible Answers:</t>
6381     <t>
6382     <list>
6383     <t>"OK" -
6384     <list>
6385     <t>on success</t>
6386     </list>
6387     </t>
6388     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6389     <list>
6390     <t>in case it failed, providing an appropriate error code and error message.</t>
6391     </list>
6392     </t>
6393     </list>
6394     </t>
6395    
6396     <t>Example:</t>
6397     <t>
6398     <list>
6399     <t>C: "SET DB_INSTRUMENT FILE_PATH '/gigs/Bosendorfer 290.gig' '/gigs/pianos/Bosendorfer 290.gig'"</t>
6400     <t>S: "OK"</t>
6401     </list>
6402     </t>
6403     </section>
6404    
6405 iliev 1161 </section>
6406    
6407 schoenebeck 1362
6408    
6409     <section title="Editing Instruments" anchor="editing_instruments">
6410     <t>The sampler allows to edit instruments while playing with the
6411     sampler by spawning an external (3rd party) instrument editor
6412     application for a given instrument. The 3rd party instrument
6413     editor applications have to place a respective plugin DLL file
6414     into the sampler's plugins directory. The sampler will
6415     automatically try to load all plugin DLLs in that directory on
6416     startup and only on startup!</t>
6417     <t>At the moment there is only one command for this feature set,
6418     but this will most probably change in future.</t>
6419    
6420     <section title="Opening an appropriate instrument editor application" anchor="EDIT INSTRUMENT">
6421     <t>The front-end can request to open an appropriate instrument
6422     editor application by sending the following command:</t>
6423     <t>
6424     <list>
6425 schoenebeck 1407 <t>EDIT CHANNEL INSTRUMENT &lt;sampler-channel&gt;</t>
6426 schoenebeck 1362 </list>
6427     </t>
6428     <t>Where &lt;sampler-channel&gt; should be replaced by the
6429     number of the sampler channel as given by the
6430     <xref target="ADD CHANNEL">"ADD CHANNEL"</xref>
6431     or <xref target="LIST CHANNELS">"LIST CHANNELS"</xref>
6432     command.</t>
6433    
6434     <t>The sampler will try to ask all registered instrument
6435     editors (or to be more specific: their sampler plugins)
6436     whether they are capable to handle the instrument on the
6437     given sampler channel. The sampler will simply use the first
6438     instrument editor application which replied with a positive
6439     answer and spawn that instrument editor application within
6440     the sampler's process and provide that application access
6441     to the instrument's data structures, so both applications
6442     can share and access the same instruments data at the same
6443     time, thus allowing to immediately hear changes with the
6444     sampler made by the instrument editor.</t>
6445    
6446     <t>Note: consequently instrument editors are always spawned
6447     locally on the same machine where the sampler is running
6448     on!</t>
6449    
6450     <t>Possible Answers:</t>
6451     <t>
6452     <list>
6453     <t>"OK" -
6454     <list>
6455     <t>when an appropriate instrument editor was
6456     launched</t>
6457     </list>
6458     </t>
6459     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
6460     <list>
6461     <t>when an appropriate instrument editor was
6462     launched, but there are noteworthy issues</t>
6463     </list>
6464     </t>
6465     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6466     <list>
6467     <t>when an appropriate instrument editor
6468     could not be launched</t>
6469     </list>
6470     </t>
6471     </list>
6472     </t>
6473    
6474     <t>Examples:</t>
6475     <t>
6476     <list>
6477 schoenebeck 1407 <t>C: "EDIT CHANNEL INSTRUMENT 0"</t>
6478 schoenebeck 1362 <t>S: "OK"</t>
6479     </list>
6480     </t>
6481     </section>
6482     </section>
6483 schoenebeck 1554
6484     <section title="Managing Files" anchor="file_management">
6485     <t>You can query detailed informations about files located
6486     at the same system where the sampler instance is running on.
6487     Using this command set allows to retrieve file informations
6488     even remotely from another machine.</t>
6489    
6490     <section title="Retrieving amount of instruments of a file" anchor="GET FILE INSTRUMENTS">
6491     <t>The front-end can retrieve the amount of instruments
6492     within a given instrument file by sending the
6493     following command:</t>
6494     <t>
6495     <list>
6496     <t>GET FILE INSTRUMENTS &lt;filename&gt;</t>
6497     </list>
6498     </t>
6499     <t>Where &lt;filename&gt; is the name of the instrument
6500     file (encapsulated into apostrophes, supporting escape
6501     sequences as described in chapter
6502     "<xref target="character_set">Character Set and Escape
6503     Sequences</xref>").</t>
6504    
6505     <t>The sampler will try to ask all sampler engines,
6506     whether they support the given file and ask the first
6507     engine with a positive answer for the amount of
6508     instruments.</t>
6509    
6510     <t>Possible Answers:</t>
6511     <t>
6512     <list>
6513     <t>On success, the sampler will answer by
6514     returning the amount of instruments.
6515     </t>
6516     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6517     <list>
6518     <t>if the file could not be handled</t>
6519     </list>
6520     </t>
6521     </list>
6522     </t>
6523    
6524     <t>Examples:</t>
6525     <t>
6526     <list>
6527     <t>C: "GET FILE INSTRUMENTS 'D:/Sounds/Foo.gig'"</t>
6528     <t>S: "10"</t>
6529     </list>
6530     </t>
6531     </section>
6532    
6533     <section title="Retrieving all instruments of a file" anchor="LIST FILE INSTRUMENTS">
6534     <t>The front-end can retrieve a list of all instruments
6535     within a given instrument file by sending the
6536     following command:</t>
6537     <t>
6538     <list>
6539     <t>LIST FILE INSTRUMENTS &lt;filename&gt;</t>
6540     </list>
6541     </t>
6542     <t>Where &lt;filename&gt; is the name of the instrument
6543     file (encapsulated into apostrophes, supporting escape
6544     sequences as described in chapter
6545     "<xref target="character_set">Character Set and Escape
6546     Sequences</xref>").</t>
6547    
6548     <t>The sampler will try to ask all sampler engines,
6549     whether they support the given file and ask the first
6550     engine with a positive answer for a list of IDs for the
6551     instruments in the given file.</t>
6552    
6553     <t>Possible Answers:</t>
6554     <t>
6555     <list>
6556     <t>On success, the sampler will answer by
6557     returning a comma separated list of
6558     instrument IDs.
6559     </t>
6560     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6561     <list>
6562     <t>if the file could not be handled</t>
6563     </list>
6564     </t>
6565     </list>
6566     </t>
6567    
6568     <t>Examples:</t>
6569     <t>
6570     <list>
6571     <t>C: "LIST FILE INSTRUMENTS 'D:/Sounds/Foo.gig'"</t>
6572     <t>S: "0,1,2,3,4,5,6,7,8,9"</t>
6573     </list>
6574     </t>
6575     </section>
6576    
6577     <section title="Retrieving informations about one instrument in a file" anchor="GET FILE INSTRUMENT INFO">
6578     <t>The front-end can retrieve detailed informations
6579     about a specific instrument within a given instrument
6580     file by sending the following command:</t>
6581     <t>
6582     <list>
6583     <t>GET FILE INSTRUMENT INFO &lt;filename&gt;
6584     &lt;instr-id&gt;</t>
6585     </list>
6586     </t>
6587     <t>Where &lt;filename&gt; is the name of the instrument
6588     file (encapsulated into apostrophes, supporting escape
6589     sequences as described in chapter
6590     "<xref target="character_set">Character Set and Escape
6591     Sequences</xref>") and &lt;instr-id&gt; is the numeric
6592     instrument ID as returned by the
6593     <xref target="LIST FILE INSTRUMENTS">
6594     "LIST FILE INSTRUMENTS"</xref> command.</t>
6595    
6596     <t>The sampler will try to ask all sampler engines,
6597     whether they support the given file and ask the first
6598     engine with a positive answer for informations about the
6599     specific instrument in the given file.</t>
6600    
6601     <t>Possible Answers:</t>
6602     <t>
6603     <list>
6604     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
6605     Each answer line begins with the settings category name
6606     followed by a colon and then a space character &lt;SP&gt; and finally
6607     the info character string to that setting category. At the
6608     moment the following categories are defined:</t>
6609    
6610     <t>
6611     <list>
6612     <t>NAME -
6613     <list>
6614     <t>name of the instrument as
6615     stored in the instrument file</t>
6616     </list>
6617     </t>
6618     <t>FORMAT_FAMILY -
6619     <list>
6620     <t>name of the sampler format
6621     of the given instrument</t>
6622     </list>
6623     </t>
6624     <t>FORMAT_VERSION -
6625     <list>
6626     <t>version of the sampler format
6627     the instrumen is stored as</t>
6628     </list>
6629     </t>
6630     <t>PRODUCT -
6631     <list>
6632     <t>official product name of the
6633     instrument as stored in the file
6634     </t>
6635     </list>
6636     </t>
6637     <t>ARTISTS -
6638     <list>
6639     <t>artists / sample library
6640     vendor of the instrument</t>
6641     </list>
6642     </t>
6643 iliev 1771 <t>KEY_BINDINGS -
6644     <list>
6645 iliev 1782 <t>comma separated list of integer values representing
6646     the instrument's key mapping in the range between 0 .. 127,
6647 iliev 1771 reflecting the analog meaning of the MIDI specification.</t>
6648     </list>
6649     </t>
6650     <t>KEYSWITCH_BINDINGS -
6651     <list>
6652 iliev 1782 <t>comma separated list of integer values representing
6653     the instrument's keyswitch mapping in the range between 0 .. 127,
6654 iliev 1771 reflecting the analog meaning of the MIDI specification.</t>
6655     </list>
6656     </t>
6657 schoenebeck 1554 </list>
6658     </t>
6659     </list>
6660     </t>
6661     <t>The mentioned fields above don't have to be in particular order.</t>
6662    
6663     <t>Example:</t>
6664     <t>
6665     <list>
6666     <t>C: "GET FILE INSTRUMENT INFO 'D:/Sounds/Foo.gig' 0"</t>
6667     <t>S: "NAME: Lunatic Loops"</t>
6668     <t>&nbsp;&nbsp;&nbsp;"FORMAT_FAMILY: GIG"</t>
6669     <t>&nbsp;&nbsp;&nbsp;"FORMAT_VERSION: 3"</t>
6670     <t>&nbsp;&nbsp;&nbsp;"PRODUCT: The Backbone Bongo Beats"</t>
6671     <t>&nbsp;&nbsp;&nbsp;"ARTISTS: Jimmy the Fish"</t>
6672     <t>&nbsp;&nbsp;&nbsp;"."</t>
6673     </list>
6674     </t>
6675     </section>
6676     </section>
6677 schoenebeck 2138 <section title="Managing Effects" anchor="effects">
6678     <t>Audio effects (e.g. reverb, delay, compression) can be
6679     applied to the audio signals generated by the sampler. The
6680     sampler usually provides a set of internal audio effects for
6681     this task. The exact set of effects depends on the availability
6682     of third party effect plugins installed on the system where the
6683     sampler runs on.</t>
6684     <t>At the moment only "send effects" are supported. Support for
6685     "insert effects" and "master effects" is planned to be added at
6686     a later point.</t>
6687     <t>The following commands allow to retrieve the set of internal
6688     effects available to the sampler, detailed informations about
6689     those effects and to create and destroy instances of such
6690     effects. After an instance of an effect is created, the effect
6691     instance can be inserted into the audio signal path of the
6692     sampler, e.g. as send effect.</t>
6693     <t>The sampler allows to create an arbitrary amount of so called
6694     send effect chains. Each effect chain can host an arbitrary
6695     amount of effect instances. The output of the first effect
6696     instance in an effect chain is fed to the input of the second
6697     effect instance of the chain and so on. So effects in one chain
6698     are processed sequentially. Send effect chains however are
6699     processed in parallel to other send effect chains. Audio signals
6700     of sampler channels are fed to send effects by creating FX sends
6701     to the respective sampler channel and assigning a destination
6702     send effect to that FX by using the
6703 schoenebeck 2140 <xref target="SET FX_SEND EFFECT">"SET FX_SEND EFFECT"</xref>
6704 schoenebeck 2138 command. The latter allows to route the FX send to the beginning
6705     of a send effect chain, as well as directly to any other
6706     position of the send effect chain.</t>
6707    
6708     <section title="Retrieve amount of available effects" anchor="GET AVAILABLE_EFFECTS">
6709     <t>The front-end can retrieve the amount of internal
6710     effects, available to the sampler by sending
6711     the following command:</t>
6712     <t>
6713     <list>
6714     <t>GET AVAILABLE_EFFECTS</t>
6715     </list>
6716     </t>
6717    
6718     <t>Possible Answers:</t>
6719     <t>
6720     <list>
6721     <t>The sampler will answer by returning the current
6722     number of effects available to the sampler.</t>
6723     </list>
6724     </t>
6725    
6726     <t>Examples:</t>
6727     <t>
6728     <list>
6729     <t>C: "GET AVAILABLE_EFFECTS"</t>
6730     <t>S: "129"</t>
6731     </list>
6732     </t>
6733     </section>
6734    
6735     <section title="Get list of available effects" anchor="LIST AVAILABLE_EFFECTS">
6736     <t>The set of available internal effects can change at
6737     runtime. The front-end can retrieve the list of internal
6738     effects, available to the sampler by sending the following
6739     command:</t>
6740     <t>
6741     <list>
6742     <t>LIST AVAILABLE_EFFECTS</t>
6743     </list>
6744     </t>
6745    
6746     <t>Possible Answers:</t>
6747     <t>
6748     <list>
6749     <t>The sampler will answer by returning a comma
6750     separated list with numerical IDs of effects. Note:
6751     the numercial ID of an effect is generated by the
6752     sampler for the current moment. The numerical ID of
6753     the same effect can change at runtime, e.g. when the
6754     user requests a rescan of available effect plugins.
6755     </t>
6756     </list>
6757     </t>
6758     <t>Example:</t>
6759     <t>
6760     <list>
6761     <t>C: "LIST AVAILABLE_EFFECTS"</t>
6762     <t>S: "5,6,7,120,121,122,123,124"</t>
6763     </list>
6764     </t>
6765     </section>
6766    
6767     <section title="Retrieving general information about an effect" anchor="GET EFFECT INFO">
6768     <t>The front-end can ask for general informations about an
6769     effect by sending the following command:</t>
6770     <t>
6771     <list>
6772     <t>GET EFFECT INFO &lt;effect-index&gt;</t>
6773     </list>
6774     </t>
6775     <t>Where &lt;effect-index&gt; is the numerical ID of an
6776     effect as returned by the
6777     <xref target="LIST AVAILABLE_EFFECTS">"LIST AVAILABLE_EFFECTS"</xref>
6778     command.</t>
6779     <t>Possible Answers:</t>
6780     <t>
6781     <list>
6782     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
6783     Each answer line begins with the effect information
6784     category name, followed by a colon and then a space
6785     character &lt;SP&gt; and finally the info character
6786     string to that effect information category. At the
6787     moment the following categories are defined:</t>
6788     <t>
6789     <list>
6790     <t>SYSTEM -
6791     <list>
6792     <t>name of the effect plugin system
6793     the effect is based on
6794     (e.g. "LADSPA")</t>
6795     </list>
6796     </t>
6797     <t>MODULE -
6798     <list>
6799     <t>module of the effect plugin
6800     system that contains this effect,
6801     the module is usually the
6802     dynamic-linked library (DLL)
6803     filename of the effect plugin,
6804     including full path (note that this
6805     filename may contain
6806     <xref target="character_set">escape sequences</xref>)</t>
6807     </list>
6808     </t>
6809     <t>NAME -
6810     <list>
6811     <t>character string defining the
6812     unique name of the effect within its
6813     module (note that the character
6814     string may contain
6815     <xref target="character_set">escape sequences</xref>)</t>
6816     </list>
6817     </t>
6818     <t>DESCRIPTION -
6819     <list>
6820     <t>human readable name of the
6821     effect, intended to be displayed in
6822     user interfaces (note that the
6823     character string may contain
6824     <xref target="character_set">escape sequences</xref>)</t>
6825     </list>
6826     </t>
6827     </list>
6828     </t>
6829     </list>
6830     </t>
6831     <t>The mentioned fields above don't have to be in particular order.</t>
6832    
6833     <t>Example:</t>
6834     <t>
6835     <list>
6836     <t>C: "GET EFFECT INFO 121"</t>
6837     <t>S: "SYSTEM: LADSPA"</t>
6838     <t>&nbsp;&nbsp;&nbsp;"MODULE: /usr/lib/ladspa/lowpass_iir_1891.so"</t>
6839     <t>&nbsp;&nbsp;&nbsp;"NAME: lowpass_iir"</t>
6840     <t>&nbsp;&nbsp;&nbsp;"DESCRIPTION: Glame Lowpass Filter"</t>
6841     <t>&nbsp;&nbsp;&nbsp;"."</t>
6842     </list>
6843     </t>
6844     </section>
6845    
6846     <section title="Creating an instance of an effect by its portable ID" anchor="CREATE EFFECT_INSTANCE">
6847     <t>The front-end can spawn an instance of the desired
6848     effect by sending the following command:</t>
6849     <t>
6850     <list>
6851     <t>CREATE EFFECT_INSTANCE &lt;effect-system&gt; &lt;module&gt; &lt;effect-name&gt;</t>
6852     </list>
6853     </t>
6854     <t>Where &lt;effect-system&gt; is the "SYSTEM" field,
6855     &lt;module&gt; the "MODULE" field and &lt;effect-name&gt;
6856     the "NAME" field as returned by the
6857     <xref target="GET EFFECT INFO">"GET EFFECT INFO"</xref>
6858     command. The filename of argument &lt;module&gt; and the
6859     character string of argument &lt;effect-name&gt; may contain
6860     <xref target="character_set">escape sequences</xref>.</t>
6861    
6862     <t>The sampler will try to load the requested effect and to
6863     create an instance of it. To allow loading the same effect
6864     on a different machine, probably even running a completely
6865     different operating system (e.g. Linux vs. Windows), the
6866     sampler tries to match &lt;module&gt; "softly". That means
6867     it first tries to find an effect that exactly matches the
6868     given &lt;module&gt; argument. If there is no exact match,
6869     the sampler will try to lower the restrictions on matching
6870     the &lt;module&gt; argument more and more, e.g. by ignoring
6871     upper / lower case differences and by ignoring the path of
6872     the DLL filename and file extension. If there is still no
6873     match at the end, the sampler will try to ignore the
6874     &lt;module&gt; argument completely and as a last resort
6875     search for an effect that only matches the given
6876     &lt;effect-system&gt; and &lt;effect-name&gt; arguments.</t>
6877    
6878     <t>Possible Answers:</t>
6879     <t>
6880     <list>
6881     <t>"OK[&lt;effect-instance&gt;]" -
6882     <list>
6883     <t>in case the effect instance was
6884     successfully created, where
6885     &lt;effect-instance&gt; is the numerical ID
6886     of the new effect instance</t>
6887     </list>
6888     </t>
6889     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
6890     <list>
6891     <t>in case the effect instance was spawned
6892     successfully, but there are noteworthy
6893     issue(s) related, providing an appropriate
6894     warning code and warning message</t>
6895     </list>
6896     </t>
6897     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6898     <list>
6899     <t>if the effect could not be instantiated</t>
6900     </list>
6901     </t>
6902     </list>
6903     </t>
6904    
6905     <t>Examples:</t>
6906     <t>
6907     <list>
6908     <t>C: "CREATE EFFECT_INSTANCE LADSPA '/usr/lib/ladspa/mod_delay_1419.so' 'modDelay'"</t>
6909     <t>S: "OK[0]"</t>
6910     </list>
6911     </t>
6912     </section>
6913    
6914     <section title="Creating an instance of an effect by its numerical ID" anchor="CREATE EFFECT_INSTANCE (non-portable)">
6915     <t>The front-end can spawn an instance of the desired
6916     effect by sending the following command:</t>
6917     <t>
6918     <list>
6919     <t>CREATE EFFECT_INSTANCE &lt;effect-index&gt;</t>
6920     </list>
6921     </t>
6922     <t>Where &lt;effect-index&gt; is the numerical ID of the
6923     effect as returned by the
6924     <xref target="LIST AVAILABLE_EFFECTS">"LIST AVAILABLE_EFFECTS"</xref>
6925     command.</t>
6926    
6927     <t>The sampler will try to load the requested effect and to
6928     create an instance of it.</t>
6929    
6930     <t>Note: Since the numerical ID of a certain effect can
6931     change at any time, you should not use this command in
6932     LSCP files to restore a certain effect at a later time! To
6933     store a sampler session including all its effects, use the
6934     <xref target="CREATE EFFECT_INSTANCE">portable text-based
6935     version of "CREATE EFFECT_INSTANCE"</xref> instead! This
6936     allows to restore a sampler session with all its effects
6937     also on other machines, possibly even running a completely
6938     different operating system (e.g. Linux vs. Windows), with
6939     different plugin directories or plugin DLL names.</t>
6940    
6941     <t>Possible Answers:</t>
6942     <t>
6943     <list>
6944     <t>"OK[&lt;effect-instance&gt;]" -
6945     <list>
6946     <t>in case the effect instance was
6947     successfully created, where
6948     &lt;effect-instance&gt; is the numerical ID
6949     of the new effect instance</t>
6950     </list>
6951     </t>
6952     <t>"WRN:&lt;warning-code&gt;:&lt;warning-message&gt;" -
6953     <list>
6954     <t>in case the effect instance was spawned
6955     successfully, but there are noteworthy
6956     issue(s) related, providing an appropriate
6957     warning code and warning message</t>
6958     </list>
6959     </t>
6960     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
6961     <list>
6962     <t>if the effect could not be instantiated</t>
6963     </list>
6964     </t>
6965     </list>
6966     </t>
6967    
6968     <t>Examples:</t>
6969     <t>
6970     <list>
6971     <t>C: "CREATE EFFECT_INSTANCE 72"</t>
6972     <t>S: "OK[5]"</t>
6973     </list>
6974     </t>
6975     </section>
6976    
6977     <section title="Destroy an effect instance" anchor="DESTROY EFFECT_INSTANCE">
6978     <t>The front-end can destroy an unusued effect instance and
6979     thus freeing it from memory by sending the following command:</t>
6980     <t>
6981     <list>
6982     <t>DESTROY EFFECT_INSTANCE &lt;effect-instance&gt;</t>
6983     </list>
6984     </t>
6985     <t>Where &lt;effect-instance&gt; is the numerical ID of the
6986     effect instance as returned by the
6987     <xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref> or
6988     <xref target="LIST EFFECT_INSTANCES">"LIST EFFECT_INSTANCES"</xref>
6989     command.</t>
6990    
6991     <t>The effect instance can only be destroyed if it's not
6992     used in any part of the sampler's audio signal path anymore.
6993     If the effect instance is still in use somewhere, trying to
6994     destroy the effect instance will result in an error
6995     message.</t>
6996    
6997     <t>Possible Answers:</t>
6998     <t>
6999     <list>
7000     <t>"OK" -
7001     <list>
7002     <t>in case the effect instance was successfully destroyed</t>
7003     </list>
7004     </t>
7005     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
7006     <list>
7007     <t>in case it failed, providing an appropriate error code and
7008     error message</t>
7009     </list>
7010     </t>
7011     </list>
7012     </t>
7013    
7014     <t>Examples:</t>
7015     <t>
7016     <list>
7017     <t>C: "DESTROY EFFECT_INSTANCE 5"</t>
7018     <t>S: "OK"</t>
7019     </list>
7020     </t>
7021     </section>
7022    
7023     <section title="Retrieve amount of effect instances" anchor="GET EFFECT_INSTANCES">
7024     <t>The front-end can retrieve the current amount of effect
7025     instances by sending the following command:</t>
7026     <t>
7027     <list>
7028     <t>GET EFFECT_INSTANCES</t>
7029     </list>
7030     </t>
7031    
7032     <t>Possible Answers:</t>
7033     <t>
7034     <list>
7035     <t>The sampler will answer by returning the current
7036     number of effect instances created and not yet
7037     destroyed in the current sampler session.</t>
7038     </list>
7039     </t>
7040    
7041     <t>Examples:</t>
7042     <t>
7043     <list>
7044     <t>C: "GET EFFECT_INSTANCES"</t>
7045     <t>S: "14"</t>
7046     </list>
7047     </t>
7048     </section>
7049    
7050     <section title="Get list of effect instances" anchor="LIST EFFECT_INSTANCES">
7051     <t>The front-end can retrieve the current list of effect
7052     instances by sending the following command:</t>
7053     <t>
7054     <list>
7055     <t>LIST EFFECT_INSTANCES</t>
7056     </list>
7057     </t>
7058    
7059     <t>Possible Answers:</t>
7060     <t>
7061     <list>
7062     <t>The sampler will answer by returning a comma
7063     separated list with numerical IDs of effects
7064     instances.
7065     </t>
7066     </list>
7067     </t>
7068     <t>Example:</t>
7069     <t>
7070     <list>
7071     <t>C: "LIST EFFECT_INSTANCES"</t>
7072     <t>S: "9,11,14,15,16,17,25"</t>
7073     </list>
7074     </t>
7075     </section>
7076    
7077     <section title="Retrieving current information about an effect instance" anchor="GET EFFECT_INSTANCE INFO">
7078     <t>The front-end can ask for the current informations about
7079     a particular effect instance by sending the following command:</t>
7080     <t>
7081     <list>
7082     <t>GET EFFECT_INSTANCE INFO &lt;effect-instance&gt;</t>
7083     </list>
7084     </t>
7085     <t>Where &lt;effect-instance&gt; is the numerical ID of an
7086     effect instance as returned by the
7087     <xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref>
7088     or
7089     <xref target="LIST EFFECT_INSTANCES">"LIST EFFECT_INSTANCES"</xref>
7090     command.</t>
7091    
7092     <t>Possible Answers:</t>
7093     <t>
7094     <list>
7095     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
7096     Each answer line begins with the information
7097     category name, followed by a colon and then a space
7098     character &lt;SP&gt; and finally the info character
7099     string to that information category. At the
7100     moment the following categories are defined:</t>
7101     <t>
7102     <list>
7103     <t>SYSTEM -
7104     <list>
7105     <t>name of the effect plugin system
7106     the effect is based on
7107     (e.g. "LADSPA")</t>
7108     </list>
7109     </t>
7110     <t>MODULE -
7111     <list>
7112     <t>module of the effect plugin
7113     system that contains this effect,
7114     the module is usually the
7115     dynamic-linked library (DLL)
7116     filename of the effect plugin,
7117     including full path (note that this
7118     filename may contain
7119     <xref target="character_set">escape sequences</xref>)</t>
7120     </list>
7121     </t>
7122     <t>NAME -
7123     <list>
7124     <t>character string defining the
7125     unique name of the effect within its
7126     module (note that the character
7127     string may contain
7128     <xref target="character_set">escape sequences</xref>)</t>
7129     </list>
7130     </t>
7131     <t>DESCRIPTION -
7132     <list>
7133     <t>human readable name of the
7134     effect, intended to be displayed in
7135     user interfaces (note that the
7136     character string may contain
7137     <xref target="character_set">escape sequences</xref>)</t>
7138     </list>
7139     </t>
7140     <t>INPUT_CONTROLS -
7141     <list>
7142     <t>amount of input controls the
7143     effect instance provides, to allow
7144     controlling the effect parameters in
7145     realtime</t>
7146     </list>
7147     </t>
7148     </list>
7149     </t>
7150     </list>
7151     </t>
7152     <t>The mentioned fields above don't have to be in particular order.</t>
7153    
7154     <t>Example:</t>
7155     <t>
7156     <list>
7157     <t>C: "GET EFFECT_INSTANCE INFO 3"</t>
7158     <t>S: "SYSTEM: LADSPA"</t>
7159     <t>&nbsp;&nbsp;&nbsp;"MODULE: /usr/lib/ladspa/mod_delay_1419.so"</t>
7160     <t>&nbsp;&nbsp;&nbsp;"NAME: modDelay"</t>
7161     <t>&nbsp;&nbsp;&nbsp;"DESCRIPTION: Modulatable delay"</t>
7162     <t>&nbsp;&nbsp;&nbsp;"INPUT_CONTROLS: 1"</t>
7163     <t>&nbsp;&nbsp;&nbsp;"."</t>
7164     </list>
7165     </t>
7166     </section>
7167    
7168     <section title="Retrieving information about an effect parameter" anchor="GET EFFECT_INSTANCE_INPUT_CONTROL INFO">
7169     <t>Effects typically provide a certain set of effect
7170     parameters which can be altered by the user in realtime
7171     (e.g. depth of a reverb effect, duration of a delay effect,
7172     dry / wet signal ratio). Those controllable effect parameters
7173     are called "input controls". The front-end can ask for the
7174     current informations of an effect instance's input control
7175     by sending the following command:</t>
7176     <t>
7177     <list>
7178     <t>GET EFFECT_INSTANCE_INPUT_CONTROL INFO &lt;effect-instance&gt; &lt;input-control&gt;</t>
7179     </list>
7180     </t>
7181     <t>Where &lt;effect-instance&gt; is the numerical ID of an
7182     effect instance as returned by the
7183     <xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref>
7184     or
7185     <xref target="LIST EFFECT_INSTANCES">"LIST EFFECT_INSTANCES"</xref>
7186     command and &lt;input-control&gt; is the index of the input
7187     control within the numerical bounds as returned by the
7188     "INPUT_CONTROLS" field of the
7189     <xref target="GET EFFECT_INSTANCE INFO">"GET EFFECT_INSTANCE INFO"</xref>
7190     command.</t>
7191    
7192     <t>Possible Answers:</t>
7193     <t>
7194     <list>
7195     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
7196     Each answer line begins with the information
7197     category name, followed by a colon and then a space
7198     character &lt;SP&gt; and finally the info character
7199     string to that information category. There are
7200     information categories which are always returned,
7201     independent of the respective effect parameter and
7202     there are optional information categories
7203     which are only shown for certain effect parameters.
7204     At the moment the following categories are defined:</t>
7205     <t>
7206     <list>
7207     <t>DESCRIPTION -
7208     <list>
7209     <t>(always returned)
7210     human readable name of the
7211     effect parameter, intended to be
7212     displayed in user interfaces (note
7213     that the character string may
7214     contain <xref target="character_set">escape sequences</xref>)</t>
7215     </list>
7216     </t>
7217     <t>VALUE -
7218     <list>
7219     <t>
7220     (always returned)
7221     current (optional dotted)
7222     floating point value of this effect
7223     parameter</t>
7224     </list>
7225     </t>
7226     <t>RANGE_MIN -
7227     <list>
7228     <t>
7229     (optionally returned)
7230     minimum allowed value for this
7231     effect parameter</t>
7232     </list>
7233     </t>
7234     <t>RANGE_MAX -
7235     <list>
7236     <t>
7237     (optionally returned)
7238     maximum allowed value for this
7239     effect parameter</t>
7240     </list>
7241     </t>
7242     <t>POSSIBILITIES -
7243     <list>
7244     <t>
7245     (optionally returned)
7246     comma separated list of
7247     (optional dotted) floating point
7248     numbers, reflecting the exact set of
7249     possible values for this effect
7250     parameter</t>
7251     </list>
7252     </t>
7253     <t>DEFAULT -
7254     <list>
7255     <t>
7256     (optionally returned)
7257     default value of this effect
7258     parameter</t>
7259     </list>
7260     </t>
7261     </list>
7262     </t>
7263     </list>
7264     </t>
7265     <t>The mentioned fields above don't have to be in particular order.</t>
7266    
7267     <t>Example:</t>
7268     <t>
7269     <list>
7270     <t>C: "GET EFFECT_INSTANCE_INPUT_CONTROL INFO 1 0"</t>
7271 schoenebeck 2142 <t>S: "DESCRIPTION: Base delay (s)"</t>
7272 schoenebeck 2138 <t>&nbsp;&nbsp;&nbsp;"VALUE: 0.500"</t>
7273     <t>&nbsp;&nbsp;&nbsp;"RANGE_MIN: 0.000"</t>
7274     <t>&nbsp;&nbsp;&nbsp;"."</t>
7275     </list>
7276     </t>
7277     </section>
7278    
7279     <section title="Altering an effect parameter" anchor="SET EFFECT_INSTANCE_INPUT_CONTROL VALUE">
7280     <t>The front-end can alter the current value of an effect
7281     parameter by sending the following command:</t>
7282     <t>
7283     <list>
7284     <t>SET EFFECT_INSTANCE_INPUT_CONTROL VALUE &lt;effect-instance&gt; &lt;input-control&gt; &lt;value&gt;</t>
7285     </list>
7286     </t>
7287     <t>Where &lt;effect-instance&gt; is the numerical ID of the
7288     effect instance as returned by the
7289     <xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref> or
7290     <xref target="LIST EFFECT_INSTANCES">"LIST EFFECT_INSTANCES"</xref>
7291     command, &lt;input-control&gt; is the index of the input
7292     control within the numerical bounds as returned by the
7293     "INPUT_CONTROLS" field of the
7294     <xref target="GET EFFECT_INSTANCE INFO">"GET EFFECT_INSTANCE INFO"</xref>
7295     command and &lt;value&gt; is the new (optional dotted)
7296     floating point value for this effect parameter.</t>
7297    
7298     <t>Possible Answers:</t>
7299     <t>
7300     <list>
7301     <t>"OK" -
7302     <list>
7303     <t>in case the effect was altered successfully</t>
7304     </list>
7305     </t>
7306     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
7307     <list>
7308     <t>in case it failed, providing an appropriate error code and
7309     error message</t>
7310     </list>
7311     </t>
7312     </list>
7313     </t>
7314    
7315     <t>Examples:</t>
7316     <t>
7317     <list>
7318     <t>C: "SET EFFECT_INSTANCE_INPUT_CONTROL VALUE 0 1 0.5"</t>
7319     <t>S: "OK"</t>
7320     </list>
7321     </t>
7322     </section>
7323    
7324     <section title="Retrieve amount of send effect chains" anchor="GET SEND_EFFECT_CHAINS">
7325     <t>The front-end can retrieve the current amount of send
7326     effect chains of an audio output device by sending the
7327     following command:</t>
7328     <t>
7329     <list>
7330     <t>GET SEND_EFFECT_CHAINS &lt;audio-device&gt;</t>
7331     </list>
7332     </t>
7333     <t>Where &lt;audio-device&gt; should be replaced by the
7334     numerical ID of the audio output device as given by the
7335     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7336     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7337     command.</t>
7338    
7339     <t>Possible Answers:</t>
7340     <t>
7341     <list>
7342     <t>The sampler will answer by returning the current
7343     number of send effect chains of the supplied audio
7344     output device.</t>
7345     </list>
7346     </t>
7347    
7348     <t>Examples:</t>
7349     <t>
7350     <list>
7351     <t>C: "GET SEND_EFFECT_CHAINS 0"</t>
7352     <t>S: "4"</t>
7353     </list>
7354     </t>
7355     </section>
7356    
7357     <section title="Retrieve list of send effect chains" anchor="LIST SEND_EFFECT_CHAINS">
7358     <t>The front-end can retrieve the current list of send
7359     effect chains of an audio output device by sending the
7360     following command:</t>
7361     <t>
7362     <list>
7363     <t>LIST SEND_EFFECT_CHAINS &lt;audio-device&gt;</t>
7364     </list>
7365     </t>
7366     <t>Where &lt;audio-device&gt; should be replaced by the
7367     numerical ID of the audio output device as given by the
7368     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7369     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7370     command.</t>
7371    
7372     <t>Possible Answers:</t>
7373     <t>
7374     <list>
7375     <t>The sampler will answer by returning a comma
7376     separated list with numerical IDs of send effect
7377     chains of the supplied audio output device.
7378     </t>
7379     </list>
7380     </t>
7381    
7382     <t>Examples:</t>
7383     <t>
7384     <list>
7385     <t>C: "LIST SEND_EFFECT_CHAINS 0"</t>
7386     <t>S: "3,4,7"</t>
7387     </list>
7388     </t>
7389     </section>
7390    
7391     <section title="Add send effect chain" anchor="ADD SEND_EFFECT_CHAIN">
7392     <t>The front-end can add a send effect chain by sending the
7393     following command:</t>
7394     <t>
7395     <list>
7396     <t>ADD SEND_EFFECT_CHAIN &lt;audio-device&gt;</t>
7397     </list>
7398     </t>
7399     <t>Where &lt;audio-device&gt; should be replaced by the
7400     numerical ID of the audio output device as given by the
7401     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7402     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7403     command.</t>
7404    
7405     <t>Possible Answers:</t>
7406     <t>
7407     <list>
7408     <t>"OK[&lt;effect-chain&gt;]" -
7409     <list>
7410     <t>in case the send effect chain was
7411     added successfully, where
7412     &lt;effect-chain&gt; is the numerical ID
7413     of the new send effect chain</t>
7414     </list>
7415     </t>
7416     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
7417     <list>
7418     <t>if the send effect chain could not be added</t>
7419     </list>
7420     </t>
7421     </list>
7422     </t>
7423    
7424     <t>Examples:</t>
7425     <t>
7426     <list>
7427     <t>C: "ADD SEND_EFFECT_CHAIN 0"</t>
7428     <t>S: "OK[2]"</t>
7429     </list>
7430     </t>
7431     </section>
7432    
7433     <section title="Remove send effect chain" anchor="REMOVE SEND_EFFECT_CHAIN">
7434     <t>The front-end can remove a send effect chain by sending
7435     the following command:</t>
7436     <t>
7437     <list>
7438     <t>REMOVE SEND_EFFECT_CHAIN &lt;audio-device&gt; &lt;effect-chain&gt;</t>
7439     </list>
7440     </t>
7441     <t>Where &lt;audio-device&gt; should be replaced by the
7442     numerical ID of the audio output device as given by the
7443     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7444     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7445     command and &lt;effect-chain&gt; by the numerical ID as
7446     returned by the
7447     <xref target="ADD SEND_EFFECT_CHAIN">"ADD SEND_EFFECT_CHAIN"</xref>
7448     or
7449     <xref target="LIST SEND_EFFECT_CHAINS">"LIST SEND_EFFECT_CHAINS"</xref>
7450     command.</t>
7451    
7452     <t>Possible Answers:</t>
7453     <t>
7454     <list>
7455     <t>"OK" -
7456     <list>
7457     <t>in case the send effect chain was
7458     removed successfully</t>
7459     </list>
7460     </t>
7461     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
7462     <list>
7463     <t>if the send effect chain could not be removed</t>
7464     </list>
7465     </t>
7466     </list>
7467     </t>
7468    
7469     <t>Examples:</t>
7470     <t>
7471     <list>
7472     <t>C: "REMOVE SEND_EFFECT_CHAIN 0 2"</t>
7473     <t>S: "OK"</t>
7474     </list>
7475     </t>
7476     </section>
7477    
7478     <section title="Retrieving information about a send effect chain" anchor="GET SEND_EFFECT_CHAIN INFO">
7479     <t>The front-end can ask for informations of a send effect
7480     chain by sending the following command:</t>
7481     <t>
7482     <list>
7483     <t>GET SEND_EFFECT_CHAIN INFO &lt;audio-device&gt; &lt;effect-chain&gt;</t>
7484     </list>
7485     </t>
7486     <t>Where &lt;audio-device&gt; should be replaced by the
7487     numerical ID of the audio output device as given by the
7488     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7489     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7490     command and &lt;effect-chain&gt; by the numerical ID as
7491     returned by the
7492     <xref target="ADD SEND_EFFECT_CHAIN">"ADD SEND_EFFECT_CHAIN"</xref>
7493     or
7494     <xref target="LIST SEND_EFFECT_CHAINS">"LIST SEND_EFFECT_CHAINS"</xref>
7495     command.</t>
7496    
7497     <t>Possible Answers:</t>
7498     <t>
7499     <list>
7500     <t>LinuxSampler will answer by sending a &lt;CRLF&gt; separated list.
7501     Each answer line begins with the information
7502     category name, followed by a colon and then a space
7503     character &lt;SP&gt; and finally the info character
7504     string to that information category.
7505     At the moment the following categories are defined:</t>
7506     <t>
7507     <list>
7508     <t>EFFECT_COUNT -
7509     <list>
7510     <t>amount of effects in this send
7511     effect chain</t>
7512     </list>
7513     </t>
7514     <t>EFFECT_SEQUENCE -
7515     <list>
7516     <t>comma separated list of the
7517     numerical IDs of the effect
7518     instances in this send effect chain,
7519     in the order as they are procssed in
7520     the effect chain</t>
7521     </list>
7522     </t>
7523     </list>
7524     </t>
7525     </list>
7526     </t>
7527     <t>The mentioned fields above don't have to be in particular order.</t>
7528    
7529     <t>Example:</t>
7530     <t>
7531     <list>
7532     <t>C: "GET SEND_EFFECT_CHAIN INFO 0 2"</t>
7533     <t>S: "EFFECT_COUNT: 3"</t>
7534     <t>&nbsp;&nbsp;&nbsp;"EFFECT_SEQUENCE: 31,4,7"</t>
7535     <t>&nbsp;&nbsp;&nbsp;"."</t>
7536     </list>
7537     </t>
7538     </section>
7539    
7540     <section title="Append effect instance to a send effect chain" anchor="APPEND SEND_EFFECT_CHAIN EFFECT">
7541     <t>The front-end can add an unused effect instance to the
7542     end of a send effect chain by sending the following command:</t>
7543     <t>
7544     <list>
7545     <t>APPEND SEND_EFFECT_CHAIN EFFECT &lt;audio-device&gt; &lt;effect-chain&gt; &lt;effect-instance&gt;</t>
7546     </list>
7547     </t>
7548     <t>Where &lt;audio-device&gt; should be replaced by the
7549     numerical ID of the audio output device as given by the
7550     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7551     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7552     command and &lt;effect-chain&gt; by the numerical ID as
7553     returned by the
7554     <xref target="ADD SEND_EFFECT_CHAIN">"ADD SEND_EFFECT_CHAIN"</xref>
7555     or
7556     <xref target="LIST SEND_EFFECT_CHAINS">"LIST SEND_EFFECT_CHAINS"</xref>
7557     command and &lt;effect-instance&gt; as returned by the
7558     <xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref> or
7559     <xref target="LIST EFFECT_INSTANCES">"LIST EFFECT_INSTANCES"</xref>
7560     command.</t>
7561     <t>Only unused effect instances can be added to the effect
7562     chain. Trying to add an effect instance which is already in
7563     use somewhere in the audio signal path of the sampler will
7564     result in an error.</t>
7565    
7566     <t>Possible Answers:</t>
7567     <t>
7568     <list>
7569     <t>"OK" -
7570     <list>
7571     <t>in case the effect instance was
7572     added successfully to the chain</t>
7573     </list>
7574     </t>
7575     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
7576     <list>
7577     <t>if the effect instance could not be added</t>
7578     </list>
7579     </t>
7580     </list>
7581     </t>
7582    
7583     <t>Examples:</t>
7584     <t>
7585     <list>
7586     <t>C: "APPEND SEND_EFFECT_CHAIN EFFECT 0 2 38"</t>
7587     <t>S: "OK"</t>
7588     </list>
7589     </t>
7590     </section>
7591    
7592     <section title="Insert effect instance to a send effect chain" anchor="INSERT SEND_EFFECT_CHAIN EFFECT">
7593     <t>The front-end can add an unused effect instance to a
7594     certain position of a send effect chain by sending the
7595     following command:</t>
7596     <t>
7597     <list>
7598     <t>INSERT SEND_EFFECT_CHAIN EFFECT &lt;audio-device&gt; &lt;effect-chain&gt; &lt;chain-pos&gt; &lt;effect-instance&gt;</t>
7599     </list>
7600     </t>
7601     <t>Where &lt;audio-device&gt; should be replaced by the
7602     numerical ID of the audio output device as given by the
7603     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7604     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7605     command, &lt;effect-chain&gt; by the numerical ID as
7606     returned by the
7607     <xref target="ADD SEND_EFFECT_CHAIN">"ADD SEND_EFFECT_CHAIN"</xref>
7608     or
7609     <xref target="LIST SEND_EFFECT_CHAINS">"LIST SEND_EFFECT_CHAINS"</xref>
7610     command, &lt;effect-instance&gt; as returned by the
7611     <xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref> or
7612     <xref target="LIST EFFECT_INSTANCES">"LIST EFFECT_INSTANCES"</xref>
7613     command and &lt;chain-pos&gt; the exact position of the
7614     effect chain where the supplied effect shall be inserted
7615     to.</t>
7616     <t>Only unused effect instances can be added to the effect
7617     chain. Trying to add an effect instance which is already in
7618     use somewhere in the audio signal path of the sampler will
7619     result in an error.</t>
7620    
7621     <t>Possible Answers:</t>
7622     <t>
7623     <list>
7624     <t>"OK" -
7625     <list>
7626     <t>in case the effect instance was
7627     added successfully to the chain</t>
7628     </list>
7629     </t>
7630     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
7631     <list>
7632     <t>if the effect instance could not be added</t>
7633     </list>
7634     </t>
7635     </list>
7636     </t>
7637    
7638     <t>Examples:</t>
7639     <t>
7640     <list>
7641     <t>C: "INSERT SEND_EFFECT_CHAIN EFFECT 0 2 4 38"</t>
7642     <t>S: "OK"</t>
7643     </list>
7644     </t>
7645     </section>
7646    
7647     <section title="Remove effect instance from send effect chain" anchor="REMOVE SEND_EFFECT_CHAIN EFFECT">
7648     <t>The front-end can remove an effect instance from a
7649     certain position of a send effect chain by sending the
7650     following command:</t>
7651     <t>
7652     <list>
7653     <t>REMOVE SEND_EFFECT_CHAIN EFFECT &lt;audio-device&gt; &lt;effect-chain&gt; &lt;chain-pos&gt;</t>
7654     </list>
7655     </t>
7656     <t>Where &lt;audio-device&gt; should be replaced by the
7657     numerical ID of the audio output device as given by the
7658     <xref target="CREATE AUDIO_OUTPUT_DEVICE">"CREATE AUDIO_OUTPUT_DEVICE"</xref>
7659     or <xref target="LIST AUDIO_OUTPUT_DEVICES">"LIST AUDIO_OUTPUT_DEVICES"</xref>
7660     command, &lt;effect-chain&gt; by the numerical ID as
7661     returned by the
7662     <xref target="ADD SEND_EFFECT_CHAIN">"ADD SEND_EFFECT_CHAIN"</xref>
7663     or
7664     <xref target="LIST SEND_EFFECT_CHAINS">"LIST SEND_EFFECT_CHAINS"</xref>
7665     command and &lt;chain-pos&gt; the exact position of the
7666     effect instance to be removed from the effect chain.</t>
7667    
7668     <t>Possible Answers:</t>
7669     <t>
7670     <list>
7671     <t>"OK" -
7672     <list>
7673     <t>in case the effect instance was
7674     removed successfully</t>
7675     </list>
7676     </t>
7677     <t>"ERR:&lt;error-code&gt;:&lt;error-message&gt;" -
7678     <list>
7679     <t>if the effect instance could not be removed</t>
7680     </list>
7681     </t>
7682     </list>
7683     </t>
7684    
7685     <t>Examples:</t>
7686     <t>
7687     <list>
7688     <t>C: "REMOVE SEND_EFFECT_CHAIN EFFECT 0 2 4"</t>
7689     <t>S: "OK"</t>
7690     </list>
7691     </t>
7692     </section>
7693    
7694     </section>
7695 schoenebeck 151 </section>
7696    
7697 schoenebeck 534 <section title="Command Syntax" anchor="command_syntax">
7698 schoenebeck 573 <t>The grammar of the control protocol as descibed in <xref target="control_commands"/>
7699     is defined below using Backus-Naur Form (BNF as described in <xref target="RFC2234"/>)
7700     where applicable.
7701     </t>
7702     <!--
7703     This section is automatically generated by scripts/update_grammar.pl
7704     from src/network/lscp.y (yacc input file). Do not modify this section
7705     manually !
7706     -->
7707     <!-- GRAMMAR_BNF_BEGIN - do NOT delete or modify this line !!! -->
7708 schoenebeck 937
7709     <t>input =
7710     <list>
7711     <t>line LF
7712     </t>
7713     <t>/ line CR LF
7714     </t>
7715     </list>
7716     </t>
7717     <t>line =
7718     <list>
7719     <t>/* epsilon (empty line ignored) */
7720     </t>
7721     <t>/ comment
7722     </t>
7723     <t>/ command
7724     </t>
7725     <t>/ error
7726     </t>
7727     </list>
7728     </t>
7729     <t>comment =
7730     <list>
7731     <t>'#'
7732     </t>
7733     <t>/ comment '#'
7734     </t>
7735     <t>/ comment SP
7736     </t>
7737     <t>/ comment number
7738     </t>
7739     <t>/ comment string
7740     </t>
7741     </list>
7742     </t>
7743     <t>command =
7744     <list>
7745 schoenebeck 973 <t>ADD SP add_instruction
7746 schoenebeck 937 </t>
7747 schoenebeck 944 <t>/ MAP SP map_instruction
7748     </t>
7749     <t>/ UNMAP SP unmap_instruction
7750     </t>
7751 schoenebeck 937 <t>/ GET SP get_instruction
7752     </t>
7753     <t>/ CREATE SP create_instruction
7754     </t>
7755     <t>/ DESTROY SP destroy_instruction
7756     </t>
7757     <t>/ LIST SP list_instruction
7758     </t>
7759     <t>/ LOAD SP load_instruction
7760     </t>
7761 schoenebeck 944 <t>/ REMOVE SP remove_instruction
7762 schoenebeck 937 </t>
7763     <t>/ SET SP set_instruction
7764     </t>
7765     <t>/ SUBSCRIBE SP subscribe_event
7766     </t>
7767     <t>/ UNSUBSCRIBE SP unsubscribe_event
7768     </t>
7769 schoenebeck 944 <t>/ RESET SP reset_instruction
7770 schoenebeck 937 </t>
7771 schoenebeck 944 <t>/ CLEAR SP clear_instruction
7772     </t>
7773 iliev 1187 <t>/ FIND SP find_instruction
7774     </t>
7775 iliev 1161 <t>/ MOVE SP move_instruction
7776     </t>
7777 iliev 1187 <t>/ COPY SP copy_instruction
7778     </t>
7779 schoenebeck 1249 <t>/ EDIT SP edit_instruction
7780     </t>
7781 iliev 1782 <t>/ FORMAT SP format_instruction
7782 schoenebeck 1362 </t>
7783 iliev 1782 <t>/ SEND SP send_instruction
7784     </t>
7785 schoenebeck 2135 <t>/ APPEND SP append_instruction
7786     </t>
7787     <t>/ INSERT SP insert_instruction
7788     </t>
7789 schoenebeck 937 <t>/ RESET
7790     </t>
7791     <t>/ QUIT
7792     </t>
7793     </list>
7794     </t>
7795 schoenebeck 973 <t>add_instruction =
7796     <list>
7797     <t>CHANNEL
7798     </t>
7799 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORY SP db_path
7800 iliev 1161 </t>
7801 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP db_path SP filename
7802 iliev 1161 </t>
7803 iliev 1782 <t>/ DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP FILE_AS_DIR SP db_path SP filename
7804     </t>
7805 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP scan_mode SP db_path SP filename
7806 iliev 1161 </t>
7807 iliev 1782 <t>/ DB_INSTRUMENTS SP scan_mode SP FILE_AS_DIR SP db_path SP filename
7808     </t>
7809 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP NON_MODAL SP db_path SP filename
7810 iliev 1200 </t>
7811 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP NON_MODAL SP db_path SP filename SP instrument_index
7812 iliev 1200 </t>
7813 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP db_path SP filename
7814 iliev 1161 </t>
7815 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP db_path SP filename SP instrument_index
7816 iliev 1161 </t>
7817 schoenebeck 973 <t>/ MIDI_INSTRUMENT_MAP
7818     </t>
7819     <t>/ MIDI_INSTRUMENT_MAP SP map_name
7820     </t>
7821 schoenebeck 2137 <t>/ SEND_EFFECT_CHAIN SP device_index
7822 schoenebeck 2135 </t>
7823 schoenebeck 973 </list>
7824     </t>
7825 schoenebeck 937 <t>subscribe_event =
7826     <list>
7827 iliev 984 <t>AUDIO_OUTPUT_DEVICE_COUNT
7828 schoenebeck 937 </t>
7829 iliev 984 <t>/ AUDIO_OUTPUT_DEVICE_INFO
7830     </t>
7831     <t>/ MIDI_INPUT_DEVICE_COUNT
7832     </t>
7833     <t>/ MIDI_INPUT_DEVICE_INFO
7834     </t>
7835     <t>/ CHANNEL_COUNT
7836     </t>
7837 schoenebeck 1686 <t>/ CHANNEL_MIDI
7838     </t>
7839 schoenebeck 1695 <t>/ DEVICE_MIDI
7840     </t>
7841 schoenebeck 937 <t>/ VOICE_COUNT
7842     </t>
7843     <t>/ STREAM_COUNT
7844     </t>
7845     <t>/ BUFFER_FILL
7846     </t>
7847     <t>/ CHANNEL_INFO
7848     </t>
7849 iliev 1109 <t>/ FX_SEND_COUNT
7850     </t>
7851     <t>/ FX_SEND_INFO
7852     </t>
7853 iliev 984 <t>/ MIDI_INSTRUMENT_MAP_COUNT
7854     </t>
7855     <t>/ MIDI_INSTRUMENT_MAP_INFO
7856     </t>
7857     <t>/ MIDI_INSTRUMENT_COUNT
7858     </t>
7859     <t>/ MIDI_INSTRUMENT_INFO
7860     </t>
7861 iliev 1161 <t>/ DB_INSTRUMENT_DIRECTORY_COUNT
7862     </t>
7863     <t>/ DB_INSTRUMENT_DIRECTORY_INFO
7864     </t>
7865     <t>/ DB_INSTRUMENT_COUNT
7866     </t>
7867     <t>/ DB_INSTRUMENT_INFO
7868     </t>
7869 iliev 1200 <t>/ DB_INSTRUMENTS_JOB_INFO
7870     </t>
7871 schoenebeck 937 <t>/ MISCELLANEOUS
7872     </t>
7873 iliev 1544 <t>/ TOTAL_STREAM_COUNT
7874     </t>
7875 schoenebeck 937 <t>/ TOTAL_VOICE_COUNT
7876     </t>
7877 iliev 1109 <t>/ GLOBAL_INFO
7878     </t>
7879 iliev 2188 <t>/ EFFECT_INSTANCE_COUNT
7880     </t>
7881     <t>/ EFFECT_INSTANCE_INFO
7882     </t>
7883     <t>/ SEND_EFFECT_CHAIN_COUNT
7884     </t>
7885     <t>/ SEND_EFFECT_CHAIN_INFO
7886     </t>
7887 schoenebeck 937 </list>
7888     </t>
7889     <t>unsubscribe_event =
7890     <list>
7891 iliev 984 <t>AUDIO_OUTPUT_DEVICE_COUNT
7892 schoenebeck 937 </t>
7893 iliev 984 <t>/ AUDIO_OUTPUT_DEVICE_INFO
7894     </t>
7895     <t>/ MIDI_INPUT_DEVICE_COUNT
7896     </t>
7897     <t>/ MIDI_INPUT_DEVICE_INFO
7898     </t>
7899     <t>/ CHANNEL_COUNT
7900     </t>
7901 schoenebeck 1686 <t>/ CHANNEL_MIDI
7902     </t>
7903 schoenebeck 1695 <t>/ DEVICE_MIDI
7904     </t>
7905 schoenebeck 937 <t>/ VOICE_COUNT
7906     </t>
7907     <t>/ STREAM_COUNT
7908     </t>
7909     <t>/ BUFFER_FILL
7910     </t>
7911     <t>/ CHANNEL_INFO
7912     </t>
7913 iliev 1109 <t>/ FX_SEND_COUNT
7914     </t>
7915     <t>/ FX_SEND_INFO
7916     </t>
7917 iliev 984 <t>/ MIDI_INSTRUMENT_MAP_COUNT
7918     </t>
7919     <t>/ MIDI_INSTRUMENT_MAP_INFO
7920     </t>
7921     <t>/ MIDI_INSTRUMENT_COUNT
7922     </t>
7923     <t>/ MIDI_INSTRUMENT_INFO
7924     </t>
7925 iliev 1161 <t>/ DB_INSTRUMENT_DIRECTORY_COUNT
7926     </t>
7927     <t>/ DB_INSTRUMENT_DIRECTORY_INFO
7928     </t>
7929     <t>/ DB_INSTRUMENT_COUNT
7930     </t>
7931     <t>/ DB_INSTRUMENT_INFO
7932     </t>
7933 iliev 1200 <t>/ DB_INSTRUMENTS_JOB_INFO
7934     </t>
7935 schoenebeck 937 <t>/ MISCELLANEOUS
7936     </t>
7937 iliev 1544 <t>/ TOTAL_STREAM_COUNT
7938     </t>
7939 schoenebeck 937 <t>/ TOTAL_VOICE_COUNT
7940     </t>
7941 iliev 1109 <t>/ GLOBAL_INFO
7942     </t>
7943 iliev 2188 <t>/ EFFECT_INSTANCE_COUNT
7944     </t>
7945     <t>/ EFFECT_INSTANCE_INFO
7946     </t>
7947     <t>/ SEND_EFFECT_CHAIN_COUNT
7948     </t>
7949     <t>/ SEND_EFFECT_CHAIN_INFO
7950     </t>
7951 schoenebeck 937 </list>
7952     </t>
7953 schoenebeck 944 <t>map_instruction =
7954     <list>
7955 schoenebeck 1047 <t>MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value
7956 schoenebeck 944 </t>
7957 schoenebeck 1047 <t>/ MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP instr_load_mode
7958 schoenebeck 944 </t>
7959 schoenebeck 1047 <t>/ MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP entry_name
7960 schoenebeck 944 </t>
7961 schoenebeck 1047 <t>/ MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP instr_load_mode SP entry_name
7962 schoenebeck 944 </t>
7963     </list>
7964     </t>
7965     <t>unmap_instruction =
7966     <list>
7967 schoenebeck 973 <t>MIDI_INSTRUMENT SP midi_map SP midi_bank SP midi_prog
7968 schoenebeck 944 </t>
7969     </list>
7970     </t>
7971     <t>remove_instruction =
7972     <list>
7973     <t>CHANNEL SP sampler_channel
7974     </t>
7975 schoenebeck 973 <t>/ MIDI_INSTRUMENT_MAP SP midi_map
7976     </t>
7977     <t>/ MIDI_INSTRUMENT_MAP SP ALL
7978     </t>
7979 schoenebeck 2137 <t>/ SEND_EFFECT_CHAIN SP device_index SP effect_chain
7980 schoenebeck 2135 </t>
7981 schoenebeck 2137 <t>/ SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP chain_pos
7982 schoenebeck 2135 </t>
7983 schoenebeck 2140 <t>/ FX_SEND SP EFFECT SP sampler_channel SP fx_send_id
7984 schoenebeck 2137 </t>
7985 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORY SP FORCE SP db_path
7986 iliev 1161 </t>
7987 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORY SP db_path
7988 iliev 1161 </t>
7989 schoenebeck 1362 <t>/ DB_INSTRUMENT SP db_path
7990 iliev 1161 </t>
7991 schoenebeck 944 </list>
7992     </t>
7993 schoenebeck 937 <t>get_instruction =
7994     <list>
7995     <t>AVAILABLE_ENGINES
7996     </t>
7997 schoenebeck 2135 <t>/ AVAILABLE_EFFECTS
7998     </t>
7999     <t>/ EFFECT_INSTANCES
8000     </t>
8001 schoenebeck 2137 <t>/ EFFECT SP INFO SP effect_index
8002 schoenebeck 2135 </t>
8003 schoenebeck 2137 <t>/ EFFECT_INSTANCE SP INFO SP effect_instance
8004 schoenebeck 2135 </t>
8005 schoenebeck 2137 <t>/ EFFECT_INSTANCE_INPUT_CONTROL SP INFO SP effect_instance SP input_control
8006 schoenebeck 2135 </t>
8007 schoenebeck 2137 <t>/ SEND_EFFECT_CHAINS SP device_index
8008 schoenebeck 2135 </t>
8009 schoenebeck 2137 <t>/ SEND_EFFECT_CHAIN SP INFO SP device_index SP effect_chain
8010 schoenebeck 2135 </t>
8011 schoenebeck 937 <t>/ AVAILABLE_MIDI_INPUT_DRIVERS
8012     </t>
8013     <t>/ MIDI_INPUT_DRIVER SP INFO SP string
8014     </t>
8015     <t>/ MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string
8016     </t>
8017     <t>/ MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list
8018     </t>
8019     <t>/ AVAILABLE_AUDIO_OUTPUT_DRIVERS
8020     </t>
8021     <t>/ AUDIO_OUTPUT_DRIVER SP INFO SP string
8022     </t>
8023     <t>/ AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string
8024     </t>
8025     <t>/ AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list
8026     </t>
8027     <t>/ AUDIO_OUTPUT_DEVICES
8028     </t>
8029     <t>/ MIDI_INPUT_DEVICES
8030     </t>
8031     <t>/ AUDIO_OUTPUT_DEVICE SP INFO SP number
8032     </t>
8033     <t>/ MIDI_INPUT_DEVICE SP INFO SP number
8034     </t>
8035     <t>/ MIDI_INPUT_PORT SP INFO SP number SP number
8036     </t>
8037     <t>/ MIDI_INPUT_PORT_PARAMETER SP INFO SP number SP number SP string
8038     </t>
8039     <t>/ AUDIO_OUTPUT_CHANNEL SP INFO SP number SP number
8040     </t>
8041     <t>/ AUDIO_OUTPUT_CHANNEL_PARAMETER SP INFO SP number SP number SP string
8042     </t>
8043     <t>/ CHANNELS
8044     </t>
8045     <t>/ CHANNEL SP INFO SP sampler_channel
8046     </t>
8047     <t>/ CHANNEL SP BUFFER_FILL SP buffer_size_type SP sampler_channel
8048     </t>
8049     <t>/ CHANNEL SP STREAM_COUNT SP sampler_channel
8050     </t>
8051     <t>/ CHANNEL SP VOICE_COUNT SP sampler_channel
8052     </t>
8053     <t>/ ENGINE SP INFO SP engine_name
8054     </t>
8055     <t>/ SERVER SP INFO
8056     </t>
8057 iliev 1544 <t>/ TOTAL_STREAM_COUNT
8058     </t>
8059 schoenebeck 937 <t>/ TOTAL_VOICE_COUNT
8060     </t>
8061     <t>/ TOTAL_VOICE_COUNT_MAX
8062     </t>
8063 schoenebeck 973 <t>/ MIDI_INSTRUMENTS SP midi_map
8064 schoenebeck 944 </t>
8065 schoenebeck 973 <t>/ MIDI_INSTRUMENTS SP ALL
8066 schoenebeck 944 </t>
8067 schoenebeck 973 <t>/ MIDI_INSTRUMENT SP INFO SP midi_map SP midi_bank SP midi_prog
8068     </t>
8069     <t>/ MIDI_INSTRUMENT_MAPS
8070     </t>
8071     <t>/ MIDI_INSTRUMENT_MAP SP INFO SP midi_map
8072     </t>
8073 schoenebeck 1001 <t>/ FX_SENDS SP sampler_channel
8074     </t>
8075     <t>/ FX_SEND SP INFO SP sampler_channel SP fx_send_id
8076     </t>
8077 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP db_path
8078 iliev 1187 </t>
8079 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORIES SP db_path
8080 iliev 1161 </t>
8081 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORY SP INFO SP db_path
8082 iliev 1161 </t>
8083 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP RECURSIVE SP db_path
8084 iliev 1187 </t>
8085 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP db_path
8086 iliev 1161 </t>
8087 schoenebeck 1362 <t>/ DB_INSTRUMENT SP INFO SP db_path
8088 iliev 1161 </t>
8089 iliev 1200 <t>/ DB_INSTRUMENTS_JOB SP INFO SP number
8090     </t>
8091 schoenebeck 1005 <t>/ VOLUME
8092     </t>
8093 schoenebeck 1800 <t>/ VOICES
8094     </t>
8095     <t>/ STREAMS
8096     </t>
8097 iliev 1544 <t>/ FILE SP INSTRUMENTS SP filename
8098     </t>
8099     <t>/ FILE SP INSTRUMENT SP INFO SP filename SP instrument_index
8100     </t>
8101 schoenebeck 937 </list>
8102     </t>
8103     <t>set_instruction =
8104     <list>
8105     <t>AUDIO_OUTPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list
8106     </t>
8107     <t>/ AUDIO_OUTPUT_CHANNEL_PARAMETER SP number SP number SP string '=' param_val_list
8108     </t>
8109     <t>/ MIDI_INPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list
8110     </t>
8111 iliev 1296 <t>/ MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '=' NONE
8112     </t>
8113 schoenebeck 937 <t>/ MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '=' param_val_list
8114     </t>
8115 schoenebeck 2137 <t>/ EFFECT_INSTANCE_INPUT_CONTROL SP VALUE SP effect_instance SP input_control SP control_value
8116 schoenebeck 2135 </t>
8117 schoenebeck 937 <t>/ CHANNEL SP set_chan_instruction
8118     </t>
8119 schoenebeck 973 <t>/ MIDI_INSTRUMENT_MAP SP NAME SP midi_map SP map_name
8120     </t>
8121 iliev 1135 <t>/ FX_SEND SP NAME SP sampler_channel SP fx_send_id SP fx_send_name
8122     </t>
8123 schoenebeck 1001 <t>/ FX_SEND SP AUDIO_OUTPUT_CHANNEL SP sampler_channel SP fx_send_id SP audio_channel_index SP audio_channel_index
8124     </t>
8125 schoenebeck 1026 <t>/ FX_SEND SP MIDI_CONTROLLER SP sampler_channel SP fx_send_id SP midi_ctrl
8126     </t>
8127     <t>/ FX_SEND SP LEVEL SP sampler_channel SP fx_send_id SP volume_value
8128     </t>
8129 schoenebeck 2140 <t>/ FX_SEND SP EFFECT SP sampler_channel SP fx_send_id SP effect_chain SP chain_pos
8130 schoenebeck 2137 </t>
8131 schoenebeck 1389 <t>/ DB_INSTRUMENT_DIRECTORY SP NAME SP db_path SP stringval_escaped
8132 iliev 1161 </t>
8133 schoenebeck 1389 <t>/ DB_INSTRUMENT_DIRECTORY SP DESCRIPTION SP db_path SP stringval_escaped
8134 iliev 1161 </t>
8135 schoenebeck 1389 <t>/ DB_INSTRUMENT SP NAME SP db_path SP stringval_escaped
8136 iliev 1161 </t>
8137 schoenebeck 1389 <t>/ DB_INSTRUMENT SP DESCRIPTION SP db_path SP stringval_escaped
8138 iliev 1161 </t>
8139 iliev 1727 <t>/ DB_INSTRUMENT SP FILE_PATH SP filename SP filename
8140     </t>
8141 schoenebeck 937 <t>/ ECHO SP boolean
8142     </t>
8143 schoenebeck 1005 <t>/ VOLUME SP volume_value
8144     </t>
8145 schoenebeck 1800 <t>/ VOICES SP number
8146     </t>
8147     <t>/ STREAMS SP number
8148     </t>
8149 schoenebeck 937 </list>
8150     </t>
8151     <t>create_instruction =
8152     <list>
8153     <t>AUDIO_OUTPUT_DEVICE SP string SP key_val_list
8154     </t>
8155     <t>/ AUDIO_OUTPUT_DEVICE SP string
8156     </t>
8157     <t>/ MIDI_INPUT_DEVICE SP string SP key_val_list
8158     </t>
8159     <t>/ MIDI_INPUT_DEVICE SP string
8160     </t>
8161 schoenebeck 1001 <t>/ FX_SEND SP sampler_channel SP midi_ctrl
8162     </t>
8163     <t>/ FX_SEND SP sampler_channel SP midi_ctrl SP fx_send_name
8164     </t>
8165 schoenebeck 2137 <t>/ EFFECT_INSTANCE SP effect_index
8166 schoenebeck 2135 </t>
8167 schoenebeck 2137 <t>/ EFFECT_INSTANCE SP effect_system SP module SP effect_name
8168 schoenebeck 2135 </t>
8169 schoenebeck 937 </list>
8170     </t>
8171 schoenebeck 944 <t>reset_instruction =
8172     <list>
8173     <t>CHANNEL SP sampler_channel
8174     </t>
8175     </list>
8176     </t>
8177     <t>clear_instruction =
8178     <list>
8179 schoenebeck 973 <t>MIDI_INSTRUMENTS SP midi_map
8180 schoenebeck 944 </t>
8181 schoenebeck 973 <t>/ MIDI_INSTRUMENTS SP ALL
8182     </t>
8183 schoenebeck 944 </list>
8184     </t>
8185 iliev 1187 <t>find_instruction =
8186     <list>
8187 schoenebeck 1362 <t>DB_INSTRUMENTS SP NON_RECURSIVE SP db_path SP query_val_list
8188 iliev 1187 </t>
8189 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP db_path SP query_val_list
8190 iliev 1187 </t>
8191 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORIES SP NON_RECURSIVE SP db_path SP query_val_list
8192 iliev 1187 </t>
8193 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORIES SP db_path SP query_val_list
8194 iliev 1187 </t>
8195 iliev 1727 <t>/ LOST SP DB_INSTRUMENT_FILES
8196     </t>
8197 iliev 1187 </list>
8198     </t>
8199 iliev 1161 <t>move_instruction =
8200     <list>
8201 schoenebeck 1362 <t>DB_INSTRUMENT_DIRECTORY SP db_path SP db_path
8202 iliev 1161 </t>
8203 schoenebeck 1362 <t>/ DB_INSTRUMENT SP db_path SP db_path
8204 iliev 1161 </t>
8205     </list>
8206     </t>
8207 iliev 1187 <t>copy_instruction =
8208     <list>
8209 schoenebeck 1362 <t>DB_INSTRUMENT_DIRECTORY SP db_path SP db_path
8210 iliev 1187 </t>
8211 schoenebeck 1362 <t>/ DB_INSTRUMENT SP db_path SP db_path
8212 iliev 1187 </t>
8213     </list>
8214     </t>
8215 schoenebeck 937 <t>destroy_instruction =
8216     <list>
8217     <t>AUDIO_OUTPUT_DEVICE SP number
8218     </t>
8219     <t>/ MIDI_INPUT_DEVICE SP number
8220     </t>
8221 schoenebeck 1001 <t>/ FX_SEND SP sampler_channel SP fx_send_id
8222     </t>
8223 schoenebeck 2135 <t>/ EFFECT_INSTANCE SP number
8224     </t>
8225 schoenebeck 937 </list>
8226     </t>
8227     <t>load_instruction =
8228     <list>
8229     <t>INSTRUMENT SP load_instr_args
8230     </t>
8231     <t>/ ENGINE SP load_engine_args
8232     </t>
8233     </list>
8234     </t>
8235 schoenebeck 2135 <t>append_instruction =
8236     <list>
8237 schoenebeck 2137 <t>SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP effect_instance
8238 schoenebeck 2135 </t>
8239     </list>
8240     </t>
8241     <t>insert_instruction =
8242     <list>
8243 schoenebeck 2137 <t>SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP chain_pos SP effect_instance
8244 schoenebeck 2135 </t>
8245     </list>
8246     </t>
8247 schoenebeck 937 <t>set_chan_instruction =
8248     <list>
8249     <t>AUDIO_OUTPUT_DEVICE SP sampler_channel SP device_index
8250     </t>
8251     <t>/ AUDIO_OUTPUT_CHANNEL SP sampler_channel SP audio_channel_index SP audio_channel_index
8252     </t>
8253     <t>/ AUDIO_OUTPUT_TYPE SP sampler_channel SP audio_output_type_name
8254     </t>
8255     <t>/ MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index SP midi_input_channel_index
8256     </t>
8257     <t>/ MIDI_INPUT_DEVICE SP sampler_channel SP device_index
8258     </t>
8259     <t>/ MIDI_INPUT_PORT SP sampler_channel SP midi_input_port_index
8260     </t>
8261     <t>/ MIDI_INPUT_CHANNEL SP sampler_channel SP midi_input_channel_index
8262     </t>
8263     <t>/ MIDI_INPUT_TYPE SP sampler_channel SP midi_input_type_name
8264     </t>
8265     <t>/ VOLUME SP sampler_channel SP volume_value
8266     </t>
8267     <t>/ MUTE SP sampler_channel SP boolean
8268     </t>
8269     <t>/ SOLO SP sampler_channel SP boolean
8270     </t>
8271 schoenebeck 973 <t>/ MIDI_INSTRUMENT_MAP SP sampler_channel SP midi_map
8272     </t>
8273     <t>/ MIDI_INSTRUMENT_MAP SP sampler_channel SP NONE
8274     </t>
8275     <t>/ MIDI_INSTRUMENT_MAP SP sampler_channel SP DEFAULT
8276     </t>
8277 schoenebeck 937 </list>
8278     </t>
8279 schoenebeck 1249 <t>edit_instruction =
8280     <list>
8281 schoenebeck 1407 <t>CHANNEL SP INSTRUMENT SP sampler_channel
8282 schoenebeck 1249 </t>
8283     </list>
8284     </t>
8285 schoenebeck 1362 <t>format_instruction =
8286     <list>
8287     <t>INSTRUMENTS_DB
8288     </t>
8289     </list>
8290     </t>
8291 schoenebeck 1047 <t>modal_arg =
8292     <list>
8293     <t>/* epsilon (empty argument) */
8294     </t>
8295     <t>/ NON_MODAL SP
8296     </t>
8297     </list>
8298     </t>
8299 schoenebeck 937 <t>key_val_list =
8300     <list>
8301     <t>string '=' param_val_list
8302     </t>
8303     <t>/ key_val_list SP string '=' param_val_list
8304     </t>
8305     </list>
8306     </t>
8307     <t>buffer_size_type =
8308     <list>
8309     <t>BYTES
8310     </t>
8311     <t>/ PERCENTAGE
8312     </t>
8313     </list>
8314     </t>
8315     <t>list_instruction =
8316     <list>
8317     <t>AUDIO_OUTPUT_DEVICES
8318     </t>
8319     <t>/ MIDI_INPUT_DEVICES
8320     </t>
8321     <t>/ CHANNELS
8322     </t>
8323     <t>/ AVAILABLE_ENGINES
8324     </t>
8325 schoenebeck 2135 <t>/ AVAILABLE_EFFECTS
8326     </t>
8327     <t>/ EFFECT_INSTANCES
8328     </t>
8329 schoenebeck 2137 <t>/ SEND_EFFECT_CHAINS SP number
8330 schoenebeck 2135 </t>
8331 schoenebeck 937 <t>/ AVAILABLE_MIDI_INPUT_DRIVERS
8332     </t>
8333     <t>/ AVAILABLE_AUDIO_OUTPUT_DRIVERS
8334     </t>
8335 schoenebeck 973 <t>/ MIDI_INSTRUMENTS SP midi_map
8336 schoenebeck 944 </t>
8337 schoenebeck 973 <t>/ MIDI_INSTRUMENTS SP ALL
8338     </t>
8339     <t>/ MIDI_INSTRUMENT_MAPS
8340     </t>
8341 schoenebeck 1001 <t>/ FX_SENDS SP sampler_channel
8342     </t>
8343 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP db_path
8344 iliev 1187 </t>
8345 schoenebeck 1362 <t>/ DB_INSTRUMENT_DIRECTORIES SP db_path
8346 iliev 1161 </t>
8347 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP RECURSIVE SP db_path
8348 iliev 1187 </t>
8349 schoenebeck 1362 <t>/ DB_INSTRUMENTS SP db_path
8350 iliev 1161 </t>
8351 iliev 1544 <t>/ FILE SP INSTRUMENTS SP filename
8352     </t>
8353 schoenebeck 937 </list>
8354     </t>
8355 iliev 1771 <t>send_instruction =
8356     <list>
8357     <t>CHANNEL SP MIDI_DATA SP string SP sampler_channel SP number SP number
8358     </t>
8359     </list>
8360     </t>
8361 schoenebeck 937 <t>load_instr_args =
8362     <list>
8363     <t>filename SP instrument_index SP sampler_channel
8364     </t>
8365     <t>/ NON_MODAL SP filename SP instrument_index SP sampler_channel
8366     </t>
8367     </list>
8368     </t>
8369     <t>load_engine_args =
8370     <list>
8371     <t>engine_name SP sampler_channel
8372     </t>
8373     </list>
8374     </t>
8375 schoenebeck 944 <t>instr_load_mode =
8376     <list>
8377     <t>ON_DEMAND
8378     </t>
8379     <t>/ ON_DEMAND_HOLD
8380     </t>
8381     <t>/ PERSISTENT
8382     </t>
8383     </list>
8384     </t>
8385 schoenebeck 2137 <t>effect_instance =
8386     <list>
8387     <t>number
8388     </t>
8389     </list>
8390     </t>
8391 schoenebeck 937 <t>device_index =
8392     <list>
8393     <t>number
8394     </t>
8395     </list>
8396     </t>
8397     <t>audio_channel_index =
8398     <list>
8399     <t>number
8400     </t>
8401     </list>
8402     </t>
8403     <t>audio_output_type_name =
8404     <list>
8405     <t>string
8406     </t>
8407     </list>
8408     </t>
8409     <t>midi_input_port_index =
8410     <list>
8411     <t>number
8412     </t>
8413     </list>
8414     </t>
8415     <t>midi_input_channel_index =
8416     <list>
8417     <t>number
8418     </t>
8419     <t>/ ALL
8420     </t>
8421     </list>
8422     </t>
8423     <t>midi_input_type_name =
8424     <list>
8425     <t>string
8426     </t>
8427     </list>
8428     </t>
8429 schoenebeck 973 <t>midi_map =
8430 schoenebeck 944 <list>
8431     <t>number
8432     </t>
8433     </list>
8434     </t>
8435 schoenebeck 973 <t>midi_bank =
8436 schoenebeck 944 <list>
8437     <t>number
8438     </t>
8439     </list>
8440     </t>
8441     <t>midi_prog =
8442     <list>
8443     <t>number
8444     </t>
8445     </list>
8446     </t>
8447 schoenebeck 1001 <t>midi_ctrl =
8448     <list>
8449     <t>number
8450     </t>
8451     </list>
8452     </t>
8453 schoenebeck 937 <t>volume_value =
8454     <list>
8455     <t>dotnum
8456     </t>
8457     <t>/ number
8458     </t>
8459     </list>
8460     </t>
8461 schoenebeck 2137 <t>control_value =
8462 schoenebeck 2135 <list>
8463     <t>real
8464     </t>
8465     </list>
8466     </t>
8467 schoenebeck 937 <t>sampler_channel =
8468     <list>
8469     <t>number
8470     </t>
8471     </list>
8472     </t>
8473     <t>instrument_index =
8474     <list>
8475     <t>number
8476     </t>
8477     </list>
8478     </t>
8479 schoenebeck 1001 <t>fx_send_id =
8480     <list>
8481     <t>number
8482     </t>
8483     </list>
8484     </t>
8485 schoenebeck 937 <t>engine_name =
8486     <list>
8487     <t>string
8488     </t>
8489     </list>
8490     </t>
8491 schoenebeck 1362 <t>filename =
8492 iliev 1161 <list>
8493 schoenebeck 1362 <t>path
8494 iliev 1161 </t>
8495     </list>
8496     </t>
8497 schoenebeck 1362 <t>db_path =
8498 iliev 1161 <list>
8499 schoenebeck 1362 <t>path
8500 iliev 1161 </t>
8501     </list>
8502     </t>
8503 schoenebeck 973 <t>map_name =
8504     <list>
8505 schoenebeck 1389 <t>stringval_escaped
8506 schoenebeck 973 </t>
8507     </list>
8508     </t>
8509 schoenebeck 944 <t>entry_name =
8510     <list>
8511 schoenebeck 1389 <t>stringval_escaped
8512 schoenebeck 944 </t>
8513     </list>
8514     </t>
8515 schoenebeck 1001 <t>fx_send_name =
8516     <list>
8517 schoenebeck 1389 <t>stringval_escaped
8518 schoenebeck 1001 </t>
8519     </list>
8520     </t>
8521 schoenebeck 2135 <t>effect_name =
8522     <list>
8523     <t>stringval_escaped
8524     </t>
8525     </list>
8526     </t>
8527 schoenebeck 2137 <t>effect_index =
8528     <list>
8529     <t>number
8530     </t>
8531     </list>
8532     </t>
8533     <t>effect_chain =
8534     <list>
8535     <t>number
8536     </t>
8537     </list>
8538     </t>
8539     <t>chain_pos =
8540     <list>
8541     <t>number
8542     </t>
8543     </list>
8544     </t>
8545     <t>input_control =
8546     <list>
8547     <t>number
8548     </t>
8549     </list>
8550     </t>
8551 schoenebeck 937 <t>param_val_list =
8552     <list>
8553     <t>param_val
8554     </t>
8555     <t>/ param_val_list','param_val
8556     </t>
8557     </list>
8558     </t>
8559 schoenebeck 1379
8560 schoenebeck 937 <t>param_val =
8561     <list>
8562     <t>string
8563     </t>
8564     <t>/ stringval
8565     </t>
8566     <t>/ number
8567     </t>
8568     <t>/ dotnum
8569     </t>
8570     </list>
8571     </t>
8572 iliev 1187 <t>query_val_list =
8573     <list>
8574     <t>string '=' query_val
8575     </t>
8576     <t>/ query_val_list SP string '=' query_val
8577     </t>
8578     </list>
8579     </t>
8580     <t>query_val =
8581     <list>
8582 schoenebeck 1389 <t>text_escaped
8583 iliev 1187 </t>
8584 schoenebeck 1389 <t>/ stringval_escaped
8585 iliev 1187 </t>
8586     </list>
8587     </t>
8588 iliev 1200 <t>scan_mode =
8589     <list>
8590     <t>RECURSIVE
8591     </t>
8592     <t>/ NON_RECURSIVE
8593     </t>
8594     <t>/ FLAT
8595     </t>
8596     </list>
8597     </t>
8598 schoenebeck 2137 <t>effect_system =
8599     <list>
8600     <t>string
8601     </t>
8602     </list>
8603     </t>
8604     <t>module =
8605     <list>
8606     <t>filename
8607     </t>
8608     </list>
8609     </t>
8610 schoenebeck 937
8611 schoenebeck 573 <!-- GRAMMAR_BNF_END - do NOT delete or modify this line !!! -->
8612 schoenebeck 1249
8613     <section title="Character Set and Escape Sequences" anchor="character_set">
8614 schoenebeck 1250 <t>Older versions of this protocol up to and including v1.1 only
8615 schoenebeck 1249 supported the standard ASCII character set (ASCII code 0 - 127)
8616     <xref target="RFC20"/>, all younger versions of this protocol
8617     however support the Extended ASCII character set (ASCII code
8618     0 - 255). The same group of younger protocols also support
8619     escape sequences, but only for certain, explicitly declared
8620     parts of the protocol. The supported escape sequences are
8621     defined as follows:</t>
8622     <texttable>
8623     <ttcol>ASCII Character Sequence</ttcol>
8624     <ttcol>Translated into (Name)</ttcol>
8625     <c>\n</c> <c>new line</c>
8626     <c>\r</c> <c>carriage return</c>
8627     <c>\f</c> <c>form feed</c>
8628     <c>\t</c> <c>horizontal tab</c>
8629     <c>\v</c> <c>vertical tab</c>
8630     <c>\'</c> <c>apostrophe</c>
8631     <c>\"</c> <c>quotation mark</c>
8632     <c>\\</c> <c>backslash</c>
8633     <c>\OOO</c> <c>three digit octal ASCII code of the character</c>
8634     <c>\xHH</c> <c>two digit hex ASCII code of the character</c>
8635     </texttable>
8636     <t>Notice: due to the transition of certain parts of the
8637     protocol which now support escape sequences, a slight backward
8638 schoenebeck 1250 incompatibility to protocols version v1.1 and younger has been
8639 schoenebeck 1249 introduced. The only difference is that in parts of the protocol
8640     where escape characters are now supported, a backslash characters
8641     MUST be escaped as well (that is as double backslash), whereas
8642     in the old versions a single backslash was sufficient.</t>
8643 schoenebeck 1389
8644     <t>The following LSCP commands support escape sequences as part
8645 schoenebeck 1399 of their filename / path based arguments and / or may contain
8646     a filename / path with escape sequences in their response:
8647 schoenebeck 1389 <list>
8648     <t><xref target="LOAD INSTRUMENT">"LOAD INSTRUMENT"</xref></t>
8649 schoenebeck 1399 <t><xref target="GET CHANNEL INFO">"GET CHANNEL INFO"</xref></t>
8650 schoenebeck 1389 <t><xref target="MAP MIDI_INSTRUMENT">"MAP MIDI_INSTRUMENT"</xref></t>
8651 schoenebeck 1399 <t><xref target="GET MIDI_INSTRUMENT INFO">"GET MIDI_INSTRUMENT INFO"</xref></t>
8652 schoenebeck 1389 <t><xref target="ADD DB_INSTRUMENT_DIRECTORY">"ADD DB_INSTRUMENT_DIRECTORY"</xref></t>
8653     <t><xref target="ADD DB_INSTRUMENTS">"ADD DB_INSTRUMENTS"</xref></t>
8654     <t><xref target="REMOVE DB_INSTRUMENT_DIRECTORY">"REMOVE DB_INSTRUMENT_DIRECTORY"</xref></t>
8655     <t><xref target="REMOVE DB_INSTRUMENT">"REMOVE DB_INSTRUMENT"</xref></t>
8656     <t><xref target="GET DB_INSTRUMENT_DIRECTORIES">"GET DB_INSTRUMENT_DIRECTORIES"</xref></t>
8657     <t><xref target="LIST DB_INSTRUMENT_DIRECTORIES">"LIST DB_INSTRUMENT_DIRECTORIES"</xref></t>
8658     <t><xref target="GET DB_INSTRUMENT_DIRECTORY INFO">"GET DB_INSTRUMENT_DIRECTORY INFO"</xref></t>
8659     <t><xref target="GET DB_INSTRUMENTS">"GET DB_INSTRUMENTS"</xref></t>
8660     <t><xref target="LIST DB_INSTRUMENTS">"LIST DB_INSTRUMENTS"</xref></t>
8661     <t><xref target="GET DB_INSTRUMENT INFO">"GET DB_INSTRUMENT INFO"</xref></t>
8662     <t><xref target="SET DB_INSTRUMENT_DIRECTORY NAME">"SET DB_INSTRUMENT_DIRECTORY NAME"</xref></t>
8663     <t><xref target="SET DB_INSTRUMENT_DIRECTORY DESCRIPTION">"SET DB_INSTRUMENT_DIRECTORY DESCRIPTION"</xref></t>
8664     <t><xref target="SET DB_INSTRUMENT NAME">"SET DB_INSTRUMENT NAME"</xref></t>
8665     <t><xref target="SET DB_INSTRUMENT DESCRIPTION">"SET DB_INSTRUMENT DESCRIPTION"</xref></t>
8666     <t><xref target="FIND DB_INSTRUMENTS">"FIND DB_INSTRUMENTS"</xref></t>
8667     <t><xref target="FIND DB_INSTRUMENT_DIRECTORIES">"FIND DB_INSTRUMENT_DIRECTORIES"</xref></t>
8668     <t><xref target="MOVE DB_INSTRUMENT">"MOVE DB_INSTRUMENT"</xref></t>
8669     <t><xref target="MOVE DB_INSTRUMENT_DIRECTORY">"MOVE DB_INSTRUMENT_DIRECTORY"</xref></t>
8670     <t><xref target="COPY DB_INSTRUMENT">"COPY DB_INSTRUMENT"</xref></t>
8671     <t><xref target="COPY DB_INSTRUMENT_DIRECTORY">"COPY DB_INSTRUMENT_DIRECTORY"</xref></t>
8672 iliev 1727 <t><xref target="FIND LOST DB_INSTRUMENT_FILES">"FIND LOST DB_INSTRUMENT_FILES"</xref></t>
8673     <t><xref target="SET DB_INSTRUMENT FILE_PATH">"SET DB_INSTRUMENT FILE_PATH"</xref></t>
8674 schoenebeck 1554 <t><xref target="GET FILE INSTRUMENTS">"GET FILE INSTRUMENTS"</xref></t>
8675     <t><xref target="LIST FILE INSTRUMENTS">"LIST FILE INSTRUMENTS"</xref></t>
8676     <t><xref target="GET FILE INSTRUMENT INFO">"GET FILE INSTRUMENT INFO"</xref></t>
8677 schoenebeck 2138 <t><xref target="GET EFFECT INFO">"GET EFFECT INFO"</xref></t>
8678     <t><xref target="GET EFFECT_INSTANCE INFO">"GET EFFECT_INSTANCE INFO"</xref></t>
8679     <t><xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref></t>
8680 schoenebeck 1389 </list>
8681     Note that the forward slash character ('/') has a special meaning in
8682     filename / path based arguments: it acts as separator of the nodes in
8683     the path, thus if a directory- or filename includes a forward slash
8684     (not intended as path node separator), you MUST escape that slash
8685     either with the respective hex escape sequence ("\x2f") or with the
8686     respective octal escape sequence ("\057").
8687     </t>
8688    
8689     <t>
8690 schoenebeck 1554 Note for Windows: file path arguments in LSCP are expected
8691     to use forward slashes as directory node separator similar
8692     to Unix based operating systems. In contrast to Unix however
8693     a Windows typical drive character is expected to be
8694     prefixed to the path. That is an original Windows file path
8695     like "D:\Sounds\My.gig" would become in LSCP:
8696     "D:/Sounds/My.gig".
8697     </t>
8698    
8699     <t>
8700 schoenebeck 1389 The following LSCP commands even support escape sequences as
8701     part of at least one of their text-based arguments (i.e. entity name,
8702 schoenebeck 1399 description) and / or may contain escape sequences in at least one of
8703     their text-based fields in their response:
8704 schoenebeck 1389 <list>
8705 schoenebeck 1399 <t><xref target="GET SERVER INFO">"GET SERVER INFO"</xref></t>
8706     <t><xref target="GET ENGINE INFO">"GET ENGINE INFO"</xref></t>
8707     <t><xref target="GET CHANNEL INFO">"GET CHANNEL INFO"</xref></t>
8708 iliev 1391 <t><xref target="CREATE FX_SEND">"CREATE FX_SEND"</xref></t>
8709 schoenebeck 1399 <t><xref target="GET FX_SEND INFO">"GET FX_SEND INFO"</xref></t>
8710 iliev 1391 <t><xref target="SET FX_SEND NAME">"SET FX_SEND NAME"</xref></t>
8711 schoenebeck 1399 <t><xref target="GET MIDI_INSTRUMENT INFO">"GET MIDI_INSTRUMENT INFO"</xref></t>
8712     <t><xref target="GET MIDI_INSTRUMENT_MAP INFO">"GET MIDI_INSTRUMENT_MAP INFO"</xref></t>
8713 schoenebeck 1389 <t><xref target="ADD MIDI_INSTRUMENT_MAP">"ADD MIDI_INSTRUMENT_MAP"</xref></t>
8714     <t><xref target="MAP MIDI_INSTRUMENT">"MAP MIDI_INSTRUMENT"</xref></t>
8715     <t><xref target="SET MIDI_INSTRUMENT_MAP NAME">"SET MIDI_INSTRUMENT_MAP NAME"</xref></t>
8716 iliev 1401 <t><xref target="GET DB_INSTRUMENT_DIRECTORY INFO">"GET DB_INSTRUMENT_DIRECTORY INFO"</xref></t>
8717 schoenebeck 1389 <t><xref target="SET DB_INSTRUMENT_DIRECTORY NAME">"SET DB_INSTRUMENT_DIRECTORY NAME"</xref></t>
8718     <t><xref target="SET DB_INSTRUMENT_DIRECTORY DESCRIPTION">"SET DB_INSTRUMENT_DIRECTORY DESCRIPTION"</xref></t>
8719 iliev 1391 <t><xref target="FIND DB_INSTRUMENT_DIRECTORIES">"FIND DB_INSTRUMENT_DIRECTORIES"</xref></t>
8720 iliev 1401 <t><xref target="GET DB_INSTRUMENT INFO">"GET DB_INSTRUMENT INFO"</xref></t>
8721 schoenebeck 1389 <t><xref target="SET DB_INSTRUMENT NAME">"SET DB_INSTRUMENT NAME"</xref></t>
8722     <t><xref target="SET DB_INSTRUMENT DESCRIPTION">"SET DB_INSTRUMENT DESCRIPTION"</xref></t>
8723 iliev 1391 <t><xref target="FIND DB_INSTRUMENTS">"FIND DB_INSTRUMENTS"</xref></t>
8724 schoenebeck 2138 <t><xref target="GET EFFECT INFO">"GET EFFECT INFO"</xref></t>
8725     <t><xref target="GET EFFECT_INSTANCE INFO">"GET EFFECT_INSTANCE INFO"</xref></t>
8726     <t><xref target="CREATE EFFECT_INSTANCE">"CREATE EFFECT_INSTANCE"</xref></t>
8727 schoenebeck 1389 </list>
8728     Please note that these lists are manually maintained. If you
8729     find a command that also supports escape sequences we forgot to
8730     mention here, please report it!
8731     </t>
8732 schoenebeck 1249 </section>
8733 schoenebeck 151 </section>
8734    
8735 schoenebeck 534 <section title="Events" anchor="events">
8736 schoenebeck 151 <t>This chapter will describe all currently defined events supported by LinuxSampler.</t>
8737    
8738 iliev 981 <section title="Number of audio output devices changed" anchor="SUBSCRIBE AUDIO_OUTPUT_DEVICE_COUNT">
8739     <t>Client may want to be notified when the total number of audio output devices on the
8740     back-end changes by issuing the following command:</t>
8741     <t>
8742     <list>
8743     <t>SUBSCRIBE AUDIO_OUTPUT_DEVICE_COUNT</t>
8744     </list>
8745     </t>
8746     <t>Server will start sending the following notification messages:</t>
8747     <t>
8748     <list>
8749     <t>"NOTIFY:AUDIO_OUTPUT_DEVICE_COUNT:&lt;devices&gt;"</t>
8750     </list>
8751     </t>
8752     <t>where &lt;devices&gt; will be replaced by the new number
8753     of audio output devices.</t>
8754     </section>
8755    
8756     <section title="Audio output device's settings changed" anchor="SUBSCRIBE AUDIO_OUTPUT_DEVICE_INFO">
8757     <t>Client may want to be notified when changes were made to audio output devices on the
8758     back-end by issuing the following command:</t>
8759     <t>
8760     <list>
8761     <t>SUBSCRIBE AUDIO_OUTPUT_DEVICE_INFO</t>
8762     </list>
8763     </t>
8764     <t>Server will start sending the following notification messages:</t>
8765     <t>
8766     <list>
8767     <t>"NOTIFY:AUDIO_OUTPUT_DEVICE_INFO:&lt;device-id&gt;"</t>
8768     </list>
8769     </t>
8770     <t>where &lt;device-id&gt; will be replaced by the numerical ID of the audio output device,
8771     which settings has been changed. The front-end will have to send
8772     the respective command to actually get the audio output device info. Because these messages
8773     will be triggered by LSCP commands issued by other clients rather than real
8774     time events happening on the server, it is believed that an empty notification
8775     message is sufficient here.</t>
8776     </section>
8777    
8778     <section title="Number of MIDI input devices changed" anchor="SUBSCRIBE MIDI_INPUT_DEVICE_COUNT">
8779     <t>Client may want to be notified when the total number of MIDI input devices on the
8780     back-end changes by issuing the following command:</t>
8781     <t>
8782     <list>
8783     <t>SUBSCRIBE MIDI_INPUT_DEVICE_COUNT</t>
8784     </list>
8785     </t>
8786     <t>Server will start sending the following notification messages:</t>
8787     <t>
8788     <list>
8789     <t>"NOTIFY:MIDI_INPUT_DEVICE_COUNT:&lt;devices&gt;"</t>
8790     </list>
8791     </t>
8792     <t>where &lt;devices&gt; will be replaced by the new number
8793     of MIDI input devices.</t>
8794     </section>
8795    
8796     <section title="MIDI input device's settings changed" anchor="SUBSCRIBE MIDI_INPUT_DEVICE_INFO">
8797     <t>Client may want to be notified when changes were made to MIDI input devices on the
8798     back-end by issuing the following command:</t>
8799     <t>
8800     <list>
8801     <t>SUBSCRIBE MIDI_INPUT_DEVICE_INFO</t>
8802     </list>
8803     </t>
8804     <t>Server will start sending the following notification messages:</t>
8805     <t>
8806     <list>
8807     <t>"NOTIFY:MIDI_INPUT_DEVICE_INFO:&lt;device-id&gt;"</t>
8808     </list>
8809     </t>
8810     <t>where &lt;device-id&gt; will be replaced by the numerical ID of the MIDI input device,
8811     which settings has been changed. The front-end will have to send
8812     the respective command to actually get the MIDI input device info. Because these messages
8813     will be triggered by LSCP commands issued by other clients rather than real
8814     time events happening on the server, it is believed that an empty notification
8815     message is sufficient here.</t>
8816     </section>
8817    
8818     <section title="Number of sampler channels changed" anchor="SUBSCRIBE CHANNEL_COUNT">
8819 schoenebeck 151 <t>Client may want to be notified when the total number of channels on the
8820     back-end changes by issuing the following command:</t>
8821     <t>
8822     <list>
8823 schoenebeck 556 <t>SUBSCRIBE CHANNEL_COUNT</t>
8824 schoenebeck 151 </list>
8825     </t>
8826     <t>Server will start sending the following notification messages:</t>
8827     <t>
8828     <list>
8829 schoenebeck 556 <t>"NOTIFY:CHANNEL_COUNT:&lt;channels&gt;"</t>
8830 schoenebeck 151 </list>
8831     </t>
8832     <t>where &lt;channels&gt; will be replaced by the new number
8833     of sampler channels.</t>
8834     </section>
8835    
8836 schoenebeck 1686 <section title="MIDI data on a sampler channel arrived" anchor="SUBSCRIBE CHANNEL_MIDI">
8837     <t>Client may want to be notified when MIDI data arrive on sampler channels on
8838     back-end side, by issuing the following command:</t>
8839     <t>
8840     <list>
8841     <t>SUBSCRIBE CHANNEL_MIDI</t>
8842     </list>
8843     </t>
8844     <t>Server will start sending one of the the following notification messages:</t>
8845     <t>
8846     <list>
8847     <t>"NOTIFY:CHANNEL_MIDI:&lt;channel-id&gt; NOTE_ON &lt;note&gt; &lt;velocity&gt;"</t>
8848     <t>"NOTIFY:CHANNEL_MIDI:&lt;channel-id&gt; NOTE_OFF &lt;note&gt; &lt;velocity&gt;"</t>
8849     </list>
8850     </t>
8851     <t>where &lt;channel-id&gt; will be replaced by the ID of the sampler channel where the MIDI
8852     data arrived. &lt;note&gt; and &lt;velocity&gt; are integer values in the range between
8853     0 .. 127, reflecting the analog meaning of the MIDI specification.
8854     </t>
8855     <t>CAUTION: no guarantee whatsoever will be made that MIDI events are actually all
8856     delivered by this mechanism! With other words: events could be lost at any time!
8857     This restriction was made to keep the RT-safeness of the backend's MIDI and audio
8858     thread unaffected by this feature.</t>
8859     </section>
8860    
8861 schoenebeck 1695 <section title="MIDI data on a MIDI input device arrived" anchor="SUBSCRIBE DEVICE_MIDI">
8862     <t>Client may want to be notified when MIDI data arrive on MIDI input devices by issuing the following command:</t>
8863     <t>
8864     <list>
8865     <t>SUBSCRIBE DEVICE_MIDI</t>
8866     </list>
8867     </t>
8868     <t>Server will start sending one of the the following notification messages:</t>
8869     <t>
8870     <list>
8871 iliev 1727 <t>"NOTIFY:DEVICE_MIDI:&lt;device-id&gt; &lt;port-id&gt; NOTE_ON &lt;note&gt; &lt;velocity&gt;"</t>
8872     <t>"NOTIFY:DEVICE_MIDI:&lt;device-id&gt; &lt;port-id&gt; NOTE_OFF &lt;note&gt; &lt;velocity&gt;"</t>
8873 schoenebeck 1695 </list>
8874     </t>
8875     <t>where &lt;device-id&gt; &lt;port-id&gt; will be replaced
8876     by the IDs of the respective MIDI input device and the device's MIDI port where the MIDI
8877     data arrived. &lt;note&gt; and &lt;velocity&gt; are integer values in the range between
8878     0 .. 127, reflecting the analog meaning of the MIDI specification.
8879     </t>
8880     <t>CAUTION: no guarantee whatsoever will be made that MIDI events are actually all
8881     delivered by this mechanism! With other words: events could be lost at any time!
8882     This restriction was made to keep the RT-safeness of the backend's MIDI and audio
8883     thread unaffected by this feature.</t>
8884     </section>
8885    
8886 schoenebeck 534 <section title="Number of active voices changed" anchor="SUBSCRIBE VOICE_COUNT">
8887 schoenebeck 151 <t>Client may want to be notified when the number of voices on the
8888     back-end changes by issuing the following command:</t>
8889     <t>
8890     <list>
8891     <t>SUBSCRIBE VOICE_COUNT</t>
8892     </list>
8893     </t>
8894     <t>Server will start sending the following notification messages:</t>
8895     <t>
8896     <list>
8897 iliev 1108 <t>"NOTIFY:VOICE_COUNT:&lt;sampler-channel&gt; &lt;voices&gt;"</t>
8898 schoenebeck 151 </list>
8899     </t>
8900     <t>where &lt;sampler-channel&gt; will be replaced by the sampler channel the
8901 schoenebeck 499 voice count change occurred and &lt;voices&gt; by the new number of
8902 schoenebeck 151 active voices on that channel.</t>
8903     </section>
8904    
8905 schoenebeck 534 <section title="Number of active disk streams changed" anchor="SUBSCRIBE STREAM_COUNT">
8906 schoenebeck 151 <t>Client may want to be notified when the number of streams on the back-end
8907     changes by issuing the following command: SUBSCRIBE STREAM_COUNT</t>
8908     <t>
8909     <list>
8910     <t>SUBSCRIBE STREAM_COUNT</t>
8911     </list>
8912     </t>
8913     <t>Server will start sending the following notification messages:</t>
8914     <t>
8915     <list>
8916     <t>"NOTIFY:STREAM_COUNT:&lt;sampler-channel&gt; &lt;streams&gt;"</t>
8917     </list>
8918     </t>
8919     <t>where &lt;sampler-channel&gt; will be replaced by the sampler channel the
8920     stream count change occurred and &lt;streams&gt; by the new number of
8921     active disk streams on that channel.</t>
8922     </section>
8923    
8924 schoenebeck 534 <section title="Disk stream buffer fill state changed" anchor="SUBSCRIBE BUFFER_FILL">
8925 schoenebeck 499 <t>Client may want to be notified when the buffer fill state of a disk stream
8926     on the back-end changes by issuing the following command:</t>
8927 schoenebeck 151 <t>
8928     <list>
8929     <t>SUBSCRIBE BUFFER_FILL</t>
8930     </list>
8931     </t>
8932     <t>Server will start sending the following notification messages:</t>
8933     <t>
8934     <list>
8935     <t>"NOTIFY:BUFFER_FILL:&lt;sampler-channel&gt; &lt;fill-data&gt;"</t>
8936     </list>
8937     </t>
8938     <t>where &lt;sampler-channel&gt; will be replaced by the sampler channel the
8939 schoenebeck 534 buffer fill state change occurred on and &lt;fill-data&gt; will be replaced by the
8940     buffer fill data for this channel as described in <xref target="GET CHANNEL BUFFER_FILL" />
8941     as if the <xref target="GET CHANNEL BUFFER_FILL">
8942     "GET CHANNEL BUFFER_FILL PERCENTAGE"</xref> command was issued on this channel.</t>
8943 schoenebeck 151 </section>
8944    
8945 iliev 981 <section title="Channel information changed" anchor="SUBSCRIBE CHANNEL_INFO">
8946 schoenebeck 151 <t>Client may want to be notified when changes were made to sampler channels on the
8947 schoenebeck 561 back-end by issuing the following command:</t>
8948 schoenebeck 151 <t>
8949     <list>
8950 schoenebeck 556 <t>SUBSCRIBE CHANNEL_INFO</t>
8951 schoenebeck 151 </list>
8952     </t>
8953     <t>Server will start sending the following notification messages:</t>
8954     <t>
8955     <list>
8956 schoenebeck 556 <t>"NOTIFY:CHANNEL_INFO:&lt;sampler-channel&gt;"</t>
8957 schoenebeck 151 </list>
8958     </t>
8959     <t>where &lt;sampler-channel&gt; will be replaced by the sampler channel the
8960     channel info change occurred. The front-end will have to send
8961     the respective command to actually get the channel info. Because these messages
8962     will be triggered by LSCP commands issued by other clients rather than real
8963     time events happening on the server, it is believed that an empty notification
8964     message is sufficient here.</t>
8965     </section>
8966    
8967 iliev 1108 <section title="Number of effect sends changed" anchor="SUBSCRIBE FX_SEND_COUNT">
8968 schoenebeck 1249 <t>Client may want to be notified when the number of effect sends on
8969 iliev 1108 a particular sampler channel is changed by issuing the following command:</t>
8970     <t>
8971     <list>
8972     <t>SUBSCRIBE FX_SEND_COUNT</t>
8973     </list>
8974     </t>
8975     <t>Server will start sending the following notification messages:</t>
8976     <t>
8977     <list>
8978     <t>"NOTIFY:FX_SEND_COUNT:&lt;channel-id&gt; &lt;fx-sends&gt;"</t>
8979     </list>
8980     </t>
8981 iliev 1109 <t>where &lt;channel-id&gt; will be replaced by the numerical ID of the sampler
8982     channel, on which the effect sends number is changed and &lt;fx-sends&gt; will
8983 iliev 1108 be replaced by the new number of effect sends on that channel.</t>
8984     </section>
8985    
8986     <section title="Effect send information changed" anchor="SUBSCRIBE FX_SEND_INFO">
8987     <t>Client may want to be notified when changes were made to effect sends on a
8988     a particular sampler channel by issuing the following command:</t>
8989     <t>
8990     <list>
8991     <t>SUBSCRIBE FX_SEND_INFO</t>
8992     </list>
8993     </t>
8994     <t>Server will start sending the following notification messages:</t>
8995     <t>
8996     <list>
8997     <t>"NOTIFY:FX_SEND_INFO:&lt;channel-id&gt; &lt;fx-send-id&gt;"</t>
8998     </list>
8999     </t>
9000 iliev 1109 <t>where &lt;channel-id&gt; will be replaced by the numerical ID of the sampler
9001     channel, on which an effect send entity is changed and &lt;fx-send-id&gt; will
9002 iliev 1108 be replaced by the numerical ID of the changed effect send.</t>
9003     </section>
9004    
9005 iliev 778 <section title="Total number of active voices changed" anchor="SUBSCRIBE TOTAL_VOICE_COUNT">
9006     <t>Client may want to be notified when the total number of voices on the
9007     back-end changes by issuing the following command:</t>
9008     <t>
9009     <list>
9010     <t>SUBSCRIBE TOTAL_VOICE_COUNT</t>
9011     </list>
9012     </t>
9013     <t>Server will start sending the following notification messages:</t>
9014     <t>
9015     <list>
9016 iliev 1108 <t>"NOTIFY:TOTAL_VOICE_COUNT:&lt;voices&gt;"</t>
9017 iliev 778 </list>
9018     </t>
9019     <t>where &lt;voices&gt; will be replaced by the new number of
9020     all currently active voices.</t>
9021     </section>
9022    
9023 iliev 1541 <section title="Total number of active disk streams changed" anchor="SUBSCRIBE TOTAL_STREAM_COUNT">
9024     <t>Client may want to be notified when the total number of disk streams on the
9025     back-end changes by issuing the following command:</t>
9026     <t>
9027     <list>
9028     <t>SUBSCRIBE TOTAL_STREAM_COUNT</t>
9029     </list>
9030     </t>
9031     <t>Server will start sending the following notification messages:</t>
9032     <t>
9033     <list>
9034     <t>"NOTIFY:TOTAL_STREAM_COUNT:&lt;streams&gt;"</t>
9035     </list>
9036     </t>
9037     <t>where &lt;streams&gt; will be replaced by the new number of
9038     all currently active disk streams.</t>
9039     </section>
9040    
9041 iliev 981 <section title="Number of MIDI instrument maps changed" anchor="SUBSCRIBE MIDI_INSTRUMENT_MAP_COUNT">
9042     <t>Client may want to be notified when the number of MIDI instrument maps on the
9043     back-end changes by issuing the following command:</t>
9044     <t>
9045     <list>
9046     <t>SUBSCRIBE MIDI_INSTRUMENT_MAP_COUNT</t>
9047     </list>
9048     </t>
9049     <t>Server will start sending the following notification messages:</t>
9050     <t>
9051     <list>
9052     <t>"NOTIFY:MIDI_INSTRUMENT_MAP_COUNT:&lt;maps&gt;"</t>
9053     </list>
9054     </t>
9055     <t>where &lt;maps&gt; will be replaced by the new number
9056     of MIDI instrument maps.</t>
9057     </section>
9058    
9059     <section title="MIDI instrument map information changed" anchor="SUBSCRIBE MIDI_INSTRUMENT_MAP_INFO">
9060     <t>Client may want to be notified when changes were made to MIDI instrument maps on the
9061     back-end by issuing the following command:</t>
9062     <t>
9063     <list>
9064     <t>SUBSCRIBE MIDI_INSTRUMENT_MAP_INFO</t>
9065     </list>
9066     </t>
9067     <t>Server will start sending the following notification messages:</t>
9068     <t>
9069     <list>
9070     <t>"NOTIFY:MIDI_INSTRUMENT_MAP_INFO:&lt;map-id&gt;"</t>
9071     </list>
9072     </t>
9073     <t>where &lt;map-id&gt; will be replaced by the numerical ID of the MIDI instrument map,
9074     for which information changes occurred. The front-end will have to send
9075     the respective command to actually get the MIDI instrument map info. Because these messages
9076     will be triggered by LSCP commands issued by other clients rather than real
9077     time events happening on the server, it is believed that an empty notification
9078     message is sufficient here.</t>
9079     </section>
9080    
9081     <section title="Number of MIDI instruments changed" anchor="SUBSCRIBE MIDI_INSTRUMENT_COUNT">
9082     <t>Client may want to be notified when the number of MIDI instrument maps on the
9083     back-end changes by issuing the following command:</t>
9084     <t>
9085     <list>
9086     <t>SUBSCRIBE MIDI_INSTRUMENT_COUNT</t>
9087     </list>
9088     </t>
9089     <t>Server will start sending the following notification messages:</t>
9090     <t>
9091     <list>
9092     <t>"NOTIFY:MIDI_INSTRUMENT_COUNT:&lt;map-id&gt; &lt;instruments&gt;"</t>
9093     </list>
9094     </t>
9095 iliev 984 <t>where &lt;map-id&gt; is the numerical ID of the MIDI instrument map, in which
9096 iliev 981 the nuber of instruments has changed and &lt;instruments&gt; will be replaced by
9097     the new number of MIDI instruments in the specified map.</t>
9098     </section>
9099    
9100     <section title="MIDI instrument information changed" anchor="SUBSCRIBE MIDI_INSTRUMENT_INFO">
9101     <t>Client may want to be notified when changes were made to MIDI instruments on the
9102     back-end by issuing the following command:</t>
9103     <t>
9104     <list>
9105     <t>SUBSCRIBE MIDI_INSTRUMENT_INFO</t>
9106     </list>
9107     </t>
9108     <t>Server will start sending the following notification messages:</t>
9109     <t>
9110     <list>
9111     <t>"NOTIFY:MIDI_INSTRUMENT_INFO:&lt;map-id&gt; &lt;bank&gt; &lt;program&gt;"</t>
9112     </list>
9113     </t>
9114     <t>where &lt;map-id&gt; will be replaced by the numerical ID of the MIDI instrument map,
9115 iliev 984 in which a MIDI instrument is changed. &lt;bank&gt; and &lt;program&gt; specifies
9116 iliev 981 the location of the changed MIDI instrument in the map. The front-end will have to send
9117     the respective command to actually get the MIDI instrument info. Because these messages
9118     will be triggered by LSCP commands issued by other clients rather than real
9119     time events happening on the server, it is believed that an empty notification
9120     message is sufficient here.</t>
9121     </section>
9122    
9123 iliev 1108 <section title="Global settings changed" anchor="SUBSCRIBE GLOBAL_INFO">
9124     <t>Client may want to be notified when changes to the global settings
9125     of the sampler were made by issuing the following command:</t>
9126     <t>
9127     <list>
9128     <t>SUBSCRIBE GLOBAL_INFO</t>
9129     </list>
9130     </t>
9131     <t>Server will start sending the following types of notification messages:</t>
9132     <t>
9133     <list>
9134 iliev 1109 <t>"NOTIFY:GLOBAL_INFO:VOLUME &lt;volume&gt;" - Notifies that the
9135     golbal volume of the sampler is changed, where &lt;volume&gt; will be
9136     replaced by the optional dotted floating point value, reflecting the
9137 iliev 1108 new global volume parameter.</t>
9138     </list>
9139 schoenebeck 1800 <list>
9140     <t>"NOTIFY:GLOBAL_INFO:VOICES &lt;max-voices&gt;" - Notifies that the
9141     golbal limit of the sampler for maximum voices is changed, where
9142     &lt;max-voices&gt; will be an integer value, reflecting the
9143     new global voice limit parameter.</t>
9144     </list>
9145     <list>
9146     <t>"NOTIFY:GLOBAL_INFO:STREAMS &lt;max-streams&gt;" - Notifies that the
9147     golbal limit of the sampler for maximum disk streams is changed, where
9148     &lt;max-streams&gt; will be an integer value, reflecting the
9149     new global disk streams limit parameter.</t>
9150     </list>
9151 iliev 1108 </t>
9152     </section>
9153    
9154 iliev 1161 <section title="Number of database instrument directories changed" anchor="SUBSCRIBE DB_INSTRUMENT_DIRECTORY_COUNT">
9155     <t>Client may want to be notified when the number of instrument
9156     directories in a particular directory in the instruments database
9157     is changed by issuing the following command:</t>
9158     <t>
9159     <list>
9160     <t>SUBSCRIBE DB_INSTRUMENT_DIRECTORY_COUNT</t>
9161     </list>
9162     </t>
9163     <t>Server will start sending the following notification messages:</t>
9164     <t>
9165     <list>
9166     <t>"NOTIFY:DB_INSTRUMENT_DIRECTORY_COUNT:&lt;dir-path&gt;"</t>
9167     </list>
9168     </t>
9169     <t>where &lt;dir-path&gt; will be replaced by the absolute path
9170     name of the directory in the instruments database,
9171     in which the number of directories is changed.</t>
9172     <t>Note that when a non-empty directory is removed, this event
9173     is not sent for the subdirectories in that directory.</t>
9174     </section>
9175    
9176     <section title="Database instrument directory information changed" anchor="SUBSCRIBE DB_INSTRUMENT_DIRECTORY_INFO">
9177     <t>Client may want to be notified when changes were made to directories
9178     in the instruments database by issuing the following command:</t>
9179     <t>
9180     <list>
9181     <t>SUBSCRIBE DB_INSTRUMENT_DIRECTORY_INFO</t>
9182     </list>
9183     </t>
9184     <t>Server will start sending the following notification messages:</t>
9185     <t>
9186     <list>
9187     <t>"NOTIFY:DB_INSTRUMENT_DIRECTORY_INFO:&lt;dir-path&gt;"</t>
9188     </list>
9189     </t>
9190     <t>where &lt;dir-path&gt; will be replaced by the absolute path name
9191     of the directory, for which information changes occurred. The front-end will have to send
9192     the respective command to actually get the updated directory info. Because these messages
9193     will be triggered by LSCP commands issued by other clients rather than real
9194     time events happening on the server, it is believed that an empty notification
9195     message is sufficient here.</t>
9196     <t>
9197     <list>
9198     <t>"NOTIFY:DB_INSTRUMENT_DIRECTORY_INFO:NAME &lt;old-dir-path&gt; &lt;new-name&gt;"</t>
9199     </list>
9200     </t>
9201     <t>where &lt;old-dir-path&gt; is the old absolute path name of the directory
9202     (encapsulated into apostrophes), which name is changes and &lt;new-name&gt; is
9203     the new name of the directory, encapsulated into apostrophes.</t>
9204     </section>
9205    
9206     <section title="Number of database instruments changed" anchor="SUBSCRIBE DB_INSTRUMENT_COUNT">
9207     <t>Client may want to be notified when the number of instruments
9208     in a particular directory in the instruments database
9209     is changed by issuing the following command:</t>
9210     <t>
9211     <list>
9212     <t>SUBSCRIBE DB_INSTRUMENT_COUNT</t>
9213     </list>
9214     </t>
9215     <t>Server will start sending the following notification messages:</t>
9216     <t>
9217     <list>
9218     <t>"NOTIFY:DB_INSTRUMENT_COUNT:&lt;dir-path&gt;"</t>
9219     </list>
9220     </t>
9221     <t>where &lt;dir-path&gt; will be replaced by the absolute path
9222     name of the directory in the instruments database,
9223     in which the number of instruments is changed.</t>
9224     <t>Note that when a non-empty directory is removed, this event
9225     is not sent for the instruments in that directory.</t>
9226     </section>
9227    
9228     <section title="Database instrument information changed" anchor="SUBSCRIBE DB_INSTRUMENT_INFO">
9229     <t>Client may want to be notified when changes were made to instruments
9230     in the instruments database by issuing the following command:</t>
9231     <t>
9232     <list>
9233     <t>SUBSCRIBE DB_INSTRUMENT_INFO</t>
9234     </list>
9235     </t>
9236     <t>Server will start sending the following notification messages:</t>
9237     <t>
9238     <list>
9239     <t>"NOTIFY:DB_INSTRUMENT_INFO:&lt;instr-path&gt;"</t>
9240     </list>
9241     </t>
9242     <t>where &lt;instr-path&gt; will be replaced by the absolute path name
9243     of the instrument, which settings are changed. The front-end will have to send
9244     the respective command to actually get the updated directory info. Because these messages
9245     will be triggered by LSCP commands issued by other clients rather than real
9246     time events happening on the server, it is believed that an empty notification
9247     message is sufficient here.</t>
9248     <t>
9249     <list>
9250     <t>"NOTIFY:DB_INSTRUMENT_INFO:NAME &lt;old-instr-path&gt; &lt;new-name&gt;"</t>
9251     </list>
9252     </t>
9253     <t>where &lt;old-instr-path&gt; is the old absolute path name of the instrument
9254     (encapsulated into apostrophes), which name is changes and &lt;new-name&gt; is
9255     the new name of the instrument, encapsulated into apostrophes.</t>
9256     </section>
9257    
9258 iliev 1200 <section title="Database job status information changed" anchor="SUBSCRIBE DB_INSTRUMENTS_JOB_INFO">
9259     <t>Client may want to be notified when the status of particular database
9260     instruments job is changed by issuing the following command:</t>
9261     <t>
9262     <list>
9263     <t>SUBSCRIBE DB_INSTRUMENTS_JOB_INFO</t>
9264     </list>
9265     </t>
9266     <t>Server will start sending the following notification messages:</t>
9267     <t>
9268     <list>
9269     <t>"NOTIFY:DB_INSTRUMENTS_JOB_INFO:&lt;job-id&gt;"</t>
9270     </list>
9271     </t>
9272     <t>where &lt;job-id&gt; will be replaced by the numerical ID of the job,
9273     which status is changed. The front-end will have to send the respective
9274     command to actually get the status info. Because these messages
9275     will be triggered by LSCP commands issued by other clients rather than real
9276     time events happening on the server, it is believed that an empty notification
9277     message is sufficient here.</t>
9278     </section>
9279    
9280 iliev 2188 <section title="Number of effect instances changed" anchor="SUBSCRIBE EFFECT_INSTANCE_COUNT">
9281     <t>Client may want to be notified when the number of effect instances
9282     is changed by issuing the following command:</t>
9283     <t>
9284     <list>
9285     <t>SUBSCRIBE EFFECT_INSTANCE_COUNT</t>
9286     </list>
9287     </t>
9288     <t>Server will start sending the following notification messages:</t>
9289     <t>
9290     <list>
9291     <t>"EFFECT_INSTANCE_COUNT:&lt;instances&gt;"</t>
9292     </list>
9293     </t>
9294     <t>where &lt;instances&gt; will be replaced by the new number
9295     of effect instances.</t>
9296     </section>
9297    
9298     <section title="Effect instance information changed" anchor="SUBSCRIBE EFFECT_INSTANCE_INFO">
9299     <t>Client may want to be notified when changes were made to effect instances
9300     on the back-end by issuing the following command:</t>
9301     <t>
9302     <list>
9303     <t>SUBSCRIBE EFFECT_INSTANCE_INFO</t>
9304     </list>
9305     </t>
9306     <t>Server will start sending the following notification messages:</t>
9307     <t>
9308     <list>
9309     <t>"EFFECT_INSTANCE_INFO:&lt;instance-id&gt;"</t>
9310     </list>
9311     </t>
9312     <t>where &lt;instance-id&gt; will be replaced by the numerical ID
9313     of the effect instance.</t>
9314     </section>
9315    
9316     <section title="Number of send effect chains changed" anchor="SUBSCRIBE SEND_EFFECT_CHAIN_COUNT">
9317     <t>Client may want to be notified when the number of send effect chains
9318     is changed by issuing the following command:</t>
9319     <t>
9320     <list>
9321     <t>SUBSCRIBE SEND_EFFECT_CHAIN_COUNT</t>
9322     </list>
9323     </t>
9324     <t>Server will start sending the following notification messages:</t>
9325     <t>
9326     <list>
9327     <t>"NOTIFY:SEND_EFFECT_CHAIN_COUNT:&lt;device-id&gt; &lt;chains&gt;"</t>
9328     </list>
9329     </t>
9330     <t>where &lt;device-id&gt; will be replaced by the numerical ID of the audio
9331     output device, in which the number of send effect chains is changed and
9332     &lt;chains&gt; will be replaced by the new number of send effect chains.</t>
9333     </section>
9334    
9335     <section title="Send effect chain information changed" anchor="SUBSCRIBE SEND_EFFECT_CHAIN_INFO">
9336     <t>Client may want to be notified when changes were made to send effect chains
9337     on the back-end by issuing the following command:</t>
9338     <t>
9339     <list>
9340     <t>SUBSCRIBE SEND_EFFECT_CHAIN_INFO</t>
9341     </list>
9342     </t>
9343     <t>Server will start sending the following notification messages:</t>
9344     <t>
9345     <list>
9346     <t>"SEND_EFFECT_CHAIN_INFO:&lt;device-id&gt; &lt;chain-id&gt; &lt;instances&gt;" -
9347     Notifies that the number of effect instances in a particular send effect chain
9348     is changed, where &lt;device-id&gt; will be replaced by the numerical ID of the audio
9349     output device the send effect chain belongs to, &lt;chain-id&gt; will be replaced
9350     by the numerical ID of the send effect chain in which the number of effect instances
9351     has changed and &lt;instances&gt; will be replaced by the new number
9352     of effect instances in the specified send effect chain.</t>
9353     </list>
9354     </t>
9355     </section>
9356    
9357 iliev 991 <section title="Miscellaneous and debugging events" anchor="SUBSCRIBE MISCELLANEOUS">
9358 schoenebeck 151 <t>Client may want to be notified of miscellaneous and debugging events occurring at
9359     the server by issuing the following command:</t>
9360     <t>
9361     <list>
9362     <t>SUBSCRIBE MISCELLANEOUS</t>
9363     </list>
9364     </t>
9365     <t>Server will start sending the following notification messages:</t>
9366     <t>
9367     <list>
9368     <t>"NOTIFY:MISCELLANEOUS:&lt;string&gt;"</t>
9369     </list>
9370     </t>
9371     <t>where &lt;string&gt; will be replaced by whatever data server
9372     wants to send to the client. Client MAY display this data to the
9373     user AS IS to facilitate debugging.</t>
9374     </section>
9375     </section>
9376    
9377     <section title="Security Considerations">
9378     <t>As there is so far no method of authentication and authorization
9379     defined and so not required for a client applications to succeed to
9380     connect, running LinuxSampler might be a security risk for the host
9381     system the LinuxSampler instance is running on.</t>
9382     </section>
9383    
9384     <section title="Acknowledgments">
9385     <t>This document has benefited greatly from the comments of the
9386     following people, discussed on the LinuxSampler developer's mailing
9387     list:</t>
9388     <t>
9389     <list>
9390     <t>Rui Nuno Capela</t>
9391     <t>Vladimir Senkov</t>
9392     <t>Mark Knecht</t>
9393 schoenebeck 561 <t>Grigor Iliev</t>
9394 schoenebeck 151 </list>
9395     </t>
9396     </section>
9397    
9398     </middle>
9399    
9400     <back>
9401 schoenebeck 571 <references>
9402     <reference anchor="RFC2119">
9403     <front>
9404     <title>Key words for use in RFCs to Indicate Requirement Levels</title>
9405     <author initials="S." surname="Bradner" fullname="Scott Bradner">
9406     <organization>Harvard University</organization>
9407     </author>
9408     <date year="1997"></date>
9409     </front>
9410     <seriesInfo name="RFC" value="2119" />
9411     </reference>
9412     <reference anchor="RFC793">
9413     <front>
9414     <title>TRANSMISSION CONTROL PROTOCOL</title>
9415     <author>
9416     <organization>Defense Advanced Research Projects Agency</organization>
9417     </author>
9418     <date year="1981"></date>
9419     </front>
9420     <seriesInfo name="RFC" value="793" />
9421     </reference>
9422 schoenebeck 573 <reference anchor="RFC2234">
9423     <front>
9424     <title>Augmented BNF for Syntax Specifications</title>
9425     <author initials="D.H." surname="Crocker" fullname="David H. Crocker">
9426     <organization>Internet Mail Consortium</organization>
9427     </author>
9428     <author initials="P." surname="Overell" fullname="Paul Overell">
9429     <organization>Demon Internet Ltd</organization>
9430     </author>
9431     <date year="1997"></date>
9432     </front>
9433     <seriesInfo name="RFC" value="2234" />
9434     </reference>
9435 schoenebeck 1249 <reference anchor="RFC20">
9436     <front>
9437     <title>ASCII format for Network Interchange</title>
9438     <author>
9439     <organization>UCLA</organization>
9440     </author>
9441     <date year="1969"></date>
9442     </front>
9443     <seriesInfo name="RFC" value="20" />
9444     </reference>
9445 schoenebeck 571 </references>
9446 schoenebeck 151 </back>
9447    
9448     </rfc>

  ViewVC Help
Powered by ViewVC