/[svn]/web/trunk/www.linuxsampler.org/api/draft-linuxsampler-protocol.txt
ViewVC logotype

Annotation of /web/trunk/www.linuxsampler.org/api/draft-linuxsampler-protocol.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1251 - (hide annotations) (download)
Fri Jun 22 14:24:57 2007 UTC (16 years, 10 months ago) by schoenebeck
File MIME type: text/plain
File size: 211573 byte(s)
- updated LSCP spec draft regarding extended ASCII character
  set and support for escape sequences

1 senoner 542
2    
3 schoenebeck 708
4 senoner 542 LinuxSampler Developers C. Schoenebeck
5     Internet-Draft Interessengemeinschaft Software
6 schoenebeck 974 Intended status: Standards Track Engineering e. V.
7 schoenebeck 1251 Expires: December 24, 2007 June 22, 2007
8 senoner 542
9    
10 schoenebeck 1251 LinuxSampler Control Protocol (draft)
11     LSCP 1.2cvs
12 senoner 542
13     Status of this Memo
14    
15 schoenebeck 974 By submitting this Internet-Draft, each author represents that any
16     applicable patent or other IPR claims of which he or she is aware
17     have been or will be disclosed, and any of which he or she becomes
18     aware will be disclosed, in accordance with Section 6 of BCP 79.
19 senoner 542
20     Internet-Drafts are working documents of the Internet Engineering
21     Task Force (IETF), its areas, and its working groups. Note that
22 schoenebeck 708 other groups may also distribute working documents as Internet-
23     Drafts.
24 senoner 542
25     Internet-Drafts are draft documents valid for a maximum of six months
26     and may be updated, replaced, or obsoleted by other documents at any
27     time. It is inappropriate to use Internet-Drafts as reference
28     material or to cite them other than as "work in progress."
29    
30     The list of current Internet-Drafts can be accessed at
31     http://www.ietf.org/ietf/1id-abstracts.txt.
32    
33     The list of Internet-Draft Shadow Directories can be accessed at
34     http://www.ietf.org/shadow.html.
35    
36 schoenebeck 1251 This Internet-Draft will expire on December 24, 2007.
37 senoner 542
38     Copyright Notice
39    
40 iliev 1110 Copyright (C) The IETF Trust (2007).
41 senoner 542
42    
43    
44    
45    
46    
47    
48    
49    
50    
51 schoenebeck 974
52    
53    
54    
55 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 1]
56 schoenebeck 940
57 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
58 senoner 542
59    
60 schoenebeck 974 Abstract
61    
62     The LinuxSampler Control Protocol (LSCP) is an application-level
63     protocol primarily intended for local and remote controlling the
64     LinuxSampler backend application, which is a sophisticated server-
65     like console application essentially playing back audio samples and
66     manipulating the samples in real time to certain extent.
67    
68    
69 senoner 542 Table of Contents
70    
71 iliev 1162 1. Requirements notation . . . . . . . . . . . . . . . . . . . . 6
72     2. Versioning of this specification . . . . . . . . . . . . . . 7
73     3. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 8
74     4. Focus of this protocol . . . . . . . . . . . . . . . . . . . 9
75     5. Communication Overview . . . . . . . . . . . . . . . . . . . 10
76     5.1. Request/response communication method . . . . . . . . . . 10
77     5.1.1. Result format . . . . . . . . . . . . . . . . . . . . 11
78     5.2. Subscribe/notify communication method . . . . . . . . . . 13
79     6. Description for control commands . . . . . . . . . . . . . . 15
80     6.1. Ignored lines and comments . . . . . . . . . . . . . . . 15
81     6.2. Configuring audio drivers . . . . . . . . . . . . . . . . 15
82     6.2.1. Getting amount of available audio output drivers . . 16
83     6.2.2. Getting all available audio output drivers . . . . . 16
84 schoenebeck 940 6.2.3. Getting information about a specific audio output
85 iliev 1162 driver . . . . . . . . . . . . . . . . . . . . . . . 16
86 schoenebeck 940 6.2.4. Getting information about specific audio output
87 iliev 1162 driver parameter . . . . . . . . . . . . . . . . . . 17
88     6.2.5. Creating an audio output device . . . . . . . . . . . 21
89     6.2.6. Destroying an audio output device . . . . . . . . . . 22
90     6.2.7. Getting all created audio output device count . . . . 23
91     6.2.8. Getting all created audio output device list . . . . 23
92     6.2.9. Getting current settings of an audio output device . 23
93     6.2.10. Changing settings of audio output devices . . . . . . 25
94     6.2.11. Getting information about an audio channel . . . . . 26
95 schoenebeck 940 6.2.12. Getting information about specific audio channel
96 iliev 1162 parameter . . . . . . . . . . . . . . . . . . . . . . 27
97     6.2.13. Changing settings of audio output channels . . . . . 29
98     6.3. Configuring MIDI input drivers . . . . . . . . . . . . . 30
99     6.3.1. Getting amount of available MIDI input drivers . . . 31
100     6.3.2. Getting all available MIDI input drivers . . . . . . 31
101 schoenebeck 940 6.3.3. Getting information about a specific MIDI input
102 iliev 1162 driver . . . . . . . . . . . . . . . . . . . . . . . 32
103 schoenebeck 940 6.3.4. Getting information about specific MIDI input
104 iliev 1162 driver parameter . . . . . . . . . . . . . . . . . . 33
105     6.3.5. Creating a MIDI input device . . . . . . . . . . . . 35
106     6.3.6. Destroying a MIDI input device . . . . . . . . . . . 36
107     6.3.7. Getting all created MIDI input device count . . . . . 37
108 schoenebeck 974
109    
110    
111 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 2]
112 schoenebeck 974
113 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
114 schoenebeck 974
115    
116 iliev 1162 6.3.8. Getting all created MIDI input device list . . . . . 37
117     6.3.9. Getting current settings of a MIDI input device . . . 38
118     6.3.10. Changing settings of MIDI input devices . . . . . . . 39
119     6.3.11. Getting information about a MIDI port . . . . . . . . 39
120 schoenebeck 940 6.3.12. Getting information about specific MIDI port
121 iliev 1162 parameter . . . . . . . . . . . . . . . . . . . . . . 40
122     6.3.13. Changing settings of MIDI input ports . . . . . . . . 42
123     6.4. Configuring sampler channels . . . . . . . . . . . . . . 43
124     6.4.1. Loading an instrument . . . . . . . . . . . . . . . . 43
125     6.4.2. Loading a sampler engine . . . . . . . . . . . . . . 44
126     6.4.3. Getting all created sampler channel count . . . . . . 45
127     6.4.4. Getting all created sampler channel list . . . . . . 45
128 schoenebeck 1251 6.4.5. Adding a new sampler channel . . . . . . . . . . . . 46
129 iliev 1162 6.4.6. Removing a sampler channel . . . . . . . . . . . . . 46
130     6.4.7. Getting amount of available engines . . . . . . . . . 47
131 schoenebeck 1251 6.4.8. Getting all available engines . . . . . . . . . . . . 48
132 iliev 1162 6.4.9. Getting information about an engine . . . . . . . . . 48
133     6.4.10. Getting sampler channel information . . . . . . . . . 49
134     6.4.11. Current number of active voices . . . . . . . . . . . 52
135     6.4.12. Current number of active disk streams . . . . . . . . 52
136     6.4.13. Current fill state of disk stream buffers . . . . . . 53
137     6.4.14. Setting audio output device . . . . . . . . . . . . . 54
138 schoenebeck 1251 6.4.15. Setting audio output type . . . . . . . . . . . . . . 55
139 iliev 1162 6.4.16. Setting audio output channel . . . . . . . . . . . . 55
140     6.4.17. Setting MIDI input device . . . . . . . . . . . . . . 56
141     6.4.18. Setting MIDI input type . . . . . . . . . . . . . . . 57
142     6.4.19. Setting MIDI input port . . . . . . . . . . . . . . . 57
143     6.4.20. Setting MIDI input channel . . . . . . . . . . . . . 58
144     6.4.21. Setting channel volume . . . . . . . . . . . . . . . 59
145     6.4.22. Muting a sampler channel . . . . . . . . . . . . . . 59
146     6.4.23. Soloing a sampler channel . . . . . . . . . . . . . . 60
147 schoenebeck 974 6.4.24. Assigning a MIDI instrument map to a sampler
148 iliev 1162 channel . . . . . . . . . . . . . . . . . . . . . . . 61
149     6.4.25. Adding an effect send to a sampler channel . . . . . 62
150     6.4.26. Removing an effect send from a sampler channel . . . 63
151     6.4.27. Getting amount of effect sends on a sampler channel . 64
152     6.4.28. Listing all effect sends on a sampler channel . . . . 64
153     6.4.29. Getting effect send information . . . . . . . . . . . 65
154     6.4.30. Changing effect send's name . . . . . . . . . . . . . 66
155     6.4.31. Altering effect send's audio routing . . . . . . . . 67
156     6.4.32. Altering effect send's MIDI controller . . . . . . . 68
157 schoenebeck 1251 6.4.33. Altering effect send's send level . . . . . . . . . . 69
158     6.4.34. Resetting a sampler channel . . . . . . . . . . . . . 70
159 iliev 1162 6.5. Controlling connection . . . . . . . . . . . . . . . . . 70
160     6.5.1. Register front-end for receiving event messages . . . 70
161 schoenebeck 940 6.5.2. Unregister front-end for not receiving event
162 iliev 1162 messages . . . . . . . . . . . . . . . . . . . . . . 71
163 schoenebeck 1251 6.5.3. Enable or disable echo of commands . . . . . . . . . 72
164 schoenebeck 708
165 senoner 542
166    
167 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 3]
168 schoenebeck 940
169 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
170 senoner 542
171    
172 iliev 1162 6.5.4. Close client connection . . . . . . . . . . . . . . . 72
173     6.6. Global commands . . . . . . . . . . . . . . . . . . . . . 72
174 schoenebeck 1251 6.6.1. Current number of active voices . . . . . . . . . . . 73
175 iliev 1162 6.6.2. Maximum amount of active voices . . . . . . . . . . . 73
176     6.6.3. Reset sampler . . . . . . . . . . . . . . . . . . . . 73
177     6.6.4. General sampler informations . . . . . . . . . . . . 73
178     6.6.5. Getting global volume attenuation . . . . . . . . . . 74
179 schoenebeck 1251 6.6.6. Setting global volume attenuation . . . . . . . . . . 75
180 iliev 1162 6.7. MIDI Instrument Mapping . . . . . . . . . . . . . . . . . 75
181     6.7.1. Create a new MIDI instrument map . . . . . . . . . . 76
182 schoenebeck 1251 6.7.2. Delete one particular or all MIDI instrument maps . . 77
183 iliev 1162 6.7.3. Get amount of existing MIDI instrument maps . . . . . 77
184 schoenebeck 1251 6.7.4. Getting all created MIDI instrument maps . . . . . . 78
185 iliev 1162 6.7.5. Getting MIDI instrument map information . . . . . . . 78
186     6.7.6. Renaming a MIDI instrument map . . . . . . . . . . . 79
187 schoenebeck 1251 6.7.7. Create or replace a MIDI instrument map entry . . . . 80
188 iliev 1162 6.7.8. Getting ammount of MIDI instrument map entries . . . 82
189 schoenebeck 974 6.7.9. Getting indeces of all entries of a MIDI
190 iliev 1162 instrument map . . . . . . . . . . . . . . . . . . . 83
191 schoenebeck 1251 6.7.10. Remove an entry from the MIDI instrument map . . . . 84
192 iliev 1162 6.7.11. Get current settings of MIDI instrument map entry . . 84
193     6.7.12. Clear MIDI instrument map . . . . . . . . . . . . . . 86
194 schoenebeck 1251 6.8. Managing Instruments Database . . . . . . . . . . . . . . 87
195     6.8.1. Creating a new instrument directory . . . . . . . . . 87
196 iliev 1162 6.8.2. Deleting an instrument directory . . . . . . . . . . 87
197     6.8.3. Getting amount of instrument directories . . . . . . 88
198 schoenebeck 1251 6.8.4. Listing all directories in specific directory . . . . 89
199 iliev 1162 6.8.5. Getting instrument directory information . . . . . . 89
200     6.8.6. Renaming an instrument directory . . . . . . . . . . 90
201 schoenebeck 1251 6.8.7. Moving an instrument directory . . . . . . . . . . . 91
202     6.8.8. Copying instrument directories . . . . . . . . . . . 92
203 iliev 1189 6.8.9. Changing the description of directory . . . . . . . . 92
204 schoenebeck 1251 6.8.10. Finding directories . . . . . . . . . . . . . . . . . 93
205 iliev 1189 6.8.11. Adding instruments to the instruments database . . . 94
206 schoenebeck 1251 6.8.12. Removing an instrument . . . . . . . . . . . . . . . 96
207 iliev 1201 6.8.13. Getting amount of instruments . . . . . . . . . . . . 96
208 schoenebeck 1251 6.8.14. Listing all instruments in specific directory . . . . 97
209 iliev 1189 6.8.15. Getting instrument information . . . . . . . . . . . 97
210 schoenebeck 1251 6.8.16. Renaming an instrument . . . . . . . . . . . . . . . 100
211 iliev 1201 6.8.17. Moving an instrument . . . . . . . . . . . . . . . . 100
212 schoenebeck 1251 6.8.18. Copying instruments . . . . . . . . . . . . . . . . . 101
213     6.8.19. Changing the description of instrument . . . . . . . 102
214     6.8.20. Finding instruments . . . . . . . . . . . . . . . . . 102
215 iliev 1201 6.8.21. Getting job status information . . . . . . . . . . . 104
216     7. Command Syntax . . . . . . . . . . . . . . . . . . . . . . . 106
217 schoenebeck 1251 7.1. Character Set and Escape Sequences . . . . . . . . . . . 119
218     8. Events . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
219     8.1. Number of audio output devices changed . . . . . . . . . 121
220 schoenebeck 945
221    
222    
223 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 4]
224 iliev 1162
225 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
226 schoenebeck 945
227 iliev 1162
228 schoenebeck 1251 8.2. Audio output device's settings changed . . . . . . . . . 121
229     8.3. Number of MIDI input devices changed . . . . . . . . . . 121
230     8.4. MIDI input device's settings changed . . . . . . . . . . 122
231     8.5. Number of sampler channels changed . . . . . . . . . . . 122
232     8.6. Number of active voices changed . . . . . . . . . . . . . 122
233     8.7. Number of active disk streams changed . . . . . . . . . . 123
234     8.8. Disk stream buffer fill state changed . . . . . . . . . . 123
235     8.9. Channel information changed . . . . . . . . . . . . . . . 123
236     8.10. Number of effect sends changed . . . . . . . . . . . . . 124
237     8.11. Effect send information changed . . . . . . . . . . . . . 124
238     8.12. Total number of active voices changed . . . . . . . . . . 124
239     8.13. Number of MIDI instrument maps changed . . . . . . . . . 125
240     8.14. MIDI instrument map information changed . . . . . . . . . 125
241     8.15. Number of MIDI instruments changed . . . . . . . . . . . 125
242     8.16. MIDI instrument information changed . . . . . . . . . . . 126
243     8.17. Global settings changed . . . . . . . . . . . . . . . . . 126
244     8.18. Number of database instrument directories changed . . . . 127
245     8.19. Database instrument directory information changed . . . . 127
246     8.20. Number of database instruments changed . . . . . . . . . 128
247     8.21. Database instrument information changed . . . . . . . . . 128
248     8.22. Database job status information changed . . . . . . . . . 129
249     8.23. Miscellaneous and debugging events . . . . . . . . . . . 129
250     9. Security Considerations . . . . . . . . . . . . . . . . . . . 130
251     10. Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . 131
252     11. References . . . . . . . . . . . . . . . . . . . . . . . . . 132
253     Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 133
254     Intellectual Property and Copyright Statements . . . . . . . . . 134
255 iliev 1162
256    
257    
258    
259    
260    
261    
262    
263    
264    
265    
266    
267    
268    
269    
270    
271    
272    
273    
274    
275    
276    
277    
278    
279 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 5]
280 schoenebeck 945
281 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
282 schoenebeck 945
283    
284 senoner 542 1. Requirements notation
285    
286     The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
287     "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
288     document are to be interpreted as described in [RFC2119].
289    
290     This protocol is always case-sensitive if not explicitly claimed the
291     opposite.
292    
293 schoenebeck 708 In examples, "C:" and "S:" indicate lines sent by the client (front-
294     end) and server (LinuxSampler) respectively. Lines in examples must
295     be interpreted as every line being CRLF terminated (carriage return
296     character followed by line feed character as defined in the ASCII
297 schoenebeck 1251 standard [RFC20]), thus the following example:
298 senoner 542
299     C: "some line"
300 schoenebeck 708
301 senoner 542 "another line"
302    
303     must actually be interpreted as client sending the following message:
304    
305     "some line<CR><LF>another line<CR><LF>"
306    
307     where <CR> symbolizes the carriage return character and <LF> the line
308     feed character as defined in the ASCII standard.
309    
310     Due to technical reasons, messages can arbitrary be fragmented, means
311     the following example:
312    
313     S: "abcd"
314    
315     could also happen to be sent in three messages like in the following
316     sequence scenario:
317    
318     o server sending message "a"
319 schoenebeck 708
320 senoner 542 o followed by a delay (pause) with arbitrary duration
321 schoenebeck 708
322 senoner 542 o followed by server sending message "bcd<CR>"
323 schoenebeck 708
324 senoner 542 o again followed by a delay (pause) with arbitrary duration
325 schoenebeck 708
326 senoner 542 o followed by server sending the message "<LF>"
327    
328     where again <CR> and <LF> symbolize the carriage return and line feed
329     characters respectively.
330    
331    
332    
333    
334    
335 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 6]
336 schoenebeck 940
337 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
338 senoner 542
339    
340 schoenebeck 575 2. Versioning of this specification
341 senoner 542
342 schoenebeck 575 LSCP will certainly be extended and enhanced by-and-by. Each
343     official release of the LSCP specification will be tagged with a
344     unique version tuple. The version tuple consists at least of a major
345     and minor version number like:
346    
347     "1.2"
348    
349     In this example the major version number would be "1" and the minor
350     version number would be "2". Note that the version tuple might also
351     have more than two elements. The major version number defines a
352     group of backward compatible versions. That means a frontend is
353     compatible to the connected sampler if and only if the LSCP versions
354     to which each of the two parties complies to, match both of the
355     following rules:
356    
357     Compatibility:
358    
359     1. The frontend's LSCP major version and the sampler's LSCP major
360     version are exactly equal.
361 schoenebeck 708
362 schoenebeck 575 2. The frontend's LSCP minor version is less or equal than the
363     sampler's LSCP minor version.
364    
365     Compatibility can only be claimed if both rules are true. The
366 schoenebeck 940 frontend can use the "GET SERVER INFO" (Section 6.6.4) command to get
367 schoenebeck 575 the version of the LSCP specification the sampler complies with.
368    
369    
370    
371    
372    
373    
374    
375    
376    
377    
378    
379    
380    
381    
382    
383    
384    
385    
386    
387    
388    
389    
390    
391 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 7]
392 schoenebeck 940
393 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
394 schoenebeck 575
395    
396     3. Introduction
397    
398 senoner 542 LinuxSampler is a so called software sampler application capable to
399     playback audio samples from a computer's Random Access Memory (RAM)
400     as well as directly streaming it from disk. LinuxSampler is designed
401     to be modular. It provides several so called "sampler engines" where
402     each engine is specialized for a certain purpose. LinuxSampler has
403     virtual channels which will be referred in this document as "sampler
404     channels". The channels are in such way virtual as they can be
405     connected to an arbitrary MIDI input method and arbitrary MIDI
406 schoenebeck 708 channel (e.g. sampler channel 17 could be connected to an ALSA
407 senoner 542 sequencer device 64:0 and listening to MIDI channel 1 there). Each
408 schoenebeck 575 sampler channel will be associated with an instance of one of the
409 senoner 542 available sampler engines (e.g. GigEngine, DLSEngine). The audio
410     output of each sampler channel can be routed to an arbitrary audio
411     output method (ALSA / JACK) and an arbitrary audio output channel
412     there.
413    
414    
415    
416    
417    
418    
419    
420    
421    
422    
423    
424    
425    
426    
427    
428    
429    
430    
431    
432    
433    
434    
435    
436    
437    
438    
439    
440    
441    
442    
443    
444    
445    
446    
447 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 8]
448 schoenebeck 940
449 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
450 senoner 542
451    
452 schoenebeck 575 4. Focus of this protocol
453 senoner 542
454     Main focus of this protocol is to provide a way to configure a
455     running LinuxSampler instance and to retrieve information about it.
456     The focus of this protocol is not to provide a way to control
457     synthesis parameters or even to trigger or release notes. Or in
458     other words; the focus are those functionalities which are not
459     covered by MIDI or which may at most be handled via MIDI System
460     Exclusive Messages.
461    
462    
463    
464    
465    
466    
467    
468    
469    
470    
471    
472    
473    
474    
475    
476    
477    
478    
479    
480    
481    
482    
483    
484    
485    
486    
487    
488    
489    
490    
491    
492    
493    
494    
495    
496    
497    
498    
499    
500    
501    
502    
503 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 9]
504 schoenebeck 940
505 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
506 senoner 542
507    
508 schoenebeck 575 5. Communication Overview
509 senoner 542
510     There are two distinct methods of communication between a running
511     instance of LinuxSampler and one or more control applications, so
512     called "front-ends": a simple request/response communication method
513     used by the clients to give commands to the server as well as to
514     inquire about server's status and a subscribe/notify communication
515     method used by the client to subscribe to and receive notifications
516     of certain events as they happen on the server. The latter needs
517     more effort to be implemented in the front-end application. The two
518     communication methods will be described next.
519    
520 schoenebeck 940 5.1. Request/response communication method
521 senoner 542
522 schoenebeck 575 This simple communication method is based on TCP [RFC793]. The
523     front-end application establishes a TCP connection to the
524     LinuxSampler instance on a certain host system. Then the front-end
525     application will send certain ASCII based commands as defined in this
526     document (every command line must be CRLF terminated - see
527     "Conventions used in this document" at the beginning of this
528     document) and the LinuxSampler application will response after a
529     certain process time with an appropriate ASCII based answer, also as
530     defined in this document. So this TCP communication is simply based
531     on query and answer paradigm. That way LinuxSampler is only able to
532     answer on queries from front-ends, but not able to automatically send
533     messages to the client if it's not asked to. The fronted should not
534     reconnect to LinuxSampler for every single command, instead it should
535     keep the connection established and simply resend message(s) for
536     subsequent commands. To keep information in the front-end up-to-date
537     the front-end has to periodically send new requests to get the
538     current information from the LinuxSampler instance. This is often
539     referred to as "polling". While polling is simple to implement and
540     may be OK to use in some cases, there may be disadvantages to polling
541     such as network traffic overhead and information being out of date.
542     It is possible for a client or several clients to open more than one
543 senoner 542 connection to the server at the same time. It is also possible to
544     send more than one request to the server at the same time but if
545     those requests are sent over the same connection server MUST execute
546     them sequentially. Upon executing a request server will produce a
547     result set and send it to the client. Each and every request made by
548     the client MUST result in a result set being sent back to the client.
549     No other data other than a result set may be sent by a server to a
550     client. No result set may be sent to a client without the client
551     sending request to the server first. On any particular connection,
552     result sets MUST be sent in their entirety without being interrupted
553     by other result sets. If several requests got queued up at the
554     server they MUST be processed in the order they were received and
555     result sets MUST be sent back in the same order.
556    
557    
558    
559 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 10]
560 schoenebeck 940
561 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
562 senoner 542
563    
564 schoenebeck 940 5.1.1. Result format
565 schoenebeck 708
566 senoner 542 Result set could be one of the following types:
567    
568     1. Normal
569 schoenebeck 708
570 senoner 542 2. Warning
571 schoenebeck 708
572 senoner 542 3. Error
573    
574     Warning and Error result sets MUST be single line and have the
575     following format:
576    
577     o "WRN:<warning-code>:<warning-message>"
578 schoenebeck 708
579 senoner 542 o "ERR:<error-code>:<error-message>"
580    
581     Where <warning-code> and <error-code> are numeric unique identifiers
582     of the warning or error and <warning-message> and <error-message> are
583     human readable descriptions of the warning or error respectively.
584    
585     Examples:
586    
587     C: "LOAD INSTRUMENT '/home/me/Boesendorfer24bit.gig" 0 0
588 schoenebeck 708
589 senoner 542 S: "WRN:32:This is a 24 bit patch which is not supported natively
590     yet."
591    
592     C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA EAR"
593 schoenebeck 708
594 senoner 542 S: "ERR:3456:Audio output driver 'ALSA' does not have a parameter
595     'EAR'."
596    
597     C: "GET AUDIO_OUTPUT_DEVICE INFO 123456"
598 schoenebeck 708
599 senoner 542 S: "ERR:9:There is no audio output device with index 123456."
600    
601     Normal result sets could be:
602    
603     1. Empty
604 schoenebeck 708
605 senoner 542 2. Single line
606 schoenebeck 708
607 senoner 542 3. Multi-line
608    
609     Empty result set is issued when the server only needed to acknowledge
610     the fact that the request was received and it was processed
611     successfully and no additional information is available. This result
612    
613    
614    
615 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 11]
616 schoenebeck 940
617 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
618 senoner 542
619    
620 schoenebeck 708 set has the following format:
621 senoner 542
622 schoenebeck 708 "OK"
623 senoner 542
624 schoenebeck 708 Example:
625 senoner 542
626 schoenebeck 708 C: "SET AUDIO_OUTPUT_DEVICE_PARAMETER 0 CHANNELS=4"
627    
628 senoner 542 S: "OK"
629    
630     Single line result sets are command specific. One example of a
631     single line result set is an empty line. Multi-line result sets are
632     command specific and may include one or more lines of information.
633     They MUST always end with the following line:
634    
635     "."
636    
637     Example:
638    
639     C: "GET AUDIO_OUTPUT_DEVICE INFO 0"
640 schoenebeck 708
641 senoner 542 S: "DRIVER: ALSA"
642 schoenebeck 708
643 senoner 542 "CHANNELS: 2"
644 schoenebeck 708
645 senoner 542 "SAMPLERATE: 44100"
646 schoenebeck 708
647 senoner 542 "ACTIVE: true"
648 schoenebeck 708
649 senoner 542 "FRAGMENTS: 2"
650 schoenebeck 708
651 senoner 542 "FRAGMENTSIZE: 128"
652 schoenebeck 708
653 senoner 542 "CARD: '0,0'"
654 schoenebeck 708
655 senoner 542 "."
656    
657     In addition to above mentioned formats, warnings and empty result
658     sets MAY be indexed. In this case, they have the following formats
659     respectively:
660    
661     o "WRN[<index>]:<warning-code>:<warning-message>"
662 schoenebeck 708
663 senoner 542 o "OK[<index>]"
664    
665     where <index> is command specific and is used to indicate channel
666     number that the result set was related to or other integer value.
667    
668 schoenebeck 708
669    
670    
671 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 12]
672 schoenebeck 940
673 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
674 schoenebeck 708
675    
676 senoner 542 Each line of the result set MUST end with <CRLF>.
677    
678     Examples:
679    
680     C: "ADD CHANNEL"
681 schoenebeck 708
682 senoner 542 S: "OK[12]"
683    
684     C: "CREATE AUDIO_OUTPUT_DEVICE ALSA SAMPLERATE=96000"
685 schoenebeck 708
686 senoner 542 S: "WRN[0]:32:Sample rate not supported, using 44100 instead."
687    
688 schoenebeck 940 5.2. Subscribe/notify communication method
689 schoenebeck 708
690 senoner 542 This more sophisticated communication method is actually only an
691     extension of the simple request/response communication method. The
692     front-end still uses a TCP connection and sends the same commands on
693     the TCP connection. Two extra commands are SUBSCRIBE and UNSUBSCRIBE
694     commands that allow a client to tell the server that it is interested
695     in receiving notifications about certain events as they happen on the
696     server. The SUBSCRIBE command has the following syntax:
697    
698     SUBSCRIBE <event-id>
699    
700     where <event-id> will be replaced by the respective event that client
701     wants to subscribe to. Upon receiving such request, server SHOULD
702     respond with OK and start sending EVENT notifications when a given
703     even has occurred to the front-end when an event has occurred. It
704     MAY be possible certain events may be sent before OK response during
705     real time nature of their generation. Event messages have the
706     following format:
707    
708     NOTIFY:<event-id>:<custom-event-data>
709    
710     where <event-id> uniquely identifies the event that has occurred and
711     <custom-event-data> is event specific.
712    
713     Several rules must be followed by the server when generating events:
714    
715     1. Events MUST NOT be sent to any client who has not issued an
716     appropriate SUBSCRIBE command.
717 schoenebeck 708
718 senoner 542 2. Events MUST only be sent using the same connection that was used
719     to subscribe to them.
720 schoenebeck 708
721 senoner 542 3. When response is being sent to the client, event MUST be inserted
722     in the stream before or after the response, but NOT in the
723 schoenebeck 940 middle. Same is true about the response. It should never be
724 schoenebeck 708
725    
726    
727 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 13]
728 schoenebeck 940
729 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
730 schoenebeck 708
731    
732 senoner 542 inserted in the middle of the event message as well as any other
733     response.
734    
735     If the client is not interested in a particular event anymore it MAY
736     issue UNSUBSCRIBE command using the following syntax:
737    
738     UNSUBSCRIBE <event-id>
739    
740     where <event-id> will be replace by the respective event that client
741     is no longer interested in receiving. For a list of supported events
742 schoenebeck 575 see Section 8.
743 senoner 542
744     Example: the fill states of disk stream buffers have changed on
745     sampler channel 4 and the LinuxSampler instance will react by sending
746     the following message to all clients who subscribed to this event:
747    
748     NOTIFY:CHANNEL_BUFFER_FILL:4 [35]62%,[33]80%,[37]98%
749    
750     Which means there are currently three active streams on sampler
751     channel 4, where the stream with ID "35" is filled by 62%, stream
752     with ID 33 is filled by 80% and stream with ID 37 is filled by 98%.
753    
754     Clients may choose to open more than one connection to the server and
755     use some connections to receive notifications while using other
756     connections to issue commands to the back-end. This is entirely
757     legal and up to the implementation. This does not change the
758     protocol in any way and no special restrictions exist on the server
759     to allow or disallow this or to track what connections belong to what
760     front-ends. Server will listen on a single port, accept multiple
761     connections and support protocol described in this specification in
762     it's entirety on this single port on each connection that it
763     accepted.
764    
765     Due to the fact that TCP is used for this communication, dead peers
766     will be detected automatically by the OS TCP stack. While it may
767     take a while to detect dead peers if no traffic is being sent from
768     server to client (TCP keep-alive timer is set to 2 hours on many
769     OSes) it will not be an issue here as when notifications are sent by
770     the server, dead client will be detected quickly.
771    
772     When connection is closed for any reason server MUST forget all
773     subscriptions that were made on this connection. If client
774     reconnects it MUST resubscribe to all events that it wants to
775     receive.
776    
777    
778    
779    
780    
781    
782    
783 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 14]
784 schoenebeck 940
785 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
786 senoner 542
787    
788 schoenebeck 575 6. Description for control commands
789 senoner 542
790     This chapter will describe the available control commands that can be
791     sent on the TCP connection in detail. Some certain commands (e.g.
792 schoenebeck 708 "GET CHANNEL INFO" (Section 6.4.10) or "GET ENGINE INFO"
793     (Section 6.4.9)) lead to multiple-line responses. In this case
794     LinuxSampler signals the end of the response by a "." (single dot)
795     line.
796 senoner 542
797 schoenebeck 940 6.1. Ignored lines and comments
798 senoner 542
799     White lines, that is lines which only contain space and tabulator
800     characters, and lines that start with a "#" character are ignored,
801     thus it's possible for example to group commands and to place
802     comments in a LSCP script file.
803    
804 schoenebeck 940 6.2. Configuring audio drivers
805 senoner 542
806     Instances of drivers in LinuxSampler are called devices. You can use
807 schoenebeck 708 multiple audio devices simultaneously, e.g. to output the sound of
808 senoner 542 one sampler channel using the ALSA audio output driver, and on
809     another sampler channel you might want to use the JACK audio output
810     driver. For particular audio output systems it's also possible to
811 schoenebeck 708 create several devices of the same audio output driver, e.g. two
812 senoner 542 separate ALSA audio output devices for using two different sound
813     cards at the same time. This chapter describes all commands to
814     configure LinuxSampler's audio output devices and their parameters.
815    
816     Instead of defining commands and parameters for each driver
817     individually, all possible parameters, their meanings and possible
818     values have to be obtained at runtime. This makes the protocol a bit
819     abstract, but has the advantage, that front-ends can be written
820     independently of what drivers are currently implemented and what
821 schoenebeck 708 parameters these drivers are actually offering. This means front-
822     ends can even handle drivers which are implemented somewhere in
823 senoner 542 future without modifying the front-end at all.
824    
825     Note: examples in this chapter showing particular parameters of
826     drivers are not meant as specification of the drivers' parameters.
827     Driver implementations in LinuxSampler might have complete different
828     parameter names and meanings than shown in these examples or might
829     change in future, so these examples are only meant for showing how to
830     retrieve what parameters drivers are offering, how to retrieve their
831     possible values, etc.
832    
833    
834    
835    
836    
837 schoenebeck 974
838    
839 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 15]
840 schoenebeck 940
841 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
842 senoner 542
843    
844 schoenebeck 974 6.2.1. Getting amount of available audio output drivers
845    
846     Use the following command to get the number of audio output drivers
847 schoenebeck 708 currently available for the LinuxSampler instance:
848    
849 senoner 542 GET AVAILABLE_AUDIO_OUTPUT_DRIVERS
850    
851     Possible Answers:
852    
853     LinuxSampler will answer by sending the number of audio output
854     drivers.
855    
856     Example:
857    
858     C: "GET AVAILABLE_AUDIO_OUTPUT_DRIVERS"
859 schoenebeck 708
860 senoner 542 S: "2"
861    
862 schoenebeck 940 6.2.2. Getting all available audio output drivers
863 schoenebeck 708
864 senoner 542 Use the following command to list all audio output drivers currently
865     available for the LinuxSampler instance:
866    
867     LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS
868    
869     Possible Answers:
870    
871     LinuxSampler will answer by sending comma separated character
872     strings, each symbolizing an audio output driver.
873    
874     Example:
875    
876     C: "LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS"
877 schoenebeck 708
878 senoner 542 S: "ALSA,JACK"
879    
880 schoenebeck 940 6.2.3. Getting information about a specific audio output driver
881 schoenebeck 708
882 senoner 542 Use the following command to get detailed information about a
883     specific audio output driver:
884    
885     GET AUDIO_OUTPUT_DRIVER INFO <audio-output-driver>
886    
887     Where <audio-output-driver> is the name of the audio output driver,
888 schoenebeck 575 returned by the "LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS" (Section 6.2.2)
889 senoner 542 command.
890    
891     Possible Answers:
892    
893 schoenebeck 708
894    
895 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 16]
896 schoenebeck 940
897 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
898 schoenebeck 708
899 schoenebeck 940
900 senoner 542 LinuxSampler will answer by sending a <CRLF> separated list. Each
901     answer line begins with the information category name followed by
902     a colon and then a space character <SP> and finally the info
903     character string to that info category. At the moment the
904     following information categories are defined:
905    
906    
907    
908 schoenebeck 708 DESCRIPTION -
909 senoner 542
910 schoenebeck 708 character string describing the audio output driver
911 senoner 542
912 schoenebeck 708 VERSION -
913 senoner 542
914 schoenebeck 708 character string reflecting the driver's version
915 senoner 542
916     PARAMETERS -
917 schoenebeck 708
918 senoner 542 comma separated list of all parameters available for the
919     given audio output driver, at least parameters 'channels',
920     'samplerate' and 'active' are offered by all audio output
921     drivers
922 schoenebeck 708
923 senoner 542 The mentioned fields above don't have to be in particular order.
924    
925     Example:
926    
927     C: "GET AUDIO_OUTPUT_DRIVER INFO ALSA"
928 schoenebeck 708
929 senoner 542 S: "DESCRIPTION: Advanced Linux Sound Architecture"
930 schoenebeck 708
931 senoner 542 "VERSION: 1.0"
932 schoenebeck 708
933 senoner 542 "PARAMETERS: DRIVER,CHANNELS,SAMPLERATE,ACTIVE,FRAGMENTS,
934     FRAGMENTSIZE,CARD"
935 schoenebeck 708
936 senoner 542 "."
937    
938 schoenebeck 940 6.2.4. Getting information about specific audio output driver parameter
939 schoenebeck 708
940 senoner 542 Use the following command to get detailed information about a
941     specific audio output driver parameter:
942    
943     GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO <audio> <prm> [<deplist>]
944    
945     Where <audio> is the name of the audio output driver as returned by
946 schoenebeck 575 the "LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS" (Section 6.2.2) command,
947 schoenebeck 940 <prm> a specific parameter name for which information should be
948 schoenebeck 708
949    
950    
951 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 17]
952 schoenebeck 940
953 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
954 schoenebeck 708
955    
956     obtained (as returned by the "GET AUDIO_OUTPUT_DRIVER INFO"
957     (Section 6.2.3) command) and <deplist> is an optional list of
958     parameters on which the sought parameter <prm> depends on, <deplist>
959     is a list of key-value pairs in form of "key1=val1 key2=val2 ...",
960     where character string values are encapsulated into apostrophes (').
961     Arguments given with <deplist> which are not dependency parameters of
962     <prm> will be ignored, means the front-end application can simply put
963     all parameters into <deplist> with the values already selected by the
964 senoner 542 user.
965    
966     Possible Answers:
967    
968     LinuxSampler will answer by sending a <CRLF> separated list. Each
969     answer line begins with the information category name followed by
970     a colon and then a space character <SP> and finally the info
971     character string to that info category. There are information
972     which is always returned, independently of the given driver
973     parameter and there are optional information which is only shown
974     dependently to given driver parameter. At the moment the
975     following information categories are defined:
976    
977     TYPE -
978 schoenebeck 708
979 senoner 542 either "BOOL" for boolean value(s) or "INT" for integer
980     value(s) or "FLOAT" for dotted number(s) or "STRING" for
981     character string(s) (always returned, no matter which driver
982     parameter)
983 schoenebeck 708
984 senoner 542 DESCRIPTION -
985 schoenebeck 708
986 senoner 542 arbitrary text describing the purpose of the parameter (always
987     returned, no matter which driver parameter)
988 schoenebeck 708
989 senoner 542 MANDATORY -
990 schoenebeck 708
991 senoner 542 either true or false, defines if this parameter must be given
992     when the device is to be created with the 'CREATE
993 schoenebeck 575 AUDIO_OUTPUT_DEVICE' (Section 6.2.5) command (always returned,
994 senoner 542 no matter which driver parameter)
995 schoenebeck 708
996 senoner 542 FIX -
997 schoenebeck 708
998 senoner 542 either true or false, if false then this parameter can be
999     changed at any time, once the device is created by the 'CREATE
1000 schoenebeck 575 AUDIO_OUTPUT_DEVICE' (Section 6.2.5) command (always returned,
1001 senoner 542 no matter which driver parameter)
1002 schoenebeck 708
1003    
1004    
1005    
1006    
1007 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 18]
1008 schoenebeck 940
1009 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1010 schoenebeck 708
1011    
1012 senoner 542 MULTIPLICITY -
1013 schoenebeck 708
1014 senoner 542 either true or false, defines if this parameter allows only one
1015     value or a list of values, where true means multiple values and
1016     false only a single value allowed (always returned, no matter
1017     which driver parameter)
1018 schoenebeck 708
1019 senoner 542 DEPENDS -
1020 schoenebeck 708
1021 schoenebeck 561 comma separated list of parameters this parameter depends on,
1022 senoner 542 means the values for fields 'DEFAULT', 'RANGE_MIN', 'RANGE_MAX'
1023     and 'POSSIBILITIES' might depend on these listed parameters,
1024     for example assuming that an audio driver (like the ALSA
1025     driver) offers parameters 'card' and 'samplerate' then
1026     parameter 'samplerate' would depend on 'card' because the
1027     possible values for 'samplerate' depends on the sound card
1028     which can be chosen by the 'card' parameter (optionally
1029     returned, dependent to driver parameter)
1030 schoenebeck 708
1031 senoner 542 DEFAULT -
1032 schoenebeck 708
1033 senoner 542 reflects the default value for this parameter which is used
1034     when the device is created and not explicitly given with the
1035 schoenebeck 575 'CREATE AUDIO_OUTPUT_DEVICE' (Section 6.2.5) command, in case
1036 senoner 542 of MULTIPLCITY=true, this is a comma separated list, that's why
1037     character strings are encapsulated into apostrophes (')
1038     (optionally returned, dependent to driver parameter)
1039 schoenebeck 708
1040 senoner 542 RANGE_MIN -
1041 schoenebeck 708
1042 senoner 542 defines lower limit of the allowed value range for this
1043     parameter, can be an integer value as well as a dotted number,
1044     this parameter is often used in conjunction with RANGE_MAX, but
1045     may also appear without (optionally returned, dependent to
1046     driver parameter)
1047 schoenebeck 708
1048 senoner 542 RANGE_MAX -
1049 schoenebeck 708
1050 senoner 542 defines upper limit of the allowed value range for this
1051     parameter, can be an integer value as well as a dotted number,
1052     this parameter is often used in conjunction with RANGE_MIN, but
1053     may also appear without (optionally returned, dependent to
1054     driver parameter)
1055 schoenebeck 708
1056 senoner 542 POSSIBILITIES -
1057 schoenebeck 708
1058 senoner 542 comma separated list of possible values for this parameter,
1059     character strings are encapsulated into apostrophes (optionally
1060 schoenebeck 708
1061    
1062    
1063 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 19]
1064 schoenebeck 940
1065 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1066 schoenebeck 708
1067    
1068 senoner 542 returned, dependent to driver parameter)
1069    
1070     The mentioned fields above don't have to be in particular order.
1071    
1072     Examples:
1073    
1074     C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA CARD"
1075 schoenebeck 708
1076 senoner 542 S: "DESCRIPTION: sound card to be used"
1077 schoenebeck 708
1078 senoner 542 "TYPE: STRING"
1079 schoenebeck 708
1080 senoner 542 "MANDATORY: false"
1081 schoenebeck 708
1082 senoner 542 "FIX: true"
1083 schoenebeck 708
1084 senoner 542 "MULTIPLICITY: false"
1085 schoenebeck 708
1086 senoner 542 "DEFAULT: '0,0'"
1087 schoenebeck 708
1088 senoner 542 "POSSIBILITIES: '0,0','1,0','2,0'"
1089 schoenebeck 708
1090 senoner 542 "."
1091    
1092     C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA SAMPLERATE"
1093 schoenebeck 708
1094 senoner 542 S: "DESCRIPTION: output sample rate in Hz"
1095 schoenebeck 708
1096 senoner 542 "TYPE: INT"
1097 schoenebeck 708
1098 senoner 542 "MANDATORY: false"
1099 schoenebeck 708
1100 senoner 542 "FIX: false"
1101 schoenebeck 708
1102 senoner 542 "MULTIPLICITY: false"
1103 schoenebeck 708
1104 senoner 542 "DEPENDS: card"
1105 schoenebeck 708
1106 senoner 542 "DEFAULT: 44100"
1107 schoenebeck 708
1108 senoner 542 "."
1109    
1110     C: "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO ALSA SAMPLERATE
1111     CARD='0,0'"
1112 schoenebeck 708
1113 senoner 542 S: "DESCRIPTION: output sample rate in Hz"
1114 schoenebeck 708
1115    
1116    
1117    
1118    
1119 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 20]
1120 schoenebeck 940
1121 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1122 schoenebeck 708
1123    
1124 senoner 542 "TYPE: INT"
1125 schoenebeck 708
1126 senoner 542 "MANDATORY: false"
1127 schoenebeck 708
1128 senoner 542 "FIX: false"
1129 schoenebeck 708
1130 senoner 542 "MULTIPLICITY: false"
1131 schoenebeck 708
1132 senoner 542 "DEPENDS: card"
1133 schoenebeck 708
1134 senoner 542 "DEFAULT: 44100"
1135 schoenebeck 708
1136 senoner 542 "RANGE_MIN: 22050"
1137    
1138 schoenebeck 708 "RANGE_MAX: 96000"
1139 senoner 542
1140 schoenebeck 708 "."
1141 senoner 542
1142 schoenebeck 940 6.2.5. Creating an audio output device
1143 senoner 542
1144 schoenebeck 940 Use the following command to create a new audio output device for the
1145     desired audio output system:
1146 senoner 542
1147     CREATE AUDIO_OUTPUT_DEVICE <audio-output-driver> [<param-list>]
1148    
1149     Where <audio-output-driver> should be replaced by the desired audio
1150 schoenebeck 575 output system as returned by the "LIST
1151 schoenebeck 708 AVAILABLE_AUDIO_OUTPUT_DRIVERS" (Section 6.2.2) command and <param-
1152     list> by an optional list of driver specific parameters in form of
1153     "key1=val1 key2=val2 ...", where character string values should be
1154     encapsulated into apostrophes ('). Note that there might be drivers
1155     which require parameter(s) to be given with this command. Use the
1156     previously described commands in this chapter to get this
1157 schoenebeck 575 information.
1158 senoner 542
1159     Possible Answers:
1160    
1161     "OK[<device-id>]" -
1162 schoenebeck 708
1163 senoner 542 in case the device was successfully created, where <device-id>
1164     is the numerical ID of the new device
1165 schoenebeck 708
1166 senoner 542 "WRN[<device-id>]:<warning-code>:<warning-message>" -
1167 schoenebeck 708
1168 senoner 542 in case the device was created successfully, where <device-id>
1169     is the numerical ID of the new device, but there are noteworthy
1170 schoenebeck 708 issue(s) related (e.g. sound card doesn't support given
1171 schoenebeck 940 hardware parameters and the driver is using fall-back values),
1172 schoenebeck 708
1173    
1174    
1175 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 21]
1176 schoenebeck 940
1177 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1178 schoenebeck 708
1179    
1180 senoner 542 providing an appropriate warning code and warning message
1181 schoenebeck 708
1182 senoner 542 "ERR:<error-code>:<error-message>" -
1183 schoenebeck 708
1184 senoner 542 in case it failed, providing an appropriate error code and
1185     error message
1186    
1187     Examples:
1188    
1189     C: "CREATE AUDIO_OUTPUT_DEVICE ALSA"
1190 schoenebeck 708
1191 senoner 542 S: "OK[0]"
1192    
1193     C: "CREATE AUDIO_OUTPUT_DEVICE ALSA CARD='2,0' SAMPLERATE=96000"
1194 schoenebeck 708
1195 senoner 542 S: "OK[1]"
1196    
1197 schoenebeck 940 6.2.6. Destroying an audio output device
1198 schoenebeck 708
1199 senoner 542 Use the following command to destroy a created output device:
1200    
1201 schoenebeck 575 DESTROY AUDIO_OUTPUT_DEVICE <device-id>
1202    
1203     Where <device-id> should be replaced by the numerical ID of the audio
1204 schoenebeck 708 output device as given by the "CREATE AUDIO_OUTPUT_DEVICE"
1205     (Section 6.2.5) or "LIST AUDIO_OUTPUT_DEVICES" (Section 6.2.8)
1206     command.
1207 senoner 542
1208     Possible Answers:
1209    
1210     "OK" -
1211 schoenebeck 708
1212 senoner 542 in case the device was successfully destroyed
1213 schoenebeck 708
1214 senoner 542 "WRN:<warning-code>:<warning-message>" -
1215 schoenebeck 708
1216 senoner 542 in case the device was destroyed successfully, but there are
1217 schoenebeck 708 noteworthy issue(s) related (e.g. an audio over ethernet driver
1218     was unloaded but the other host might not be informed about
1219     this situation), providing an appropriate warning code and
1220     warning message
1221    
1222 senoner 542 "ERR:<error-code>:<error-message>" -
1223 schoenebeck 708
1224 senoner 542 in case it failed, providing an appropriate error code and
1225     error message
1226    
1227 schoenebeck 940 Example:
1228 schoenebeck 708
1229    
1230    
1231 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 22]
1232 schoenebeck 940
1233 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1234 schoenebeck 708
1235    
1236 senoner 542 C: "DESTROY AUDIO_OUTPUT_DEVICE 0"
1237 schoenebeck 708
1238 senoner 542 S: "OK"
1239    
1240 schoenebeck 940 6.2.7. Getting all created audio output device count
1241 schoenebeck 708
1242 senoner 542 Use the following command to count all created audio output devices:
1243    
1244     GET AUDIO_OUTPUT_DEVICES
1245    
1246     Possible Answers:
1247    
1248     LinuxSampler will answer by sending the current number of all
1249     audio output devices.
1250    
1251     Example:
1252    
1253     C: "GET AUDIO_OUTPUT_DEVICES"
1254 schoenebeck 708
1255 senoner 542 S: "4"
1256    
1257 schoenebeck 940 6.2.8. Getting all created audio output device list
1258 schoenebeck 708
1259 senoner 542 Use the following command to list all created audio output devices:
1260    
1261     LIST AUDIO_OUTPUT_DEVICES
1262    
1263     Possible Answers:
1264    
1265 schoenebeck 575 LinuxSampler will answer by sending a comma separated list with
1266     the numerical IDs of all audio output devices.
1267    
1268 senoner 542 Example:
1269    
1270     C: "LIST AUDIO_OUTPUT_DEVICES"
1271 schoenebeck 708
1272 senoner 542 S: "0,1,4,5"
1273    
1274 schoenebeck 940 6.2.9. Getting current settings of an audio output device
1275 schoenebeck 708
1276 senoner 542 Use the following command to get current settings of a specific,
1277     created audio output device:
1278    
1279 schoenebeck 940 GET AUDIO_OUTPUT_DEVICE INFO <device-id>
1280 schoenebeck 708
1281 schoenebeck 940 Where <device-id> should be replaced by numerical ID of the audio
1282     output device as e.g. returned by the "LIST AUDIO_OUTPUT_DEVICES"
1283     (Section 6.2.8) command.
1284 schoenebeck 708
1285    
1286    
1287 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 23]
1288 schoenebeck 940
1289 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1290 schoenebeck 708
1291    
1292 senoner 542 Possible Answers:
1293    
1294     LinuxSampler will answer by sending a <CRLF> separated list. Each
1295     answer line begins with the information category name followed by a
1296     colon and then a space character <SP> and finally the info character
1297     string to that info category. As some parameters might allow
1298     multiple values, character strings are encapsulated into apostrophes
1299     ('). At the moment the following information categories are defined
1300     (independently of device):
1301    
1302     DRIVER -
1303 schoenebeck 708
1304 senoner 542 identifier of the used audio output driver, as also returned by
1305 schoenebeck 575 the "LIST AVAILABLE_AUDIO_OUTPUT_DRIVERS" (Section 6.2.2)
1306 senoner 542 command
1307 schoenebeck 708
1308 senoner 542 CHANNELS -
1309 schoenebeck 708
1310 senoner 542 amount of audio output channels this device currently offers
1311 schoenebeck 708
1312 senoner 542 SAMPLERATE -
1313 schoenebeck 708
1314 senoner 542 playback sample rate the device uses
1315 schoenebeck 708
1316 senoner 542 ACTIVE -
1317 schoenebeck 708
1318 senoner 542 either true or false, if false then the audio device is
1319     inactive and doesn't output any sound, nor do the sampler
1320     channels connected to this audio device render any audio
1321    
1322     The mentioned fields above don't have to be in particular order. The
1323     fields above are only those fields which are returned by all audio
1324     output devices. Every audio output driver might have its own,
1325 schoenebeck 575 additional driver specific parameters (see Section 6.2.3) which are
1326 senoner 542 also returned by this command.
1327    
1328 schoenebeck 708 Example:
1329 senoner 542
1330 schoenebeck 708 C: "GET AUDIO_OUTPUT_DEVICE INFO 0"
1331 senoner 542
1332 schoenebeck 708 S: "DRIVER: ALSA"
1333 senoner 542
1334 schoenebeck 940 "CHANNELS: 2"
1335 senoner 542
1336 schoenebeck 940 "SAMPLERATE: 44100"
1337 senoner 542
1338 schoenebeck 940 "ACTIVE: true"
1339 schoenebeck 575
1340 schoenebeck 708
1341    
1342    
1343 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 24]
1344 schoenebeck 940
1345 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1346 schoenebeck 708
1347    
1348 senoner 542 "FRAGMENTS: 2"
1349 schoenebeck 708
1350 senoner 542 "FRAGMENTSIZE: 128"
1351 schoenebeck 708
1352 senoner 542 "CARD: '0,0'"
1353 schoenebeck 708
1354 senoner 542 "."
1355    
1356 schoenebeck 940 6.2.10. Changing settings of audio output devices
1357 schoenebeck 708
1358 senoner 542 Use the following command to alter a specific setting of a created
1359     audio output device:
1360    
1361     SET AUDIO_OUTPUT_DEVICE_PARAMETER <device-id> <key>=<value>
1362    
1363     Where <device-id> should be replaced by the numerical ID of the audio
1364 schoenebeck 708 output device as given by the "CREATE AUDIO_OUTPUT_DEVICE"
1365     (Section 6.2.5) or "LIST AUDIO_OUTPUT_DEVICES" (Section 6.2.8)
1366     command, <key> by the name of the parameter to change and <value> by
1367     the new value for this parameter.
1368 senoner 542
1369     Possible Answers:
1370    
1371     "OK" -
1372 schoenebeck 708
1373 senoner 542 in case setting was successfully changed
1374 schoenebeck 708
1375 senoner 542 "WRN:<warning-code>:<warning-message>" -
1376 schoenebeck 708
1377 senoner 542 in case setting was changed successfully, but there are
1378     noteworthy issue(s) related, providing an appropriate warning
1379     code and warning message
1380 schoenebeck 708
1381 senoner 542 "ERR:<error-code>:<error-message>" -
1382 schoenebeck 708
1383 senoner 542 in case it failed, providing an appropriate error code and
1384     error message
1385    
1386     Example:
1387    
1388 schoenebeck 940 C: "SET AUDIO_OUTPUT_DEVICE_PARAMETER 0 FRAGMENTSIZE=128"
1389 schoenebeck 708
1390 schoenebeck 940 S: "OK"
1391 schoenebeck 708
1392    
1393    
1394    
1395    
1396    
1397 schoenebeck 974
1398    
1399 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 25]
1400 schoenebeck 940
1401 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1402 schoenebeck 708
1403 senoner 542
1404 schoenebeck 974 6.2.11. Getting information about an audio channel
1405    
1406     Use the following command to get information about an audio channel:
1407    
1408 senoner 542 GET AUDIO_OUTPUT_CHANNEL INFO <device-id> <audio-chan>
1409    
1410 schoenebeck 575 Where <device-id> is the numerical ID of the audio output device as
1411     given by the "CREATE AUDIO_OUTPUT_DEVICE" (Section 6.2.5) or "LIST
1412     AUDIO_OUTPUT_DEVICES" (Section 6.2.8) command and <audio-chan> the
1413     audio channel number.
1414    
1415     Possible Answers:
1416    
1417 senoner 542 LinuxSampler will answer by sending a <CRLF> separated list. Each
1418     answer line begins with the information category name followed by
1419     a colon and then a space character <SP> and finally the info
1420     character string to that info category. At the moment the
1421     following information categories are defined:
1422    
1423 schoenebeck 708
1424    
1425 senoner 542 NAME -
1426 schoenebeck 708
1427 senoner 542 arbitrary character string naming the channel, which doesn't
1428     have to be unique (always returned by all audio channels)
1429 schoenebeck 708
1430 senoner 542 IS_MIX_CHANNEL -
1431 schoenebeck 708
1432 senoner 542 either true or false, a mix-channel is not a real,
1433     independent audio channel, but a virtual channel which is
1434     mixed to another real channel, this mechanism is needed for
1435     sampler engines which need more audio channels than the used
1436     audio system might be able to offer (always returned by all
1437     audio channels)
1438 schoenebeck 708
1439 senoner 542 MIX_CHANNEL_DESTINATION -
1440 schoenebeck 708
1441 senoner 542 numerical ID (positive integer including 0) which reflects
1442     the real audio channel (of the same audio output device)
1443     this mix channel refers to, means where the audio signal
1444     actually will be routed / added to (only returned in case
1445     the audio channel is mix channel)
1446    
1447     The mentioned fields above don't have to be in particular order. The
1448     fields above are only those fields which are generally returned for
1449     the described cases by all audio channels regardless of the audio
1450     driver. Every audio channel might have its own, additional driver
1451     and channel specific parameters.
1452    
1453    
1454 schoenebeck 940
1455 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 26]
1456 schoenebeck 974
1457 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1458 schoenebeck 940
1459    
1460 schoenebeck 974 Examples:
1461 schoenebeck 940
1462 senoner 542 C: "GET AUDIO_OUTPUT_CHANNEL INFO 0 0"
1463 schoenebeck 708
1464 senoner 542 S: "NAME: studio monitor left"
1465 schoenebeck 708
1466 senoner 542 "IS_MIX_CHANNEL: false"
1467 schoenebeck 708
1468 senoner 542 "."
1469    
1470     C: "GET AUDIO_OUTPUT_CHANNEL INFO 0 1"
1471 schoenebeck 708
1472 senoner 542 S: "NAME: studio monitor right"
1473 schoenebeck 708
1474 senoner 542 "IS_MIX_CHANNEL: false"
1475 schoenebeck 708
1476 senoner 542 "."
1477    
1478 schoenebeck 708 C: "GET AUDIO_OUTPUT_CHANNEL INFO 0 2"
1479 senoner 542
1480 schoenebeck 708 S: "NAME: studio monitor left"
1481 senoner 542
1482 schoenebeck 708 "IS_MIX_CHANNEL: true"
1483 senoner 542
1484 schoenebeck 708 "MIX_CHANNEL_DESTINATION: 1"
1485 senoner 542
1486 schoenebeck 575 "."
1487    
1488 senoner 542 C: "GET AUDIO_OUTPUT_CHANNEL INFO 1 0"
1489 schoenebeck 708
1490 senoner 542 S: "NAME: 'ardour (left)'"
1491 schoenebeck 708
1492 senoner 542 "IS_MIX_CHANNEL: false"
1493 schoenebeck 708
1494 senoner 542 "JACK_BINDINGS: 'ardour:0'"
1495 schoenebeck 708
1496 senoner 542 "."
1497    
1498 schoenebeck 940 6.2.12. Getting information about specific audio channel parameter
1499 schoenebeck 708
1500 senoner 542 Use the following command to get detailed information about specific
1501     audio channel parameter:
1502    
1503     GET AUDIO_OUTPUT_CHANNEL_PARAMETER INFO <dev-id> <chan> <param>
1504    
1505     Where <dev-id> is the numerical ID of the audio output device as
1506 schoenebeck 575 returned by the "CREATE AUDIO_OUTPUT_DEVICE" (Section 6.2.5) or "LIST
1507     AUDIO_OUTPUT_DEVICES" (Section 6.2.8) command, <chan> the audio
1508 schoenebeck 940
1509    
1510    
1511 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 27]
1512 schoenebeck 940
1513 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1514 schoenebeck 940
1515    
1516 schoenebeck 974 channel number and <param> a specific channel parameter name for
1517     which information should be obtained (as returned by the "GET
1518 schoenebeck 575 AUDIO_OUTPUT_CHANNEL INFO" (Section 6.2.11) command).
1519 senoner 542
1520     Possible Answers:
1521    
1522     LinuxSampler will answer by sending a <CRLF> separated list. Each
1523     answer line begins with the information category name followed by
1524     a colon and then a space character <SP> and finally the info
1525     character string to that info category. There are information
1526     which is always returned, independently of the given channel
1527     parameter and there is optional information which is only shown
1528     dependently to the given audio channel. At the moment the
1529     following information categories are defined:
1530    
1531 schoenebeck 708
1532    
1533 senoner 542 TYPE -
1534 schoenebeck 708
1535 senoner 542 either "BOOL" for boolean value(s) or "INT" for integer
1536     value(s) or "FLOAT" for dotted number(s) or "STRING" for
1537     character string(s) (always returned)
1538 schoenebeck 708
1539 senoner 542 DESCRIPTION -
1540 schoenebeck 708
1541 senoner 542 arbitrary text describing the purpose of the parameter
1542     (always returned)
1543 schoenebeck 708
1544 senoner 542 FIX -
1545 schoenebeck 708
1546 senoner 542 either true or false, if true then this parameter is read
1547     only, thus cannot be altered (always returned)
1548 schoenebeck 575
1549 schoenebeck 708 MULTIPLICITY -
1550 schoenebeck 575
1551 schoenebeck 708 either true or false, defines if this parameter allows only
1552     one value or a list of values, where true means multiple
1553     values and false only a single value allowed (always
1554     returned)
1555 schoenebeck 575
1556 schoenebeck 940 RANGE_MIN -
1557 schoenebeck 575
1558 schoenebeck 940 defines lower limit of the allowed value range for this
1559     parameter, can be an integer value as well as a dotted
1560     number, usually used in conjunction with 'RANGE_MAX', but
1561     may also appear without (optionally returned, dependent to
1562     driver and channel parameter)
1563 schoenebeck 575
1564    
1565 schoenebeck 708
1566    
1567 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 28]
1568 schoenebeck 940
1569 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1570 schoenebeck 708
1571    
1572 senoner 542 RANGE_MAX -
1573 schoenebeck 708
1574 senoner 542 defines upper limit of the allowed value range for this
1575     parameter, can be an integer value as well as a dotted
1576     number, usually used in conjunction with 'RANGE_MIN', but
1577     may also appear without (optionally returned, dependent to
1578     driver and channel parameter)
1579 schoenebeck 708
1580 senoner 542 POSSIBILITIES -
1581 schoenebeck 708
1582 senoner 542 comma separated list of possible values for this parameter,
1583     character strings are encapsulated into apostrophes
1584     (optionally returned, dependent to driver and channel
1585     parameter)
1586 schoenebeck 708
1587 senoner 542 The mentioned fields above don't have to be in particular order.
1588    
1589     Example:
1590    
1591     C: "GET AUDIO_OUTPUT_CHANNEL_PARAMETER INFO 1 0 JACK_BINDINGS"
1592 schoenebeck 708
1593 senoner 542 S: "DESCRIPTION: bindings to other JACK clients"
1594 schoenebeck 708
1595 senoner 542 "TYPE: STRING"
1596 schoenebeck 708
1597 senoner 542 "FIX: false"
1598 schoenebeck 708
1599 senoner 542 "MULTIPLICITY: true"
1600 schoenebeck 708
1601 senoner 542 "POSSIBILITIES: 'PCM:0','PCM:1','ardour:0','ardour:1'"
1602 schoenebeck 708
1603 senoner 542 "."
1604    
1605 schoenebeck 940 6.2.13. Changing settings of audio output channels
1606 schoenebeck 708
1607 senoner 542 Use the following command to alter a specific setting of an audio
1608     output channel:
1609    
1610     SET AUDIO_OUTPUT_CHANNEL_PARAMETER <dev-id> <chn> <key>=<value>
1611    
1612     Where <dev-id> should be replaced by the numerical ID of the audio
1613 schoenebeck 575 output device as returned by the "CREATE AUDIO_OUTPUT_DEVICE"
1614     (Section 6.2.5) or "LIST AUDIO_OUTPUT_DEVICES" (Section 6.2.8)
1615     command, <chn> by the audio channel number, <key> by the name of the
1616 senoner 542 parameter to change and <value> by the new value for this parameter.
1617    
1618     Possible Answers:
1619    
1620 schoenebeck 940
1621    
1622    
1623 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 29]
1624 schoenebeck 940
1625 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1626 schoenebeck 940
1627    
1628 schoenebeck 708 "OK" -
1629 schoenebeck 575
1630 schoenebeck 708 in case setting was successfully changed
1631 schoenebeck 575
1632 schoenebeck 708 "WRN:<warning-code>:<warning-message>" -
1633 schoenebeck 575
1634 senoner 542 in case setting was changed successfully, but there are
1635     noteworthy issue(s) related, providing an appropriate warning
1636     code and warning message
1637 schoenebeck 708
1638 senoner 542 "ERR:<error-code>:<error-message>" -
1639 schoenebeck 708
1640 senoner 542 in case it failed, providing an appropriate error code and
1641     error message
1642    
1643     Example:
1644    
1645     C: "SET AUDIO_OUTPUT_CHANNEL PARAMETER 0 0 JACK_BINDINGS='PCM:0'"
1646 schoenebeck 708
1647 senoner 542 S: "OK"
1648    
1649     C: "SET AUDIO_OUTPUT_CHANNEL PARAMETER 0 0 NAME='monitor left'"
1650 schoenebeck 708
1651 senoner 542 S: "OK"
1652    
1653 schoenebeck 940 6.3. Configuring MIDI input drivers
1654 schoenebeck 708
1655 senoner 542 Instances of drivers in LinuxSampler are called devices. You can use
1656 schoenebeck 708 multiple MIDI devices simultaneously, e.g. to use MIDI over ethernet
1657 senoner 542 as MIDI input on one sampler channel and ALSA as MIDI input on
1658     another sampler channel. For particular MIDI input systems it's also
1659     possible to create several devices of the same MIDI input type. This
1660     chapter describes all commands to configure LinuxSampler's MIDI input
1661     devices and their parameters.
1662    
1663     Instead of defining commands and parameters for each driver
1664     individually, all possible parameters, their meanings and possible
1665     values have to be obtained at runtime. This makes the protocol a bit
1666     abstract, but has the advantage, that front-ends can be written
1667     independently of what drivers are currently implemented and what
1668 schoenebeck 708 parameters these drivers are actually offering. This means front-
1669     ends can even handle drivers which are implemented somewhere in
1670 senoner 542 future without modifying the front-end at all.
1671    
1672     Commands for configuring MIDI input devices are pretty much the same
1673     as the commands for configuring audio output drivers, already
1674     described in the last chapter.
1675    
1676 schoenebeck 940
1677    
1678    
1679 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 30]
1680 schoenebeck 940
1681 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1682 schoenebeck 940
1683    
1684 senoner 542 Note: examples in this chapter showing particular parameters of
1685     drivers are not meant as specification of the drivers' parameters.
1686     Driver implementations in LinuxSampler might have complete different
1687     parameter names and meanings than shown in these examples or might
1688     change in future, so these examples are only meant for showing how to
1689     retrieve what parameters drivers are offering, how to retrieve their
1690     possible values, etc.
1691    
1692 schoenebeck 940 6.3.1. Getting amount of available MIDI input drivers
1693 schoenebeck 575
1694 senoner 542 Use the following command to get the number of MIDI input drivers
1695     currently available for the LinuxSampler instance:
1696    
1697     GET AVAILABLE_MIDI_INPUT_DRIVERS
1698    
1699     Possible Answers:
1700    
1701     LinuxSampler will answer by sending the number of available MIDI
1702     input drivers.
1703    
1704     Example:
1705    
1706     C: "GET AVAILABLE_MIDI_INPUT_DRIVERS"
1707 schoenebeck 708
1708 senoner 542 S: "2"
1709    
1710 schoenebeck 940 6.3.2. Getting all available MIDI input drivers
1711 schoenebeck 708
1712 senoner 542 Use the following command to list all MIDI input drivers currently
1713     available for the LinuxSampler instance:
1714    
1715     LIST AVAILABLE_MIDI_INPUT_DRIVERS
1716    
1717     Possible Answers:
1718    
1719     LinuxSampler will answer by sending comma separated character
1720     strings, each symbolizing a MIDI input driver.
1721    
1722     Example:
1723    
1724     C: "LIST AVAILABLE_MIDI_INPUT_DRIVERS"
1725 schoenebeck 708
1726 senoner 542 S: "ALSA,JACK"
1727    
1728 schoenebeck 708
1729 senoner 542
1730 schoenebeck 940
1731    
1732 schoenebeck 974
1733    
1734    
1735 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 31]
1736 schoenebeck 940
1737 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1738 schoenebeck 940
1739    
1740 schoenebeck 974 6.3.3. Getting information about a specific MIDI input driver
1741    
1742     Use the following command to get detailed information about a
1743     specific MIDI input driver:
1744    
1745 senoner 542 GET MIDI_INPUT_DRIVER INFO <midi-input-driver>
1746    
1747 schoenebeck 575 Where <midi-input-driver> is the name of the MIDI input driver as
1748     returned by the "LIST AVAILABLE_MIDI_INPUT_DRIVERS" (Section 6.3.2)
1749     command.
1750 senoner 542
1751     Possible Answers:
1752    
1753     LinuxSampler will answer by sending a <CRLF> separated list. Each
1754     answer line begins with the information category name followed by
1755     a colon and then a space character <SP> and finally the info
1756     character string to that info category. At the moment the
1757     following information categories are defined:
1758    
1759 schoenebeck 708
1760    
1761 senoner 542 DESCRIPTION -
1762 schoenebeck 708
1763 senoner 542 arbitrary description text about the MIDI input driver
1764 schoenebeck 708
1765 senoner 542 VERSION -
1766 schoenebeck 708
1767 senoner 542 arbitrary character string regarding the driver's version
1768 schoenebeck 708
1769 senoner 542 PARAMETERS -
1770 schoenebeck 708
1771 senoner 542 comma separated list of all parameters available for the
1772     given MIDI input driver
1773 schoenebeck 708
1774 senoner 542 The mentioned fields above don't have to be in particular order.
1775    
1776     Example:
1777    
1778     C: "GET MIDI_INPUT_DRIVER INFO ALSA"
1779 schoenebeck 708
1780 senoner 542 S: "DESCRIPTION: Advanced Linux Sound Architecture"
1781 schoenebeck 708
1782 senoner 542 "VERSION: 1.0"
1783 schoenebeck 708
1784 senoner 542 "PARAMETERS: DRIVER,ACTIVE"
1785 schoenebeck 708
1786 senoner 542 "."
1787    
1788 schoenebeck 708
1789 senoner 542
1790 schoenebeck 940
1791 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 32]
1792 schoenebeck 974
1793 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1794 schoenebeck 940
1795    
1796 schoenebeck 974 6.3.4. Getting information about specific MIDI input driver parameter
1797 schoenebeck 940
1798 schoenebeck 974 Use the following command to get detailed information about a
1799     specific parameter of a specific MIDI input driver:
1800 schoenebeck 940
1801 senoner 542 GET MIDI_INPUT_DRIVER_PARAMETER INFO <midit> <param> [<deplist>]
1802    
1803 schoenebeck 561 Where <midit> is the name of the MIDI input driver as returned by the
1804 schoenebeck 575 "LIST AVAILABLE_MIDI_INPUT_DRIVERS" (Section 6.3.2) command, <param>
1805 schoenebeck 561 a specific parameter name for which information should be obtained
1806 schoenebeck 575 (as returned by the "GET MIDI_INPUT_DRIVER INFO" (Section 6.3.3)
1807 schoenebeck 561 command) and <deplist> is an optional list of parameters on which the
1808     sought parameter <param> depends on, <deplist> is a key-value pair
1809     list in form of "key1=val1 key2=val2 ...", where character string
1810     values are encapsulated into apostrophes ('). Arguments given with
1811     <deplist> which are not dependency parameters of <param> will be
1812     ignored, means the front-end application can simply put all
1813     parameters in <deplist> with the values selected by the user.
1814 senoner 542
1815     Possible Answers:
1816    
1817     LinuxSampler will answer by sending a <CRLF> separated list. Each
1818     answer line begins with the information category name followed by a
1819     colon and then a space character <SP> and finally the info character
1820     string to that info category. There is information which is always
1821     returned, independent of the given driver parameter and there is
1822     optional information which is only shown dependent to given driver
1823     parameter. At the moment the following information categories are
1824     defined:
1825    
1826     TYPE -
1827 schoenebeck 708
1828 senoner 542 either "BOOL" for boolean value(s) or "INT" for integer
1829     value(s) or "FLOAT" for dotted number(s) or "STRING" for
1830     character string(s) (always returned, no matter which driver
1831     parameter)
1832 schoenebeck 708
1833 senoner 542 DESCRIPTION -
1834 schoenebeck 708
1835 senoner 542 arbitrary text describing the purpose of the parameter (always
1836     returned, no matter which driver parameter)
1837 schoenebeck 708
1838 senoner 542 MANDATORY -
1839 schoenebeck 708
1840 senoner 542 either true or false, defines if this parameter must be given
1841     when the device is to be created with the 'CREATE
1842 schoenebeck 575 MIDI_INPUT_DEVICE' (Section 6.3.5) command (always returned, no
1843 senoner 542 matter which driver parameter)
1844 schoenebeck 708
1845    
1846 schoenebeck 940
1847 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 33]
1848 schoenebeck 974
1849 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1850 schoenebeck 940
1851    
1852 schoenebeck 974 FIX -
1853 schoenebeck 940
1854 schoenebeck 974 either true or false, if false then this parameter can be
1855     changed at any time, once the device is created by the 'CREATE
1856 schoenebeck 575 MIDI_INPUT_DEVICE' (Section 6.3.5) command (always returned, no
1857 senoner 542 matter which driver parameter)
1858 schoenebeck 708
1859 senoner 542 MULTIPLICITY -
1860 schoenebeck 708
1861 senoner 542 either true or false, defines if this parameter allows only one
1862     value or a list of values, where true means multiple values and
1863     false only a single value allowed (always returned, no matter
1864     which driver parameter)
1865 schoenebeck 708
1866 senoner 542 DEPENDS -
1867 schoenebeck 708
1868 schoenebeck 561 comma separated list of parameters this parameter depends on,
1869 senoner 542 means the values for fields 'DEFAULT', 'RANGE_MIN', 'RANGE_MAX'
1870     and 'POSSIBILITIES' might depend on these listed parameters,
1871     for example assuming that an audio driver (like the ALSA
1872     driver) offers parameters 'card' and 'samplerate' then
1873     parameter 'samplerate' would depend on 'card' because the
1874     possible values for 'samplerate' depends on the sound card
1875     which can be chosen by the 'card' parameter (optionally
1876     returned, dependent to driver parameter)
1877 schoenebeck 708
1878 senoner 542 DEFAULT -
1879 schoenebeck 708
1880 senoner 542 reflects the default value for this parameter which is used
1881     when the device is created and not explicitly given with the
1882 schoenebeck 575 'CREATE MIDI_INPUT_DEVICE' (Section 6.3.5) command, in case of
1883 senoner 542 MULTIPLCITY=true, this is a comma separated list, that's why
1884     character strings are encapsulated into apostrophes (')
1885     (optionally returned, dependent to driver parameter)
1886 schoenebeck 575
1887 schoenebeck 708 RANGE_MIN -
1888    
1889     defines lower limit of the allowed value range for this
1890     parameter, can be an integer value as well as a dotted number,
1891 senoner 542 this parameter is often used in conjunction with RANGE_MAX, but
1892     may also appear without (optionally returned, dependent to
1893     driver parameter)
1894 schoenebeck 708
1895 senoner 542 RANGE_MAX -
1896 schoenebeck 708
1897 senoner 542 defines upper limit of the allowed value range for this
1898     parameter, can be an integer value as well as a dotted number,
1899     this parameter is often used in conjunction with RANGE_MIN, but
1900 schoenebeck 708
1901 schoenebeck 940
1902    
1903 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 34]
1904 schoenebeck 974
1905 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1906 schoenebeck 940
1907    
1908 schoenebeck 974 may also appear without (optionally returned, dependent to
1909     driver parameter)
1910 schoenebeck 940
1911 senoner 542 POSSIBILITIES -
1912 schoenebeck 708
1913 senoner 542 comma separated list of possible values for this parameter,
1914     character strings are encapsulated into apostrophes (optionally
1915     returned, dependent to driver parameter)
1916    
1917     The mentioned fields above don't have to be in particular order.
1918    
1919     Example:
1920    
1921     C: "GET MIDI_INPUT_DRIVER_PARAMETER INFO ALSA ACTIVE"
1922 schoenebeck 708
1923 senoner 542 S: "DESCRIPTION: Whether device is enabled"
1924 schoenebeck 708
1925 senoner 542 "TYPE: BOOL"
1926 schoenebeck 708
1927 senoner 542 "MANDATORY: false"
1928 schoenebeck 708
1929 senoner 542 "FIX: false"
1930 schoenebeck 708
1931 senoner 542 "MULTIPLICITY: false"
1932 schoenebeck 708
1933 senoner 542 "DEFAULT: true"
1934 schoenebeck 708
1935 senoner 542 "."
1936    
1937 schoenebeck 940 6.3.5. Creating a MIDI input device
1938 schoenebeck 708
1939 schoenebeck 940 Use the following command to create a new MIDI input device for the
1940 senoner 542 desired MIDI input system:
1941    
1942     CREATE MIDI_INPUT_DEVICE <midi-input-driver> [<param-list>]
1943    
1944     Where <midi-input-driver> should be replaced by the desired MIDI
1945 schoenebeck 575 input system as returned by the "LIST AVAILABLE_MIDI_INPUT_DRIVERS"
1946     (Section 6.3.2) command and <param-list> by an optional list of
1947     driver specific parameters in form of "key1=val1 key2=val2 ...",
1948     where character string values should be encapsulated into apostrophes
1949     ('). Note that there might be drivers which require parameter(s) to
1950     be given with this command. Use the previously described commands in
1951     this chapter to get that information.
1952 senoner 542
1953     Possible Answers:
1954    
1955 schoenebeck 708
1956 schoenebeck 575
1957 schoenebeck 940
1958    
1959 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 35]
1960 schoenebeck 940
1961 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
1962 schoenebeck 940
1963    
1964 schoenebeck 974 "OK[<device-id>]" -
1965    
1966     in case the device was successfully created, where <device-id>
1967     is the numerical ID of the new device
1968    
1969 schoenebeck 708 "WRN[<device-id>]:<warning-code>:<warning-message>" -
1970 schoenebeck 575
1971 senoner 542 in case the driver was loaded successfully, where <device-id>
1972     is the numerical ID of the new device, but there are noteworthy
1973     issue(s) related, providing an appropriate warning code and
1974     warning message
1975 schoenebeck 708
1976 senoner 542 "ERR:<error-code>:<error-message>" -
1977 schoenebeck 708
1978 senoner 542 in case it failed, providing an appropriate error code and
1979     error message
1980    
1981     Example:
1982    
1983     C: "CREATE MIDI_INPUT_DEVICE ALSA"
1984 schoenebeck 708
1985 senoner 542 S: "OK[0]"
1986    
1987 schoenebeck 940 6.3.6. Destroying a MIDI input device
1988 schoenebeck 708
1989 senoner 542 Use the following command to destroy a created MIDI input device:
1990    
1991     DESTROY MIDI_INPUT_DEVICE <device-id>
1992    
1993 schoenebeck 575 Where <device-id> should be replaced by the device's numerical ID as
1994     returned by the "CREATE MIDI_INPUT_DEVICE" (Section 6.3.5) or "LIST
1995     MIDI_INPUT_DEVICES" (Section 6.3.8) command.
1996 senoner 542
1997     Possible Answers:
1998    
1999     "OK" -
2000 schoenebeck 708
2001 senoner 542 in case the device was successfully destroyed
2002 schoenebeck 708
2003 senoner 542 "WRN:<warning-code>:<warning-message>" -
2004 schoenebeck 708
2005 senoner 542 in case the device was destroyed, but there are noteworthy
2006     issue(s) related, providing an appropriate warning code and
2007     warning message
2008 schoenebeck 708
2009 senoner 542 "ERR:<error-code>:<error-message>" -
2010 schoenebeck 708
2011 senoner 542
2012    
2013 schoenebeck 940
2014    
2015 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 36]
2016 schoenebeck 974
2017 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2018 schoenebeck 940
2019    
2020 schoenebeck 974 in case it failed, providing an appropriate error code and
2021     error message
2022 schoenebeck 940
2023 schoenebeck 974 Example:
2024 schoenebeck 940
2025 senoner 542 C: "DESTROY MIDI_INPUT_DEVICE 0"
2026 schoenebeck 708
2027 senoner 542 S: "OK"
2028    
2029 schoenebeck 940 6.3.7. Getting all created MIDI input device count
2030 schoenebeck 708
2031 senoner 542 Use the following command to count all created MIDI input devices:
2032    
2033     GET MIDI_INPUT_DEVICES
2034    
2035     Possible Answers:
2036    
2037     LinuxSampler will answer by sending the current number of all MIDI
2038     input devices.
2039    
2040     Example:
2041    
2042     C: "GET MIDI_INPUT_DEVICES"
2043 schoenebeck 708
2044 senoner 542 S: "3"
2045    
2046 schoenebeck 940 6.3.8. Getting all created MIDI input device list
2047 schoenebeck 708
2048 senoner 542 Use the following command to list all created MIDI input devices:
2049    
2050     LIST MIDI_INPUT_DEVICES
2051    
2052     Possible Answers:
2053    
2054     LinuxSampler will answer by sending a comma separated list with
2055     the numerical Ids of all created MIDI input devices.
2056    
2057     Examples:
2058    
2059     C: "LIST MIDI_INPUT_DEVICES"
2060 schoenebeck 708
2061 senoner 542 S: "0,1,2"
2062    
2063     C: "LIST MIDI_INPUT_DEVICES"
2064 schoenebeck 708
2065 senoner 542 S: "1,3"
2066    
2067 schoenebeck 708
2068 senoner 542
2069 schoenebeck 940
2070    
2071 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 37]
2072 schoenebeck 974
2073 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2074 schoenebeck 940
2075    
2076 schoenebeck 974 6.3.9. Getting current settings of a MIDI input device
2077 schoenebeck 940
2078 schoenebeck 974 Use the following command to get current settings of a specific,
2079     created MIDI input device:
2080 schoenebeck 940
2081 senoner 542 GET MIDI_INPUT_DEVICE INFO <device-id>
2082    
2083 schoenebeck 575 Where <device-id> is the numerical ID of the MIDI input device as
2084     returned by the "CREATE MIDI_INPUT_DEVICE" (Section 6.3.5) or "LIST
2085     MIDI_INPUT_DEVICES" (Section 6.3.8) command.
2086 senoner 542
2087     Possible Answers:
2088    
2089     LinuxSampler will answer by sending a <CRLF> separated list. Each
2090     answer line begins with the information category name followed by
2091     a colon and then a space character <SP> and finally the info
2092     character string to that info category. As some parameters might
2093     allow multiple values, character strings are encapsulated into
2094     apostrophes ('). At the moment the following information
2095     categories are defined (independent of driver):
2096    
2097 schoenebeck 575
2098    
2099 schoenebeck 708 DRIVER -
2100 schoenebeck 575
2101 schoenebeck 708 identifier of the used MIDI input driver, as e.g. returned
2102 schoenebeck 575 by the "LIST AVAILABLE_MIDI_INPUT_DRIVERS" (Section 6.3.2)
2103 senoner 542 command
2104 schoenebeck 708
2105 senoner 542 ACTIVE -
2106 schoenebeck 708
2107 senoner 542 either true or false, if false then the MIDI device is
2108     inactive and doesn't listen to any incoming MIDI events and
2109     thus doesn't forward them to connected sampler channels
2110    
2111     The mentioned fields above don't have to be in particular order. The
2112     fields above are only those fields which are returned by all MIDI
2113     input devices. Every MIDI input driver might have its own,
2114     additional driver specific parameters (see "GET MIDI_INPUT_DRIVER
2115 schoenebeck 575 INFO" (Section 6.3.3) command) which are also returned by this
2116 senoner 542 command.
2117    
2118     Example:
2119    
2120     C: "GET MIDI_INPUT_DEVICE INFO 0"
2121 schoenebeck 708
2122 senoner 542 S: "DRIVER: ALSA"
2123 schoenebeck 708
2124    
2125 senoner 542
2126 schoenebeck 708
2127 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 38]
2128 schoenebeck 974
2129 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2130 senoner 542
2131 schoenebeck 940
2132 schoenebeck 974 "ACTIVE: true"
2133 schoenebeck 940
2134 schoenebeck 974 "."
2135 schoenebeck 940
2136     6.3.10. Changing settings of MIDI input devices
2137    
2138 senoner 542 Use the following command to alter a specific setting of a created
2139     MIDI input device:
2140    
2141     SET MIDI_INPUT_DEVICE_PARAMETER <device-id> <key>=<value>
2142    
2143     Where <device-id> should be replaced by the numerical ID of the MIDI
2144 schoenebeck 708 input device as returned by the "CREATE MIDI_INPUT_DEVICE"
2145     (Section 6.3.5) or "LIST MIDI_INPUT_DEVICES" (Section 6.3.8) command,
2146     <key> by the name of the parameter to change and <value> by the new
2147     value for this parameter.
2148 senoner 542
2149     Possible Answers:
2150    
2151     "OK" -
2152 schoenebeck 708
2153 senoner 542 in case setting was successfully changed
2154 schoenebeck 708
2155 senoner 542 "WRN:<warning-code>:<warning-message>" -
2156 schoenebeck 708
2157 senoner 542 in case setting was changed successfully, but there are
2158     noteworthy issue(s) related, providing an appropriate warning
2159     code and warning message
2160 schoenebeck 708
2161 senoner 542 "ERR:<error-code>:<error-message>" -
2162 schoenebeck 708
2163 senoner 542 in case it failed, providing an appropriate error code and
2164     error message
2165    
2166     Example:
2167    
2168     C: "SET MIDI_INPUT_DEVICE_PARAMETER 0 ACTIVE=false"
2169 schoenebeck 708
2170 senoner 542 S: "OK"
2171    
2172 schoenebeck 940 6.3.11. Getting information about a MIDI port
2173 schoenebeck 708
2174 senoner 542 Use the following command to get information about a MIDI port:
2175    
2176     GET MIDI_INPUT_PORT INFO <device-id> <midi-port>
2177    
2178 schoenebeck 575 Where <device-id> is the numerical ID of the MIDI input device as
2179     returned by the "CREATE MIDI_INPUT_DEVICE" (Section 6.3.5) or "LIST
2180 senoner 542
2181    
2182 schoenebeck 940
2183 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 39]
2184 schoenebeck 940
2185 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2186 schoenebeck 940
2187    
2188 schoenebeck 974 MIDI_INPUT_DEVICES" (Section 6.3.8) command and <midi-port> the MIDI
2189     input port number.
2190    
2191     Possible Answers:
2192    
2193 senoner 542 LinuxSampler will answer by sending a <CRLF> separated list. Each
2194     answer line begins with the information category name followed by
2195     a colon and then a space character <SP> and finally the info
2196     character string to that info category. At the moment the
2197     following information categories are defined:
2198 schoenebeck 708
2199 senoner 542 NAME -
2200 schoenebeck 708
2201 senoner 542 arbitrary character string naming the port
2202    
2203     The field above is only the one which is returned by all MIDI ports
2204     regardless of the MIDI driver and port. Every MIDI port might have
2205     its own, additional driver and port specific parameters.
2206    
2207     Example:
2208    
2209     C: "GET MIDI_INPUT_PORT INFO 0 0"
2210 schoenebeck 708
2211 senoner 542 S: "NAME: 'Masterkeyboard'"
2212 schoenebeck 708
2213 senoner 542 "ALSA_SEQ_BINDINGS: '64:0'"
2214 schoenebeck 708
2215 senoner 542 "."
2216    
2217 schoenebeck 940 6.3.12. Getting information about specific MIDI port parameter
2218 schoenebeck 708
2219 senoner 542 Use the following command to get detailed information about specific
2220     MIDI port parameter:
2221    
2222     GET MIDI_INPUT_PORT_PARAMETER INFO <dev-id> <port> <param>
2223    
2224     Where <dev-id> is the numerical ID of the MIDI input device as
2225 schoenebeck 575 returned by the "CREATE MIDI_INPUT_DEVICE" (Section 6.3.5) or "LIST
2226     MIDI_INPUT_DEVICES" (Section 6.3.8) command, <port> the MIDI port
2227     number and <param> a specific port parameter name for which
2228     information should be obtained (as returned by the "GET
2229     MIDI_INPUT_PORT INFO" (Section 6.3.11) command).
2230    
2231 senoner 542 Possible Answers:
2232    
2233     LinuxSampler will answer by sending a <CRLF> separated list. Each
2234     answer line begins with the information category name followed by
2235     a colon and then a space character <SP> and finally the info
2236 schoenebeck 974
2237    
2238    
2239 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 40]
2240 schoenebeck 974
2241 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2242 schoenebeck 974
2243    
2244 senoner 542 character string to that info category. There is information
2245     which is always returned, independently of the given channel
2246     parameter and there is optional information which are only shown
2247     dependently to the given MIDI port. At the moment the following
2248     information categories are defined:
2249 schoenebeck 708
2250 senoner 542 TYPE -
2251 schoenebeck 708
2252 senoner 542 either "BOOL" for boolean value(s) or "INT" for integer
2253     value(s) or "FLOAT" for dotted number(s) or "STRING" for
2254     character string(s) (always returned)
2255 schoenebeck 708
2256 senoner 542 DESCRIPTION -
2257 schoenebeck 708
2258 senoner 542 arbitrary text describing the purpose of the parameter (always
2259     returned)
2260 schoenebeck 708
2261 senoner 542 FIX -
2262 schoenebeck 708
2263 senoner 542 either true or false, if true then this parameter is read only,
2264     thus cannot be altered (always returned)
2265 schoenebeck 708
2266 senoner 542 MULTIPLICITY -
2267 schoenebeck 708
2268 senoner 542 either true or false, defines if this parameter allows only one
2269     value or a list of values, where true means multiple values and
2270     false only a single value allowed (always returned)
2271 schoenebeck 708
2272 senoner 542 RANGE_MIN -
2273 schoenebeck 708
2274 senoner 542 defines lower limit of the allowed value range for this
2275     parameter, can be an integer value as well as a dotted number,
2276     this parameter is usually used in conjunction with 'RANGE_MAX'
2277     but may also appear without (optionally returned, dependent to
2278     driver and port parameter)
2279 schoenebeck 708
2280 senoner 542 RANGE_MAX -
2281 schoenebeck 708
2282 senoner 542 defines upper limit of the allowed value range for this
2283     parameter, can be an integer value as well as a dotted number,
2284     this parameter is usually used in conjunction with 'RANGE_MIN'
2285     but may also appear without (optionally returned, dependent to
2286     driver and port parameter)
2287 schoenebeck 708
2288 senoner 542 POSSIBILITIES -
2289 schoenebeck 708
2290 senoner 542 comma separated list of possible values for this parameter,
2291     character strings are encapsulated into apostrophes (optionally
2292    
2293    
2294    
2295 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 41]
2296 schoenebeck 974
2297 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2298 schoenebeck 940
2299    
2300 schoenebeck 974 returned, dependent to device and port parameter)
2301 schoenebeck 940
2302 schoenebeck 974 The mentioned fields above don't have to be in particular order.
2303 schoenebeck 940
2304 schoenebeck 974 Example:
2305 schoenebeck 940
2306 schoenebeck 708 C: "GET MIDI_INPUT_PORT_PARAMETER INFO 0 0 ALSA_SEQ_BINDINGS"
2307 schoenebeck 575
2308 schoenebeck 708 S: "DESCRIPTION: bindings to other ALSA sequencer clients"
2309 schoenebeck 575
2310 schoenebeck 708 "TYPE: STRING"
2311 schoenebeck 575
2312 schoenebeck 708 "FIX: false"
2313 schoenebeck 575
2314 schoenebeck 708 "MULTIPLICITY: true"
2315 schoenebeck 575
2316 senoner 542 "POSSIBILITIES: '64:0','68:0','68:1'"
2317 schoenebeck 708
2318 senoner 542 "."
2319    
2320 schoenebeck 940 6.3.13. Changing settings of MIDI input ports
2321 schoenebeck 708
2322 senoner 542 Use the following command to alter a specific setting of a MIDI input
2323     port:
2324    
2325     SET MIDI_INPUT_PORT_PARAMETER <device-id> <port> <key>=<value>
2326    
2327     Where <device-id> should be replaced by the numerical ID of the MIDI
2328 schoenebeck 575 device as returned by the "CREATE MIDI_INPUT_DEVICE" (Section 6.3.5)
2329     or "LIST MIDI_INPUT_DEVICES" (Section 6.3.8) command, <port> by the
2330     MIDI port number, <key> by the name of the parameter to change and
2331     <value> by the new value for this parameter.
2332 senoner 542
2333     Possible Answers:
2334    
2335     "OK" -
2336 schoenebeck 708
2337 senoner 542 in case setting was successfully changed
2338 schoenebeck 708
2339 senoner 542 "WRN:<warning-code>:<warning-message>" -
2340 schoenebeck 708
2341 senoner 542 in case setting was changed successfully, but there are
2342     noteworthy issue(s) related, providing an appropriate warning
2343     code and warning message
2344 schoenebeck 708
2345 senoner 542 "ERR:<error-code>:<error-message>" -
2346 schoenebeck 708
2347 senoner 542
2348    
2349    
2350    
2351 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 42]
2352 schoenebeck 974
2353 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2354 schoenebeck 708
2355 senoner 542
2356 schoenebeck 974 in case it failed, providing an appropriate error code and
2357     error message
2358 schoenebeck 940
2359 schoenebeck 974 Example:
2360 schoenebeck 940
2361    
2362    
2363     6.4. Configuring sampler channels
2364    
2365 senoner 542 The following commands describe how to add and remove sampler
2366 schoenebeck 575 channels, associate a sampler channel with a sampler engine, load
2367     instruments and connect sampler channels to MIDI and audio devices.
2368 senoner 542
2369 schoenebeck 940 6.4.1. Loading an instrument
2370 senoner 542
2371     An instrument file can be loaded and assigned to a sampler channel by
2372     one of the following commands:
2373    
2374 schoenebeck 708 LOAD INSTRUMENT [NON_MODAL] '<filename>' <instr-index> <sampler-
2375     channel>
2376 schoenebeck 575
2377 senoner 542 Where <filename> is the name of the instrument file on the
2378     LinuxSampler instance's host system, <instr-index> the index of the
2379     instrument in the instrument file and <sampler-channel> is the number
2380     of the sampler channel the instrument should be assigned to. Each
2381     sampler channel can only have one instrument.
2382    
2383 schoenebeck 1251 Notice: since LSCP 1.2 the <filename> argument supports escape
2384     characters for special characters (see chapter "Character Set and
2385     Escape Sequences (Section 7.1)" for details) and accordingly
2386     backslash characters in the filename MUST now be escaped as well!
2387    
2388 senoner 542 The difference between regular and NON_MODAL versions of the command
2389     is that the regular command returns OK only after the instrument has
2390     been fully loaded and the channel is ready to be used while NON_MODAL
2391     version returns immediately and a background process is launched to
2392 schoenebeck 708 load the instrument on the channel. The GET CHANNEL INFO
2393     (Section 6.4.10) command can be used to obtain loading progress from
2394 senoner 542 INSTRUMENT_STATUS field. LOAD command will perform sanity checks
2395     such as making sure that the file could be read and it is of a proper
2396     format and SHOULD return ERR and SHOULD not launch the background
2397     process should any errors be detected at that point.
2398    
2399     Possible Answers:
2400    
2401     "OK" -
2402 schoenebeck 708
2403    
2404    
2405    
2406 schoenebeck 940
2407 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 43]
2408 schoenebeck 974
2409 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2410 schoenebeck 940
2411    
2412 schoenebeck 1251 in case the instrument was successfully loaded
2413    
2414     "WRN:<warning-code>:<warning-message>" -
2415    
2416     in case the instrument was loaded successfully, but there are
2417     noteworthy issue(s) related (e.g. Engine doesn't support one
2418 schoenebeck 974 or more patch parameters provided by the loaded instrument
2419     file), providing an appropriate warning code and warning
2420     message
2421 schoenebeck 940
2422 senoner 542 "ERR:<error-code>:<error-message>" -
2423 schoenebeck 708
2424 senoner 542 in case it failed, providing an appropriate error code and
2425     error message
2426    
2427     Example:
2428    
2429    
2430    
2431 schoenebeck 940 6.4.2. Loading a sampler engine
2432 schoenebeck 708
2433 schoenebeck 575 A sampler engine type can be associated to a specific sampler channel
2434     by the following command:
2435 senoner 542
2436     LOAD ENGINE <engine-name> <sampler-channel>
2437    
2438     Where <engine-name> is an engine name as obtained by the "LIST
2439 schoenebeck 575 AVAILABLE_ENGINES" (Section 6.4.8) command and <sampler-channel> the
2440     sampler channel as returned by the "ADD CHANNEL" (Section 6.4.5) or
2441     "LIST CHANNELS" (Section 6.4.4) command where the engine type should
2442     be assigned to. This command should be issued after adding a new
2443     sampler channel and before any other control commands on the new
2444     sampler channel. It can also be used to change the engine type of a
2445     sampler channel. This command has (currently) no way to define or
2446     force if a new engine instance should be created and assigned to the
2447     given sampler channel or if an already existing instance of that
2448     engine type, shared with other sampler channels, should be used.
2449    
2450 senoner 542 Possible Answers:
2451    
2452     "OK" -
2453 schoenebeck 708
2454 senoner 542 in case the engine was successfully deployed
2455 schoenebeck 708
2456 senoner 542 "WRN:<warning-code>:<warning-message>" -
2457 schoenebeck 708
2458 senoner 542 in case the engine was deployed successfully, but there are
2459     noteworthy issue(s) related, providing an appropriate warning
2460 schoenebeck 1251
2461    
2462    
2463     Schoenebeck Expires December 24, 2007 [Page 44]
2464    
2465     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2466    
2467    
2468 senoner 542 code and warning message
2469 schoenebeck 708
2470 senoner 542 "ERR:<error-code>:<error-message>" -
2471 schoenebeck 708
2472 senoner 542 in case it failed, providing an appropriate error code and
2473     error message
2474    
2475 schoenebeck 974 Example:
2476 senoner 542
2477 schoenebeck 940
2478    
2479     6.4.3. Getting all created sampler channel count
2480    
2481 senoner 542 The number of sampler channels can change on runtime. To get the
2482     current amount of sampler channels, the front-end can send the
2483     following command:
2484    
2485     GET CHANNELS
2486    
2487     Possible Answers:
2488    
2489     LinuxSampler will answer by returning the current number of
2490     sampler channels.
2491    
2492     Example:
2493    
2494     C: "GET CHANNELS"
2495 schoenebeck 708
2496 senoner 542 S: "12"
2497    
2498 schoenebeck 940 6.4.4. Getting all created sampler channel list
2499 schoenebeck 708
2500 senoner 542 The number of sampler channels can change on runtime. To get the
2501     current list of sampler channels, the front-end can send the
2502 schoenebeck 708 following command:
2503    
2504 senoner 542 LIST CHANNELS
2505    
2506     Possible Answers:
2507    
2508     LinuxSampler will answer by returning a comma separated list with
2509     all sampler channels numerical IDs.
2510    
2511     Example:
2512    
2513     C: "LIST CHANNELS"
2514 schoenebeck 708
2515 senoner 542
2516 schoenebeck 708
2517 senoner 542
2518    
2519 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 45]
2520    
2521     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2522 schoenebeck 940
2523    
2524 schoenebeck 1251 S: "0,1,2,3,4,5,6,9,10,11,15,20"
2525 schoenebeck 940
2526 schoenebeck 1251 6.4.5. Adding a new sampler channel
2527 schoenebeck 940
2528 schoenebeck 1251 A new sampler channel can be added to the end of the sampler channel
2529     list by sending the following command:
2530 schoenebeck 940
2531 schoenebeck 974 ADD CHANNEL
2532    
2533     This will increment the sampler channel count by one and the new
2534 senoner 542 sampler channel will be appended to the end of the sampler channel
2535     list. The front-end should send the respective, related commands
2536 schoenebeck 708 right after to e.g. load an engine, load an instrument and setting
2537 senoner 542 input, output method and eventually other commands to initialize the
2538     new channel. The front-end should use the sampler channel returned
2539     by the answer of this command to perform the previously recommended
2540 schoenebeck 708 commands, to avoid race conditions e.g. with other front-ends that
2541 senoner 542 might also have sent an "ADD CHANNEL" command.
2542    
2543     Possible Answers:
2544    
2545     "OK[<sampler-channel>]" -
2546 schoenebeck 708
2547     in case a new sampler channel could be added, where <sampler-
2548     channel> reflects the channel number of the new created sampler
2549     channel which should be used to set up the sampler channel by
2550     sending subsequent initialization commands
2551    
2552 senoner 542 "WRN:<warning-code>:<warning-message>" -
2553 schoenebeck 708
2554 senoner 542 in case a new channel was added successfully, but there are
2555     noteworthy issue(s) related, providing an appropriate warning
2556     code and warning message
2557 schoenebeck 708
2558 senoner 542 "ERR:<error-code>:<error-message>" -
2559 schoenebeck 708
2560 senoner 542 in case it failed, providing an appropriate error code and
2561     error message
2562    
2563     Example:
2564    
2565    
2566    
2567 schoenebeck 940 6.4.6. Removing a sampler channel
2568 senoner 542
2569     A sampler channel can be removed by sending the following command:
2570    
2571 schoenebeck 1251
2572    
2573    
2574    
2575     Schoenebeck Expires December 24, 2007 [Page 46]
2576    
2577     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2578    
2579    
2580 senoner 542 REMOVE CHANNEL <sampler-channel>
2581    
2582 schoenebeck 561 Where <sampler-channel> should be replaced by the number of the
2583 schoenebeck 575 sampler channel as given by the "ADD CHANNEL" (Section 6.4.5) or
2584     "LIST CHANNELS" (Section 6.4.4) command. The channel numbers of all
2585 schoenebeck 561 subsequent sampler channels remain the same.
2586 senoner 542
2587     Possible Answers:
2588    
2589     "OK" -
2590 schoenebeck 708
2591 senoner 542 in case the given sampler channel could be removed
2592 schoenebeck 708
2593 senoner 542 "WRN:<warning-code>:<warning-message>" -
2594 schoenebeck 708
2595 senoner 542 in case the given channel was removed, but there are noteworthy
2596     issue(s) related, providing an appropriate warning code and
2597     warning message
2598 schoenebeck 708
2599 senoner 542 "ERR:<error-code>:<error-message>" -
2600 schoenebeck 708
2601 senoner 542 in case it failed, providing an appropriate error code and
2602     error message
2603    
2604     Example:
2605    
2606    
2607    
2608 schoenebeck 940 6.4.7. Getting amount of available engines
2609 schoenebeck 708
2610 senoner 542 The front-end can ask for the number of available engines by sending
2611     the following command:
2612    
2613     GET AVAILABLE_ENGINES
2614    
2615     Possible Answers:
2616    
2617     LinuxSampler will answer by sending the number of available
2618     engines.
2619    
2620     Example:
2621    
2622     C: "GET AVAILABLE_ENGINES"
2623 schoenebeck 708
2624 senoner 542 S: "4"
2625    
2626 schoenebeck 708
2627 senoner 542
2628    
2629    
2630 schoenebeck 940
2631 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 47]
2632    
2633     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2634 schoenebeck 940
2635    
2636 schoenebeck 1251 6.4.8. Getting all available engines
2637 schoenebeck 940
2638 schoenebeck 1251 The front-end can ask for a list of all available engines by sending
2639     the following command:
2640 schoenebeck 940
2641 schoenebeck 1251 LIST AVAILABLE_ENGINES
2642 schoenebeck 940
2643 schoenebeck 1251 Possible Answers:
2644 schoenebeck 940
2645 schoenebeck 561 LinuxSampler will answer by sending a comma separated list of the
2646     engines' names encapsulated into apostrophes ('). Engine names
2647     can consist of lower and upper cases, digits and underlines ("_"
2648     character).
2649 senoner 542
2650     Example:
2651    
2652     C: "LIST AVAILABLE_ENGINES"
2653 schoenebeck 708
2654 schoenebeck 561 S: "'GigEngine','AkaiEngine','DLSEngine','JoesCustomEngine'"
2655 senoner 542
2656 schoenebeck 940 6.4.9. Getting information about an engine
2657 schoenebeck 708
2658 senoner 542 The front-end can ask for information about a specific engine by
2659     sending the following command:
2660    
2661     GET ENGINE INFO <engine-name>
2662    
2663     Where <engine-name> is an engine name as obtained by the "LIST
2664 schoenebeck 575 AVAILABLE_ENGINES" (Section 6.4.8) command.
2665 senoner 542
2666 schoenebeck 561 Possible Answers:
2667    
2668 senoner 542 LinuxSampler will answer by sending a <CRLF> separated list. Each
2669     answer line begins with the information category name followed by
2670     a colon and then a space character <SP> and finally the info
2671     character string to that info category. At the moment the
2672     following categories are defined:
2673    
2674 schoenebeck 708
2675    
2676 senoner 542 DESCRIPTION -
2677 schoenebeck 708
2678 senoner 542 arbitrary description text about the engine
2679 schoenebeck 708
2680 senoner 542 VERSION -
2681 schoenebeck 708
2682 senoner 542 arbitrary character string regarding the engine's version
2683    
2684    
2685    
2686 schoenebeck 708
2687 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 48]
2688    
2689     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2690 schoenebeck 708
2691 schoenebeck 940
2692 schoenebeck 1251 The mentioned fields above don't have to be in particular order.
2693 schoenebeck 940
2694 schoenebeck 1251 Example:
2695 schoenebeck 940
2696 schoenebeck 1251 C: "GET ENGINE INFO JoesCustomEngine"
2697 schoenebeck 940
2698 schoenebeck 1251 S: "DESCRIPTION: this is Joe's custom sampler engine"
2699 schoenebeck 940
2700 senoner 542 "VERSION: testing-1.0"
2701 schoenebeck 708
2702 senoner 542 "."
2703    
2704 schoenebeck 940 6.4.10. Getting sampler channel information
2705 senoner 542
2706     The front-end can ask for the current settings of a sampler channel
2707     by sending the following command:
2708    
2709     GET CHANNEL INFO <sampler-channel>
2710    
2711     Where <sampler-channel> is the sampler channel number the front-end
2712 schoenebeck 575 is interested in as returned by the "ADD CHANNEL" (Section 6.4.5) or
2713     "LIST CHANNELS" (Section 6.4.4) command.
2714 senoner 542
2715     Possible Answers:
2716    
2717     LinuxSampler will answer by sending a <CRLF> separated list. Each
2718     answer line begins with the settings category name followed by a
2719     colon and then a space character <SP> and finally the info
2720     character string to that setting category. At the moment the
2721     following categories are defined:
2722    
2723 schoenebeck 708
2724    
2725 senoner 542 ENGINE_NAME -
2726 schoenebeck 708
2727 schoenebeck 575 name of the engine that is associated with the sampler
2728     channel, "NONE" if there's no engine associated yet for this
2729     sampler channel
2730 schoenebeck 708
2731 senoner 542 AUDIO_OUTPUT_DEVICE -
2732 schoenebeck 708
2733 senoner 542 numerical ID of the audio output device which is currently
2734     connected to this sampler channel to output the audio
2735     signal, "NONE" if there's no device connected to this
2736 schoenebeck 561 sampler channel
2737 schoenebeck 708
2738 schoenebeck 1251
2739    
2740    
2741    
2742    
2743     Schoenebeck Expires December 24, 2007 [Page 49]
2744    
2745     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2746    
2747    
2748 senoner 542 AUDIO_OUTPUT_CHANNELS -
2749 schoenebeck 708
2750 senoner 542 number of output channels the sampler channel offers
2751     (dependent to used sampler engine and loaded instrument)
2752 schoenebeck 708
2753 senoner 542 AUDIO_OUTPUT_ROUTING -
2754 schoenebeck 708
2755 senoner 542 comma separated list which reflects to which audio channel
2756     of the selected audio output device each sampler output
2757 schoenebeck 708 channel is routed to, e.g. "0,3" would mean the engine's
2758 senoner 542 output channel 0 is routed to channel 0 of the audio output
2759     device and the engine's output channel 1 is routed to the
2760     channel 3 of the audio output device
2761 schoenebeck 708
2762 senoner 542 INSTRUMENT_FILE -
2763 schoenebeck 708
2764 senoner 542 the file name of the loaded instrument, "NONE" if there's no
2765     instrument yet loaded for this sampler channel
2766 schoenebeck 708
2767 senoner 542 INSTRUMENT_NR -
2768 schoenebeck 708
2769 senoner 542 the instrument index number of the loaded instrument
2770 schoenebeck 708
2771 senoner 542 INSTRUMENT_NAME -
2772 schoenebeck 708
2773 senoner 542 the instrument name of the loaded instrument
2774 schoenebeck 708
2775 senoner 542 INSTRUMENT_STATUS -
2776 schoenebeck 708
2777 senoner 542 integer values 0 to 100 indicating loading progress
2778     percentage for the instrument. Negative value indicates a
2779 schoenebeck 708 loading exception. Value of 100 indicates that the
2780     instrument is fully loaded.
2781 schoenebeck 575
2782 senoner 542 MIDI_INPUT_DEVICE -
2783 schoenebeck 708
2784 senoner 542 numerical ID of the MIDI input device which is currently
2785     connected to this sampler channel to deliver MIDI input
2786     commands, "NONE" if there's no device connected to this
2787     sampler channel
2788 schoenebeck 708
2789 senoner 542 MIDI_INPUT_PORT -
2790 schoenebeck 708
2791 senoner 542 port number of the MIDI input device
2792 schoenebeck 708
2793 senoner 542 MIDI_INPUT_CHANNEL -
2794 schoenebeck 708
2795 schoenebeck 1251
2796    
2797    
2798    
2799     Schoenebeck Expires December 24, 2007 [Page 50]
2800    
2801     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2802    
2803    
2804 senoner 542 the MIDI input channel number this sampler channel should
2805     listen to or "ALL" to listen on all MIDI channels
2806 schoenebeck 708
2807 senoner 542 VOLUME -
2808 schoenebeck 708
2809 senoner 542 optionally dotted number for the channel volume factor
2810     (where a value < 1.0 means attenuation and a value > 1.0
2811     means amplification)
2812    
2813 schoenebeck 708 MUTE -
2814    
2815     Determines whether the channel is muted, "true" if the
2816     channel is muted, "false" if the channel is not muted, and
2817     "MUTED_BY_SOLO" if the channel is muted because of the
2818     presence of a solo channel and will be unmuted when there
2819     are no solo channels left
2820    
2821     SOLO -
2822    
2823     Determines whether this is a solo channel, "true" if the
2824     channel is a solo channel; "false" otherwise
2825    
2826 schoenebeck 974 MIDI_INSTRUMENT_MAP -
2827    
2828     Determines to which MIDI instrument map this sampler channel
2829     is assigned to. Read chapter "SET CHANNEL
2830     MIDI_INSTRUMENT_MAP" (Section 6.4.24) for a list of possible
2831     values.
2832    
2833 senoner 542 The mentioned fields above don't have to be in particular order.
2834    
2835     Example:
2836    
2837     C: "GET CHANNEL INFO 34"
2838 schoenebeck 708
2839 senoner 542 S: "ENGINE_NAME: GigEngine"
2840 schoenebeck 708
2841 senoner 542 "VOLUME: 1.0"
2842 schoenebeck 708
2843 senoner 542 "AUDIO_OUTPUT_DEVICE: 0"
2844 schoenebeck 708
2845 senoner 542 "AUDIO_OUTPUT_CHANNELS: 2"
2846 schoenebeck 708
2847 schoenebeck 561 "AUDIO_OUTPUT_ROUTING: 0,1"
2848 schoenebeck 708
2849 senoner 542 "INSTRUMENT_FILE: /home/joe/FazioliPiano.gig"
2850 schoenebeck 708
2851 schoenebeck 1251
2852    
2853    
2854    
2855     Schoenebeck Expires December 24, 2007 [Page 51]
2856    
2857     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2858    
2859    
2860 senoner 542 "INSTRUMENT_NR: 0"
2861 schoenebeck 708
2862 senoner 542 "INSTRUMENT_NAME: Fazioli Piano"
2863 schoenebeck 708
2864 senoner 542 "INSTRUMENT_STATUS: 100"
2865 schoenebeck 708
2866 senoner 542 "MIDI_INPUT_DEVICE: 0"
2867 schoenebeck 708
2868 senoner 542 "MIDI_INPUT_PORT: 0"
2869 schoenebeck 708
2870 schoenebeck 974 "MIDI_INPUT_CHANNEL: 5"
2871 schoenebeck 940
2872 schoenebeck 974 "VOLUME: 1.0"
2873 schoenebeck 940
2874 schoenebeck 974 "MUTE: false"
2875 schoenebeck 940
2876 schoenebeck 974 "SOLO: false"
2877 schoenebeck 940
2878 schoenebeck 974 "MIDI_INSTRUMENT_MAP: NONE"
2879 schoenebeck 940
2880 schoenebeck 974 "."
2881    
2882 schoenebeck 940 6.4.11. Current number of active voices
2883    
2884 senoner 542 The front-end can ask for the current number of active voices on a
2885     sampler channel by sending the following command:
2886    
2887     GET CHANNEL VOICE_COUNT <sampler-channel>
2888    
2889     Where <sampler-channel> is the sampler channel number the front-end
2890 schoenebeck 575 is interested in as returned by the "ADD CHANNEL" (Section 6.4.5) or
2891     "LIST CHANNELS" (Section 6.4.4) command.
2892 senoner 542
2893     Possible Answers:
2894    
2895     LinuxSampler will answer by returning the number of active voices
2896     on that channel.
2897    
2898     Example:
2899    
2900    
2901    
2902 schoenebeck 940 6.4.12. Current number of active disk streams
2903 schoenebeck 708
2904 senoner 542 The front-end can ask for the current number of active disk streams
2905     on a sampler channel by sending the following command:
2906    
2907 schoenebeck 1251
2908    
2909    
2910    
2911     Schoenebeck Expires December 24, 2007 [Page 52]
2912    
2913     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2914    
2915    
2916 senoner 542 GET CHANNEL STREAM_COUNT <sampler-channel>
2917    
2918     Where <sampler-channel> is the sampler channel number the front-end
2919 schoenebeck 575 is interested in as returned by the "ADD CHANNEL" (Section 6.4.5) or
2920     "LIST CHANNELS" (Section 6.4.4) command.
2921 senoner 542
2922     Possible Answers:
2923    
2924     LinuxSampler will answer by returning the number of active disk
2925     streams on that channel in case the engine supports disk
2926     streaming, if the engine doesn't support disk streaming it will
2927     return "NA" for not available.
2928    
2929     Example:
2930    
2931    
2932    
2933 schoenebeck 940 6.4.13. Current fill state of disk stream buffers
2934 schoenebeck 708
2935 senoner 542 The front-end can ask for the current fill state of all disk streams
2936     on a sampler channel by sending the following command:
2937    
2938     GET CHANNEL BUFFER_FILL BYTES <sampler-channel>
2939    
2940     to get the fill state in bytes or
2941    
2942     GET CHANNEL BUFFER_FILL PERCENTAGE <sampler-channel>
2943    
2944     to get the fill state in percent, where <sampler-channel> is the
2945 schoenebeck 575 sampler channel number the front-end is interested in as returned by
2946     the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
2947     command.
2948 senoner 542
2949     Possible Answers:
2950    
2951     LinuxSampler will either answer by returning a comma separated
2952     string with the fill state of all disk stream buffers on that
2953     channel or an empty line if there are no active disk streams or
2954     "NA" for *not available* in case the engine which is deployed
2955     doesn't support disk streaming. Each entry in the answer list
2956     will begin with the stream's ID in brackets followed by the
2957     numerical representation of the fill size (either in bytes or
2958     percentage). Note: due to efficiency reasons the fill states in
2959     the response are not in particular order, thus the front-end has
2960     to sort them by itself if necessary.
2961    
2962     Examples:
2963    
2964 schoenebeck 1251
2965    
2966    
2967     Schoenebeck Expires December 24, 2007 [Page 53]
2968    
2969     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
2970    
2971    
2972 senoner 542 C: "GET CHANNEL BUFFER_FILL BYTES 4"
2973 schoenebeck 708
2974 senoner 542 S: "[115]420500,[116]510300,[75]110000,[120]230700"
2975 schoenebeck 708
2976 senoner 542 C: "GET CHANNEL BUFFER_FILL PERCENTAGE 4"
2977 schoenebeck 708
2978 senoner 542 S: "[115]90%,[116]98%,[75]40%,[120]62%"
2979 schoenebeck 708
2980 senoner 542 C: "GET CHANNEL BUFFER_FILL PERCENTAGE 4"
2981 schoenebeck 708
2982 senoner 542 S: ""
2983    
2984 schoenebeck 940 6.4.14. Setting audio output device
2985 schoenebeck 708
2986 senoner 542 The front-end can set the audio output device on a specific sampler
2987     channel by sending the following command:
2988    
2989     SET CHANNEL AUDIO_OUTPUT_DEVICE <sampler-channel>
2990     <audio-device-id>
2991    
2992 schoenebeck 575 Where <sampler-channel> is the respective sampler channel number as
2993     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
2994     (Section 6.4.4) command and <audio-device-id> is the numerical ID of
2995     the audio output device as given by the "CREATE AUDIO_OUTPUT_DEVICE"
2996     (Section 6.2.5) or "LIST AUDIO_OUTPUT_DEVICES" (Section 6.2.8)
2997     command.
2998 senoner 542
2999     Possible Answers:
3000    
3001     "OK" -
3002 schoenebeck 708
3003 senoner 542 on success
3004 schoenebeck 708
3005 senoner 542 "WRN:<warning-code>:<warning-message>" -
3006 schoenebeck 708
3007 senoner 542 if audio output device was set, but there are noteworthy
3008     issue(s) related, providing an appropriate warning code and
3009     warning message
3010 schoenebeck 708
3011 senoner 542 "ERR:<error-code>:<error-message>" -
3012 schoenebeck 708
3013 senoner 542 in case it failed, providing an appropriate error code and
3014     error message
3015    
3016     Examples:
3017    
3018    
3019    
3020 schoenebeck 1251
3021    
3022    
3023     Schoenebeck Expires December 24, 2007 [Page 54]
3024    
3025     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3026    
3027    
3028    
3029    
3030 schoenebeck 940 6.4.15. Setting audio output type
3031 senoner 542
3032     DEPRECATED: THIS COMMAND WILL DISAPPEAR SOON!
3033    
3034     The front-end can alter the audio output type on a specific sampler
3035     channel by sending the following command:
3036    
3037 schoenebeck 708 SET CHANNEL AUDIO_OUTPUT_TYPE <sampler-channel> <audio-output-
3038     type>
3039 senoner 542
3040     Where <audio-output-type> is currently either "ALSA" or "JACK" and
3041     <sampler-channel> is the respective sampler channel number.
3042    
3043     Possible Answers:
3044    
3045     "OK" -
3046 schoenebeck 708
3047 senoner 542 on success
3048 schoenebeck 708
3049 senoner 542 "WRN:<warning-code>:<warning-message>" -
3050 schoenebeck 708
3051 senoner 542 if audio output type was set, but there are noteworthy issue(s)
3052     related, providing an appropriate warning code and warning
3053     message
3054 schoenebeck 708
3055 senoner 542 "ERR:<error-code>:<error-message>" -
3056 schoenebeck 708
3057 senoner 542 in case it failed, providing an appropriate error code and
3058     error message
3059    
3060     Examples:
3061    
3062    
3063    
3064 schoenebeck 940 6.4.16. Setting audio output channel
3065 schoenebeck 708
3066 schoenebeck 575 The front-end can alter the audio output channel on a specific
3067     sampler channel by sending the following command:
3068 senoner 542
3069 schoenebeck 575 SET CHANNEL AUDIO_OUTPUT_CHANNEL <sampler-chan> <audio-out>
3070     <audio-in>
3071 senoner 542
3072 schoenebeck 575 Where <sampler-chan> is the sampler channel number as returned by the
3073     "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
3074     command, <audio-out> is the numerical ID of the sampler channel's
3075     audio output channel which should be rerouted and <audio-in> is the
3076 schoenebeck 1251
3077    
3078    
3079     Schoenebeck Expires December 24, 2007 [Page 55]
3080    
3081     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3082    
3083    
3084 schoenebeck 575 numerical ID of the audio channel of the selected audio output device
3085     where <audio-out> should be routed to.
3086 senoner 542
3087 schoenebeck 575 Possible Answers:
3088 senoner 542
3089 schoenebeck 708 "OK" -
3090 senoner 542
3091 schoenebeck 708 on success
3092 senoner 542
3093 schoenebeck 708 "WRN:<warning-code>:<warning-message>" -
3094 senoner 542
3095     if audio output channel was set, but there are noteworthy
3096     issue(s) related, providing an appropriate warning code and
3097     warning message
3098 schoenebeck 708
3099 senoner 542 "ERR:<error-code>:<error-message>" -
3100 schoenebeck 708
3101 senoner 542 in case it failed, providing an appropriate error code and
3102     error message
3103    
3104     Examples:
3105    
3106    
3107    
3108 schoenebeck 940 6.4.17. Setting MIDI input device
3109    
3110 senoner 542 The front-end can set the MIDI input device on a specific sampler
3111     channel by sending the following command:
3112    
3113     SET CHANNEL MIDI_INPUT_DEVICE <sampler-channel> <midi-device-id>
3114    
3115 schoenebeck 575 Where <sampler-channel> is the sampler channel number as returned by
3116     the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
3117 schoenebeck 940 command and <midi-device-id> is the numerical ID of the MIDI input
3118 schoenebeck 575 device as returned by the "CREATE MIDI_INPUT_DEVICE" (Section 6.3.5)
3119     or "LIST MIDI_INPUT_DEVICES" (Section 6.3.8) command.
3120 senoner 542
3121     Possible Answers:
3122    
3123     "OK" -
3124 schoenebeck 708
3125 senoner 542 on success
3126 schoenebeck 708
3127 senoner 542 "WRN:<warning-code>:<warning-message>" -
3128 schoenebeck 708
3129 senoner 542 if MIDI input device was set, but there are noteworthy issue(s)
3130     related, providing an appropriate warning code and warning
3131     message
3132 schoenebeck 708
3133 schoenebeck 1251
3134    
3135     Schoenebeck Expires December 24, 2007 [Page 56]
3136    
3137     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3138    
3139    
3140 senoner 542 "ERR:<error-code>:<error-message>" -
3141 schoenebeck 708
3142 senoner 542 in case it failed, providing an appropriate error code and
3143     error message
3144    
3145     Examples:
3146    
3147    
3148    
3149 schoenebeck 940 6.4.18. Setting MIDI input type
3150 schoenebeck 708
3151 senoner 542 DEPRECATED: THIS COMMAND WILL DISAPPEAR SOON!
3152    
3153     The front-end can alter the MIDI input type on a specific sampler
3154     channel by sending the following command:
3155    
3156     SET CHANNEL MIDI_INPUT_TYPE <sampler-channel> <midi-input-type>
3157    
3158 schoenebeck 708 Where <midi-input-type> is currently only "ALSA" and <sampler-
3159     channel> is the respective sampler channel number.
3160 senoner 542
3161     Possible Answers:
3162    
3163     "OK" -
3164 schoenebeck 708
3165 senoner 542 on success
3166 schoenebeck 708
3167 senoner 542 "WRN:<warning-code>:<warning-message>" -
3168 schoenebeck 708
3169 senoner 542 if MIDI input type was set, but there are noteworthy issue(s)
3170     related, providing an appropriate warning code and warning
3171     message
3172 schoenebeck 708
3173 senoner 542 "ERR:<error-code>:<error-message>" -
3174 schoenebeck 708
3175 senoner 542 in case it failed, providing an appropriate error code and
3176     error message
3177    
3178     Examples:
3179    
3180    
3181    
3182 schoenebeck 940 6.4.19. Setting MIDI input port
3183 schoenebeck 708
3184 senoner 542 The front-end can alter the MIDI input port on a specific sampler
3185     channel by sending the following command:
3186    
3187    
3188    
3189    
3190 schoenebeck 708
3191 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 57]
3192    
3193     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3194 schoenebeck 974
3195    
3196 schoenebeck 1251 SET CHANNEL MIDI_INPUT_PORT <sampler-channel> <midi-input-port>
3197 schoenebeck 974
3198 schoenebeck 1251 Where <midi-input-port> is a MIDI input port number of the MIDI input
3199     device connected to the sampler channel given by <sampler-channel>.
3200 schoenebeck 974
3201 schoenebeck 1251 Possible Answers:
3202 schoenebeck 974
3203 schoenebeck 1251 "OK" -
3204 schoenebeck 974
3205 senoner 542 on success
3206 schoenebeck 708
3207 senoner 542 "WRN:<warning-code>:<warning-message>" -
3208 schoenebeck 708
3209 senoner 542 if MIDI input port was set, but there are noteworthy issue(s)
3210     related, providing an appropriate warning code and warning
3211     message
3212 schoenebeck 708
3213 senoner 542 "ERR:<error-code>:<error-message>" -
3214 schoenebeck 708
3215 senoner 542 in case it failed, providing an appropriate error code and
3216 schoenebeck 561 error message
3217 senoner 542
3218     Examples:
3219    
3220    
3221    
3222 schoenebeck 940 6.4.20. Setting MIDI input channel
3223 senoner 542
3224     The front-end can alter the MIDI channel a sampler channel should
3225     listen to by sending the following command:
3226    
3227     SET CHANNEL MIDI_INPUT_CHANNEL <sampler-channel> <midi-input-chan>
3228    
3229     Where <midi-input-chan> is the number of the new MIDI input channel
3230     where <sampler-channel> should listen to or "ALL" to listen on all 16
3231     MIDI channels.
3232    
3233     Possible Answers:
3234    
3235     "OK" -
3236 schoenebeck 708
3237 senoner 542 on success
3238 schoenebeck 708
3239 senoner 542 "WRN:<warning-code>:<warning-message>" -
3240 schoenebeck 708
3241 senoner 542 if MIDI input channel was set, but there are noteworthy
3242     issue(s) related, providing an appropriate warning code and
3243     warning message
3244 schoenebeck 708
3245 schoenebeck 1251
3246    
3247     Schoenebeck Expires December 24, 2007 [Page 58]
3248    
3249     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3250    
3251    
3252 senoner 542 "ERR:<error-code>:<error-message>" -
3253 schoenebeck 708
3254 senoner 542 in case it failed, providing an appropriate error code and
3255     error message
3256    
3257     Examples:
3258    
3259    
3260    
3261 schoenebeck 940 6.4.21. Setting channel volume
3262 schoenebeck 708
3263 senoner 542 The front-end can alter the volume of a sampler channel by sending
3264     the following command:
3265    
3266     SET CHANNEL VOLUME <sampler-channel> <volume>
3267    
3268     Where <volume> is an optionally dotted positive number (a value
3269     smaller than 1.0 means attenuation, whereas a value greater than 1.0
3270     means amplification) and <sampler-channel> defines the sampler
3271     channel where this volume factor should be set.
3272    
3273     Possible Answers:
3274    
3275     "OK" -
3276 schoenebeck 708
3277 senoner 542 on success
3278 schoenebeck 708
3279 senoner 542 "WRN:<warning-code>:<warning-message>" -
3280 schoenebeck 708
3281 senoner 542 if channel volume was set, but there are noteworthy issue(s)
3282     related, providing an appropriate warning code and warning
3283 schoenebeck 708 message
3284 schoenebeck 575
3285 schoenebeck 708 "ERR:<error-code>:<error-message>" -
3286 schoenebeck 575
3287 schoenebeck 708 in case it failed, providing an appropriate error code and
3288     error message
3289 schoenebeck 575
3290 schoenebeck 708 Examples:
3291    
3292    
3293    
3294 schoenebeck 940 6.4.22. Muting a sampler channel
3295 schoenebeck 708
3296     The front-end can mute/unmute a specific sampler channel by sending
3297     the following command:
3298    
3299 schoenebeck 1251
3300    
3301    
3302    
3303     Schoenebeck Expires December 24, 2007 [Page 59]
3304    
3305     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3306    
3307    
3308 schoenebeck 708 SET CHANNEL MUTE <sampler-channel> <mute>
3309    
3310     Where <sampler-channel> is the respective sampler channel number as
3311     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
3312     (Section 6.4.4) command and <mute> should be replaced either by "1"
3313     to mute the channel or "0" to unmute the channel.
3314    
3315     Possible Answers:
3316    
3317     "OK" -
3318    
3319     on success
3320    
3321     "WRN:<warning-code>:<warning-message>" -
3322    
3323     if the channel was muted/unmuted, but there are noteworthy
3324     issue(s) related, providing an appropriate warning code and
3325     warning message
3326    
3327 senoner 542 "ERR:<error-code>:<error-message>" -
3328 schoenebeck 708
3329 senoner 542 in case it failed, providing an appropriate error code and
3330     error message
3331    
3332     Examples:
3333    
3334    
3335    
3336 schoenebeck 940 6.4.23. Soloing a sampler channel
3337 senoner 542
3338 schoenebeck 708 The front-end can solo/unsolo a specific sampler channel by sending
3339     the following command:
3340    
3341     SET CHANNEL SOLO <sampler-channel> <solo>
3342    
3343     Where <sampler-channel> is the respective sampler channel number as
3344     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
3345     (Section 6.4.4) command and <solo> should be replaced either by "1"
3346     to solo the channel or "0" to unsolo the channel.
3347    
3348     Possible Answers:
3349    
3350     "OK" -
3351    
3352     on success
3353    
3354 schoenebeck 1251
3355    
3356    
3357    
3358    
3359     Schoenebeck Expires December 24, 2007 [Page 60]
3360    
3361     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3362    
3363    
3364 schoenebeck 708 "WRN:<warning-code>:<warning-message>" -
3365    
3366     if the channel was soloed/unsoloed, but there are noteworthy
3367     issue(s) related, providing an appropriate warning code and
3368     warning message
3369    
3370     "ERR:<error-code>:<error-message>" -
3371    
3372     in case it failed, providing an appropriate error code and
3373     error message
3374    
3375     Examples:
3376    
3377    
3378    
3379 schoenebeck 974 6.4.24. Assigning a MIDI instrument map to a sampler channel
3380 schoenebeck 708
3381 schoenebeck 974 The front-end can assign a MIDI instrument map to a specific sampler
3382     channel by sending the following command:
3383 senoner 542
3384 schoenebeck 974 SET CHANNEL MIDI_INSTRUMENT_MAP <sampler-channel> <map>
3385 senoner 542
3386 schoenebeck 974 Where <sampler-channel> is the respective sampler channel number as
3387     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
3388     (Section 6.4.4) command and <map> can have the following
3389     possibilites:
3390 schoenebeck 940
3391 schoenebeck 974 "NONE" -
3392 schoenebeck 940
3393 schoenebeck 974 This is the default setting. In this case the sampler channel
3394     is not assigned any MIDI instrument map and thus will ignore
3395     all MIDI program change messages.
3396 schoenebeck 940
3397 schoenebeck 974 "DEFAULT" -
3398    
3399     The sampler channel will always use the default MIDI instrument
3400     map to handle MIDI program change messages.
3401    
3402     numeric ID -
3403    
3404     You can assign a specific MIDI instrument map by replacing
3405     <map> with the respective numeric ID of the MIDI instrument map
3406     as returned by the "LIST MIDI_INSTRUMENT_MAPS" (Section 6.7.4)
3407     command. Once that map will be deleted, the sampler channel
3408     would fall back to "NONE".
3409    
3410     Read chapter "MIDI Instrument Mapping" (Section 6.7) for details
3411     regarding MIDI instrument mapping.
3412    
3413 schoenebeck 1251
3414    
3415     Schoenebeck Expires December 24, 2007 [Page 61]
3416    
3417     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3418    
3419    
3420 schoenebeck 974 Possible Answers:
3421    
3422     "OK" -
3423    
3424     on success
3425    
3426     "ERR:<error-code>:<error-message>" -
3427    
3428     in case it failed, providing an appropriate error code and
3429     error message
3430    
3431     Examples:
3432    
3433    
3434    
3435 schoenebeck 1002 6.4.25. Adding an effect send to a sampler channel
3436 schoenebeck 974
3437 schoenebeck 1002 The front-end can create an additional effect send on a specific
3438     sampler channel by sending the following command:
3439    
3440     CREATE FX_SEND <sampler-channel> <midi-ctrl> [<name>]
3441    
3442     Where <sampler-channel> is the respective sampler channel number as
3443     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
3444     (Section 6.4.4) command, that is the sampler channel on which the
3445     effect send should be created on, <midi-ctrl> is a number between
3446     0..127 defining the MIDI controller which can alter the effect send
3447     level and <name> is an optional argument defining a name for the
3448     effect send entity. The name does not have to be unique.
3449    
3450     By default, that is as initial routing, the effect send's audio
3451     channels are automatically routed to the last audio channels of the
3452     sampler channel's audio output device, that way you can i.e. first
3453     increase the amount of audio channels on the audio output device for
3454     having dedicated effect send output channels and when "CREATE
3455     FX_SEND" is called, those channels will automatically be picked. You
3456     can alter the destination channels however with "SET FX_SEND
3457 iliev 1137 AUDIO_OUTPUT_CHANNEL" (Section 6.4.31).
3458 schoenebeck 1002
3459     Note: Create effect sends on a sampler channel only when needed,
3460     because having effect sends on a sampler channel will decrease
3461     runtime performance, because for implementing channel effect sends,
3462     separate (sampler channel local) audio buffers are needed to render
3463     and mix the voices and route the audio signal afterwards to the
3464     master outputs and effect send outputs (along with their respective
3465     effect send levels). A sampler channel without effect sends however
3466     can mix its voices directly into the audio output devices's audio
3467     buffers and is thus faster.
3468    
3469 schoenebeck 1251
3470    
3471     Schoenebeck Expires December 24, 2007 [Page 62]
3472    
3473     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3474    
3475    
3476 schoenebeck 1002 Possible Answers:
3477    
3478     "OK[<fx-send-id>]" -
3479    
3480     in case a new effect send could be added to the sampler
3481     channel, where <fx-send-id> reflects the unique ID of the newly
3482     created effect send entity
3483    
3484     "ERR:<error-code>:<error-message>" -
3485    
3486     when a new effect send could not be added, i.e. due to invalid
3487     parameters
3488    
3489     Examples:
3490    
3491     C: "CREATE FX_SEND 0 91 'Reverb Send'"
3492    
3493     S: "OK[0]"
3494    
3495     C: "CREATE FX_SEND 0 93"
3496    
3497     S: "OK[1]"
3498    
3499     6.4.26. Removing an effect send from a sampler channel
3500    
3501     The front-end can remove an existing effect send on a specific
3502     sampler channel by sending the following command:
3503    
3504     DESTROY FX_SEND <sampler-channel> <fx-send-id>
3505    
3506     Where <sampler-channel> is the respective sampler channel number as
3507     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
3508     (Section 6.4.4) command, that is the sampler channel from which the
3509     effect send should be removed from and <fx-send-id> is the respective
3510     effect send number as returned by the "CREATE FX_SEND"
3511     (Section 6.4.25) or "LIST FX_SENDS" (Section 6.4.28) command.
3512    
3513     Possible Answers:
3514    
3515     "OK" -
3516    
3517     on success
3518    
3519     "ERR:<error-code>:<error-message>" -
3520    
3521     in case it failed, providing an appropriate error code and
3522     error message
3523    
3524    
3525    
3526    
3527 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 63]
3528    
3529     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3530 schoenebeck 1002
3531    
3532 schoenebeck 1251 Example:
3533 schoenebeck 1002
3534 schoenebeck 1251 C: "DESTROY FX_SEND 0 0"
3535 schoenebeck 1002
3536 schoenebeck 1251 S: "OK"
3537 schoenebeck 1002
3538     6.4.27. Getting amount of effect sends on a sampler channel
3539    
3540     The front-end can ask for the amount of effect sends on a specific
3541     sampler channel by sending the following command:
3542    
3543     GET FX_SENDS <sampler-channel>
3544    
3545     Where <sampler-channel> is the respective sampler channel number as
3546     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
3547     (Section 6.4.4) command.
3548    
3549     Possible Answers:
3550    
3551     The sampler will answer by returning the number of effect sends on
3552     the given sampler channel.
3553    
3554     Example:
3555    
3556     C: "GET FX_SENDS 0"
3557    
3558     S: "2"
3559    
3560     6.4.28. Listing all effect sends on a sampler channel
3561    
3562     The front-end can ask for a list of effect sends on a specific
3563     sampler channel by sending the following command:
3564    
3565     LIST FX_SENDS <sampler-channel>
3566    
3567     Where <sampler-channel> is the respective sampler channel number as
3568     returned by the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS"
3569     (Section 6.4.4) command.
3570    
3571     Possible Answers:
3572    
3573     The sampler will answer by returning a comma separated list with
3574     all effect sends' numerical IDs on the given sampler channel.
3575    
3576     Examples:
3577    
3578    
3579    
3580    
3581    
3582    
3583 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 64]
3584    
3585     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3586 schoenebeck 1002
3587    
3588 schoenebeck 1251 C: "LIST FX_SENDS 0"
3589 schoenebeck 1002
3590 schoenebeck 1251 S: "0,1"
3591 schoenebeck 1002
3592 schoenebeck 1251 C: "LIST FX_SENDS 1"
3593    
3594     S: ""
3595    
3596 schoenebeck 1002 6.4.29. Getting effect send information
3597    
3598     The front-end can ask for the current settings of an effect send
3599     entity by sending the following command:
3600    
3601     GET FX_SEND INFO <sampler-channel> <fx-send-id>
3602    
3603     Where <sampler-channel> is the sampler channel number as returned by
3604     the "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
3605     command and <fx-send-id> reflects the numerical ID of the effect send
3606     entity as returned by the "CREATE FX_SEND" (Section 6.4.25) or "LIST
3607     FX_SENDS" (Section 6.4.28) command.
3608    
3609     Possible Answers:
3610    
3611     The sampler will answer by sending a <CRLF> separated list. Each
3612     answer line begins with the settings category name followed by a
3613     colon and then a space character <SP> and finally the info
3614     character string to that setting category. At the moment the
3615     following categories are defined:
3616    
3617    
3618    
3619     NAME -
3620    
3621     name of the effect send entity
3622    
3623 schoenebeck 1028 MIDI_CONTROLLER -
3624    
3625     a value between 0 and 127 reflecting the MIDI controller
3626     which is able to modify the effect send's send level
3627    
3628     LEVEL -
3629    
3630     optionally dotted number reflecting the effect send's
3631     current send level (where a value < 1.0 means attenuation
3632     and a value > 1.0 means amplification)
3633    
3634 schoenebeck 1251
3635    
3636    
3637    
3638    
3639     Schoenebeck Expires December 24, 2007 [Page 65]
3640    
3641     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3642    
3643    
3644 schoenebeck 1002 AUDIO_OUTPUT_ROUTING -
3645    
3646     comma separated list which reflects to which audio channel
3647     of the selected audio output device each effect send output
3648     channel is routed to, e.g. "0,3" would mean the effect
3649     send's output channel 0 is routed to channel 0 of the audio
3650     output device and the effect send's output channel 1 is
3651     routed to the channel 3 of the audio output device (see "SET
3652 iliev 1137 FX_SEND AUDIO_OUTPUT_CHANNEL" (Section 6.4.31) for details)
3653 schoenebeck 1002
3654     The mentioned fields above don't have to be in particular order.
3655    
3656     Example:
3657    
3658     C: "GET FX_SEND INFO 0 0"
3659    
3660     S: "NAME: Reverb Send"
3661    
3662 schoenebeck 1028 "MIDI_CONTROLLER: 91"
3663 schoenebeck 1002
3664 schoenebeck 1028 "LEVEL: 0.3"
3665 schoenebeck 1002
3666 schoenebeck 1028 "AUDIO_OUTPUT_ROUTING: 2,3"
3667 schoenebeck 1002
3668     "."
3669    
3670 iliev 1137 6.4.30. Changing effect send's name
3671 schoenebeck 1002
3672 iliev 1137 The front-end can alter the current name of an effect send entity by
3673     sending the following command:
3674    
3675     SET FX_SEND NAME <sampler-chan> <fx-send-id> <name>
3676    
3677     Where <sampler-chan> is the sampler channel number as returned by the
3678     "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
3679     command, <fx-send-id> reflects the numerical ID of the effect send
3680     entity as returned by the "CREATE FX_SEND" (Section 6.4.25) or "LIST
3681     FX_SENDS" (Section 6.4.28) command and <name> is the new name of the
3682     effect send entity, which does not have to be unique.
3683    
3684     Possible Answers:
3685    
3686     "OK" -
3687    
3688     on success
3689    
3690 schoenebeck 1251
3691    
3692    
3693    
3694    
3695     Schoenebeck Expires December 24, 2007 [Page 66]
3696    
3697     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3698    
3699    
3700 iliev 1137 "ERR:<error-code>:<error-message>" -
3701    
3702     in case it failed, providing an appropriate error code and
3703     error message
3704    
3705     Example:
3706    
3707     C: "SET FX_SEND NAME 0 0 'Fx Send 1'"
3708    
3709     S: "OK"
3710    
3711     6.4.31. Altering effect send's audio routing
3712    
3713 schoenebeck 1002 The front-end can alter the destination of an effect send's audio
3714     channel on a specific sampler channel by sending the following
3715     command:
3716    
3717     SET FX_SEND AUDIO_OUTPUT_CHANNEL <sampler-chan> <fx-send-id>
3718     <audio-src> <audio-dst>
3719    
3720     Where <sampler-chan> is the sampler channel number as returned by the
3721     "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
3722     command, <fx-send-id> reflects the numerical ID of the effect send
3723     entity as returned by the "CREATE FX_SEND" (Section 6.4.25) or "LIST
3724     FX_SENDS" (Section 6.4.28) command, <audio-src> is the numerical ID
3725     of the effect send's audio channel which should be rerouted and
3726     <audio-dst> is the numerical ID of the audio channel of the selected
3727     audio output device where <audio-src> should be routed to.
3728    
3729     Note that effect sends can only route audio to the same audio output
3730     device as assigned to the effect send's sampler channel. Also note
3731     that an effect send entity does always have exactly as much audio
3732     channels as its sampler channel. So if the sampler channel is
3733     stereo, the effect send does have two audio channels as well. Also
3734     keep in mind that the amount of audio channels on a sampler channel
3735     might be dependant not only to the deployed sampler engine on the
3736     sampler channel, but also dependant to the instrument currently
3737     loaded. However you can (effectively) turn an i.e. stereo effect
3738     send into a mono one by simply altering its audio routing
3739     appropriately.
3740    
3741     Possible Answers:
3742    
3743     "OK" -
3744    
3745     on success
3746    
3747 schoenebeck 1251
3748    
3749    
3750    
3751     Schoenebeck Expires December 24, 2007 [Page 67]
3752    
3753     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3754    
3755    
3756 schoenebeck 1002 "WRN:<warning-code>:<warning-message>" -
3757    
3758     if audio output channel was set, but there are noteworthy
3759     issue(s) related, providing an appropriate warning code and
3760     warning message
3761    
3762     "ERR:<error-code>:<error-message>" -
3763    
3764     in case it failed, providing an appropriate error code and
3765     error message
3766    
3767 schoenebeck 1028 Example:
3768 schoenebeck 1002
3769 schoenebeck 1028 C: "SET FX_SEND AUDIO_OUTPUT_CHANNEL 0 0 0 2"
3770 schoenebeck 1002
3771 schoenebeck 1028 S: "OK"
3772    
3773 iliev 1137 6.4.32. Altering effect send's MIDI controller
3774 schoenebeck 1028
3775     The front-end can alter the MIDI controller of an effect send entity
3776     by sending the following command:
3777    
3778     SET FX_SEND MIDI_CONTROLLER <sampler-chan> <fx-send-id> <midi-
3779     ctrl>
3780    
3781     Where <sampler-chan> is the sampler channel number as returned by the
3782     "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
3783     command, <fx-send-id> reflects the numerical ID of the effect send
3784     entity as returned by the "CREATE FX_SEND" (Section 6.4.25) or "LIST
3785     FX_SENDS" (Section 6.4.28) command and <midi-ctrl> reflects the MIDI
3786     controller which shall be able to modify the effect send's send
3787     level.
3788    
3789     Possible Answers:
3790    
3791     "OK" -
3792    
3793     on success
3794    
3795     "WRN:<warning-code>:<warning-message>" -
3796    
3797     if MIDI controller was set, but there are noteworthy issue(s)
3798     related, providing an appropriate warning code and warning
3799     message
3800    
3801     "ERR:<error-code>:<error-message>" -
3802    
3803 schoenebeck 1251
3804    
3805    
3806    
3807     Schoenebeck Expires December 24, 2007 [Page 68]
3808    
3809     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3810    
3811    
3812 schoenebeck 1028 in case it failed, providing an appropriate error code and
3813     error message
3814    
3815 schoenebeck 1002 Example:
3816    
3817 schoenebeck 1028 C: "SET FX_SEND MIDI_CONTROLLER 0 0 91"
3818 schoenebeck 1002
3819     S: "OK"
3820    
3821 iliev 1137 6.4.33. Altering effect send's send level
3822 schoenebeck 1002
3823 schoenebeck 1028 The front-end can alter the current send level of an effect send
3824     entity by sending the following command:
3825    
3826     SET FX_SEND LEVEL <sampler-chan> <fx-send-id> <volume>
3827    
3828     Where <sampler-chan> is the sampler channel number as returned by the
3829     "ADD CHANNEL" (Section 6.4.5) or "LIST CHANNELS" (Section 6.4.4)
3830     command, <fx-send-id> reflects the numerical ID of the effect send
3831     entity as returned by the "CREATE FX_SEND" (Section 6.4.25) or "LIST
3832     FX_SENDS" (Section 6.4.28) command and <volume> is an optionally
3833     dotted positive number (a value smaller than 1.0 means attenuation,
3834     whereas a value greater than 1.0 means amplification) reflecting the
3835     new send level.
3836    
3837     Possible Answers:
3838    
3839     "OK" -
3840    
3841     on success
3842    
3843     "WRN:<warning-code>:<warning-message>" -
3844    
3845     if new send level was set, but there are noteworthy issue(s)
3846     related, providing an appropriate warning code and warning
3847     message
3848    
3849     "ERR:<error-code>:<error-message>" -
3850    
3851     in case it failed, providing an appropriate error code and
3852     error message
3853    
3854     Example:
3855    
3856     C: "SET FX_SEND LEVEL 0 0 0.15"
3857    
3858     S: "OK"
3859    
3860 schoenebeck 1251
3861    
3862    
3863     Schoenebeck Expires December 24, 2007 [Page 69]
3864    
3865     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3866    
3867    
3868 iliev 1137 6.4.34. Resetting a sampler channel
3869 schoenebeck 1028
3870 schoenebeck 974 The front-end can reset a particular sampler channel by sending the
3871     following command:
3872    
3873     RESET CHANNEL <sampler-channel>
3874    
3875     Where <sampler-channel> defines the sampler channel to be reset.
3876 senoner 542 This will cause the engine on that sampler channel, its voices and
3877     eventually disk streams and all control and status variables to be
3878     reset.
3879    
3880     Possible Answers:
3881    
3882     "OK" -
3883 schoenebeck 708
3884 senoner 542 on success
3885 schoenebeck 708
3886 senoner 542 "WRN:<warning-code>:<warning-message>" -
3887 schoenebeck 708
3888 senoner 542 if channel was reset, but there are noteworthy issue(s)
3889     related, providing an appropriate warning code and warning
3890     message
3891 schoenebeck 708
3892 senoner 542 "ERR:<error-code>:<error-message>" -
3893 schoenebeck 708
3894 senoner 542 in case it failed, providing an appropriate error code and
3895     error message
3896    
3897     Examples:
3898    
3899    
3900    
3901 schoenebeck 940 6.5. Controlling connection
3902 schoenebeck 708
3903 schoenebeck 575 The following commands are used to control the connection to
3904     LinuxSampler.
3905 senoner 542
3906 schoenebeck 940 6.5.1. Register front-end for receiving event messages
3907 senoner 542
3908 schoenebeck 575 The front-end can register itself to the LinuxSampler application to
3909     be informed about noteworthy events by sending this command:
3910 senoner 542
3911     SUBSCRIBE <event-id>
3912    
3913     where <event-id> will be replaced by the respective event that client
3914     wants to subscribe to.
3915    
3916 schoenebeck 1251
3917    
3918    
3919     Schoenebeck Expires December 24, 2007 [Page 70]
3920    
3921     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3922    
3923    
3924 senoner 542 Possible Answers:
3925    
3926     "OK" -
3927 schoenebeck 708
3928 senoner 542 on success
3929 schoenebeck 708
3930 senoner 542 "WRN:<warning-code>:<warning-message>" -
3931 schoenebeck 708
3932 senoner 542 if registration succeeded, but there are noteworthy issue(s)
3933     related, providing an appropriate warning code and warning
3934     message
3935 schoenebeck 708
3936 senoner 542 "ERR:<error-code>:<error-message>" -
3937 schoenebeck 708
3938 senoner 542 in case it failed, providing an appropriate error code and
3939     error message
3940    
3941     Examples:
3942    
3943    
3944    
3945 schoenebeck 940 6.5.2. Unregister front-end for not receiving event messages
3946 schoenebeck 708
3947 senoner 542 The front-end can unregister itself if it doesn't want to receive
3948     event messages anymore by sending the following command:
3949    
3950     UNSUBSCRIBE <event-id>
3951    
3952     Where <event-id> will be replaced by the respective event that client
3953     doesn't want to receive anymore.
3954    
3955     Possible Answers:
3956    
3957     "OK" -
3958 schoenebeck 708
3959 senoner 542 on success
3960 schoenebeck 708
3961 senoner 542 "WRN:<warning-code>:<warning-message>" -
3962 schoenebeck 708
3963 senoner 542 if unregistration succeeded, but there are noteworthy issue(s)
3964     related, providing an appropriate warning code and warning
3965     message
3966 schoenebeck 708
3967 schoenebeck 974 "ERR:<error-code>:<error-message>" -
3968 senoner 542
3969 schoenebeck 974 in case it failed, providing an appropriate error code and
3970     error message
3971 schoenebeck 575
3972 schoenebeck 1251
3973    
3974    
3975     Schoenebeck Expires December 24, 2007 [Page 71]
3976    
3977     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
3978    
3979    
3980 schoenebeck 974 Examples:
3981 schoenebeck 940
3982    
3983    
3984     6.5.3. Enable or disable echo of commands
3985    
3986 senoner 542 To enable or disable back sending of commands to the client the
3987     following command can be used:
3988    
3989     SET ECHO <value>
3990    
3991     Where <value> should be replaced either by "1" to enable echo mode or
3992     "0" to disable echo mode. When echo mode is enabled, all commands
3993     send to LinuxSampler will be immediately send back and after this
3994     echo the actual response to the command will be returned. Echo mode
3995     will only be altered for the client connection that issued the "SET
3996     ECHO" command, not globally for all client connections.
3997    
3998     Possible Answers:
3999    
4000     "OK" -
4001 schoenebeck 708
4002 senoner 542 usually
4003 schoenebeck 708
4004 senoner 542 "ERR:<error-code>:<error-message>" -
4005    
4006 schoenebeck 708 on syntax error, e.g. non boolean value
4007    
4008 senoner 542 Examples:
4009    
4010    
4011    
4012 schoenebeck 940 6.5.4. Close client connection
4013 schoenebeck 708
4014 senoner 542 The client can close its network connection to LinuxSampler by
4015     sending the following command:
4016    
4017     QUIT
4018    
4019     This is probably more interesting for manual telnet connections to
4020     LinuxSampler than really useful for a front-end implementation.
4021    
4022 schoenebeck 974 6.6. Global commands
4023 schoenebeck 940
4024 schoenebeck 974 The following commands have global impact on the sampler.
4025 schoenebeck 940
4026 schoenebeck 1251
4027    
4028    
4029    
4030    
4031     Schoenebeck Expires December 24, 2007 [Page 72]
4032    
4033     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4034    
4035    
4036 schoenebeck 974 6.6.1. Current number of active voices
4037 schoenebeck 940
4038 schoenebeck 974 The front-end can ask for the current number of active voices on the
4039     sampler by sending the following command:
4040 schoenebeck 940
4041     GET TOTAL_VOICE_COUNT
4042    
4043     Possible Answers:
4044    
4045     LinuxSampler will answer by returning the number of all active
4046     voices on the sampler.
4047    
4048     6.6.2. Maximum amount of active voices
4049    
4050     The front-end can ask for the maximum number of active voices by
4051     sending the following command:
4052    
4053     GET TOTAL_VOICE_COUNT_MAX
4054    
4055     Possible Answers:
4056    
4057     LinuxSampler will answer by returning the maximum number of active
4058     voices.
4059    
4060     6.6.3. Reset sampler
4061    
4062 schoenebeck 575 The front-end can reset the whole sampler by sending the following
4063     command:
4064 senoner 542
4065 schoenebeck 575 RESET
4066    
4067     Possible Answers:
4068    
4069 schoenebeck 708 "OK" -
4070 schoenebeck 575
4071 schoenebeck 708 always
4072 schoenebeck 575
4073 schoenebeck 708 Examples:
4074 schoenebeck 575
4075 senoner 542
4076    
4077 schoenebeck 940 6.6.4. General sampler informations
4078 senoner 542
4079 schoenebeck 708 The client can ask for general informations about the LinuxSampler
4080 schoenebeck 575 instance by sending the following command:
4081    
4082 schoenebeck 1251
4083    
4084    
4085    
4086    
4087     Schoenebeck Expires December 24, 2007 [Page 73]
4088    
4089     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4090    
4091    
4092 schoenebeck 575 GET SERVER INFO
4093    
4094 senoner 542 Possible Answers:
4095    
4096 schoenebeck 575 LinuxSampler will answer by sending a <CRLF> separated list. Each
4097     answer line begins with the information category name followed by
4098     a colon and then a space character <SP> and finally the info
4099     character string to that information category. At the moment the
4100     following categories are defined:
4101 senoner 542
4102 schoenebeck 708
4103    
4104 schoenebeck 575 DESCRIPTION -
4105 schoenebeck 708
4106 schoenebeck 575 arbitrary textual description about the sampler
4107 schoenebeck 708
4108 schoenebeck 575 VERSION -
4109 schoenebeck 708
4110 schoenebeck 575 version of the sampler
4111 schoenebeck 708
4112 schoenebeck 575 PROTOCOL_VERSION -
4113 schoenebeck 708
4114 schoenebeck 575 version of the LSCP specification the sampler complies with
4115     (see Section 2 for details)
4116 senoner 542
4117 iliev 1162 INSTRUMENTS_DB_SUPPORT -
4118    
4119     either yes or no, specifies whether the sampler is build
4120     with instruments database support.
4121    
4122 schoenebeck 575 The mentioned fields above don't have to be in particular order.
4123     Other fields might be added in future.
4124 senoner 542
4125 schoenebeck 1006 6.6.5. Getting global volume attenuation
4126    
4127     The client can ask for the current global sampler-wide volume
4128     attenuation by sending the following command:
4129    
4130     GET VOLUME
4131    
4132     Possible Answers:
4133    
4134     The sampler will always answer by returning the optional dotted
4135     floating point coefficient, reflecting the current global volume
4136     attenuation.
4137    
4138     Note: it is up to the respective sampler engine whether to obey that
4139     global volume parameter or not, but in general all engines SHOULD use
4140 schoenebeck 1251
4141    
4142    
4143     Schoenebeck Expires December 24, 2007 [Page 74]
4144    
4145     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4146    
4147    
4148 schoenebeck 1006 this parameter.
4149    
4150     6.6.6. Setting global volume attenuation
4151    
4152     The client can alter the current global sampler-wide volume
4153     attenuation by sending the following command:
4154    
4155     SET VOLUME <volume>
4156    
4157     Where <volume> should be replaced by the optional dotted floating
4158     point value, reflecting the new global volume parameter. This value
4159     might usually be in the range between 0.0 and 1.0, that is for
4160     attenuating the overall volume.
4161    
4162 iliev 1162 Possible Answers:
4163 iliev 1137
4164 iliev 1162 "OK" -
4165 iliev 1137
4166 schoenebeck 1006 on success
4167    
4168     "WRN:<warning-code>:<warning-message>" -
4169    
4170     if the global volume was set, but there are noteworthy issue(s)
4171     related, providing an appropriate warning code and warning
4172     message
4173    
4174     "ERR:<error-code>:<error-message>" -
4175    
4176     in case it failed, providing an appropriate error code and
4177     error message
4178    
4179 schoenebeck 945 6.7. MIDI Instrument Mapping
4180 senoner 542
4181 schoenebeck 945 The MIDI protocol provides a way to switch between instruments by
4182     sending so called MIDI bank select and MIDI program change messages
4183     which are essentially just numbers. The following commands allow to
4184     actually map arbitrary MIDI bank select / program change numbers with
4185     real instruments.
4186 senoner 542
4187 schoenebeck 974 The sampler allows to manage an arbitrary amount of MIDI instrument
4188     maps which define which instrument to load on which MIDI program
4189     change message.
4190 senoner 542
4191 schoenebeck 974 By default, that is when the sampler is launched, there is no map,
4192     thus the sampler will simply ignore all program change messages. The
4193     front-end has to explicitly create at least one map, add entries to
4194 schoenebeck 1006 the map and tell the respective sampler channel(s) which MIDI
4195     instrument map to use, so the sampler knows how to react on a given
4196 schoenebeck 1251
4197    
4198    
4199     Schoenebeck Expires December 24, 2007 [Page 75]
4200    
4201     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4202    
4203    
4204 schoenebeck 974 program change message on the respective sampler channel, that is by
4205     switching to the respectively defined engine type and loading the
4206     respective instrument. See command "SET CHANNEL MIDI_INSTRUMENT_MAP"
4207     (Section 6.4.24) for how to assign a MIDI instrument map to a sampler
4208     channel.
4209    
4210 schoenebeck 945 Also note per MIDI specification a bank select message does not cause
4211     to switch to another instrument. Instead when receiving a bank
4212     select message the bank value will be stored and a subsequent program
4213     change message (which may occur at any time) will finally cause the
4214     sampler to switch to the respective instrument as reflected by the
4215     current MIDI instrument map.
4216 senoner 542
4217 iliev 1162 6.7.1. Create a new MIDI instrument map
4218    
4219     The front-end can add a new MIDI instrument map by sending the
4220     following command:
4221    
4222 schoenebeck 974 ADD MIDI_INSTRUMENT_MAP [<name>]
4223    
4224     Where <name> is an optional argument allowing to assign a custom name
4225     to the new map. MIDI instrument Map names do not have to be unique.
4226    
4227     Possible Answers:
4228    
4229     "OK[<map>]" -
4230    
4231     in case a new MIDI instrument map could be added, where <map>
4232     reflects the unique ID of the newly created MIDI instrument map
4233    
4234     "ERR:<error-code>:<error-message>" -
4235    
4236     when a new map could not be created, which might never occur in
4237     practice
4238    
4239     Examples:
4240    
4241     C: "ADD MIDI_INSTRUMENT_MAP 'Standard Map'"
4242    
4243     S: "OK[0]"
4244    
4245     C: "ADD MIDI_INSTRUMENT_MAP 'Standard Drumkit'"
4246    
4247     S: "OK[1]"
4248    
4249 schoenebeck 1006 C: "ADD MIDI_INSTRUMENT_MAP"
4250 schoenebeck 974
4251 schoenebeck 1251
4252    
4253    
4254    
4255     Schoenebeck Expires December 24, 2007 [Page 76]
4256    
4257     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4258    
4259    
4260 schoenebeck 974 S: "OK[5]"
4261    
4262     6.7.2. Delete one particular or all MIDI instrument maps
4263    
4264     The front-end can delete a particular MIDI instrument map by sending
4265     the following command:
4266    
4267     REMOVE MIDI_INSTRUMENT_MAP <map>
4268    
4269     Where <map> reflects the unique ID of the map to delete as returned
4270     by the "LIST MIDI_INSTRUMENT_MAPS" (Section 6.7.4) command.
4271    
4272     The front-end can delete all MIDI instrument maps by sending the
4273     following command:
4274    
4275 iliev 1162 REMOVE MIDI_INSTRUMENT_MAP ALL
4276 iliev 1137
4277 iliev 1162 Possible Answers:
4278 iliev 1137
4279 schoenebeck 974 "OK" -
4280    
4281     in case the map(s) could be deleted
4282    
4283     "ERR:<error-code>:<error-message>" -
4284    
4285     when the given map does not exist
4286    
4287     Examples:
4288    
4289     C: "REMOVE MIDI_INSTRUMENT_MAP 0"
4290    
4291     S: "OK"
4292    
4293     C: "REMOVE MIDI_INSTRUMENT_MAP ALL"
4294    
4295     S: "OK"
4296    
4297     6.7.3. Get amount of existing MIDI instrument maps
4298    
4299     The front-end can retrieve the current amount of MIDI instrument maps
4300     by sending the following command:
4301    
4302     GET MIDI_INSTRUMENT_MAPS
4303    
4304     Possible Answers:
4305    
4306 schoenebeck 1251
4307    
4308    
4309    
4310    
4311     Schoenebeck Expires December 24, 2007 [Page 77]
4312    
4313     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4314    
4315    
4316 schoenebeck 974 The sampler will answer by returning the current number of MIDI
4317     instrument maps.
4318    
4319     Example:
4320    
4321     C: "GET MIDI_INSTRUMENT_MAPS"
4322    
4323     S: "2"
4324    
4325     6.7.4. Getting all created MIDI instrument maps
4326    
4327     The number of MIDI instrument maps can change on runtime. To get the
4328     current list of MIDI instrument maps, the front-end can send the
4329     following command:
4330    
4331 iliev 1162 LIST MIDI_INSTRUMENT_MAPS
4332 iliev 1137
4333 iliev 1162 Possible Answers:
4334 iliev 1137
4335 schoenebeck 974 The sampler will answer by returning a comma separated list with
4336     all MIDI instrument maps' numerical IDs.
4337    
4338     Example:
4339    
4340     C: "LIST MIDI_INSTRUMENT_MAPS"
4341    
4342     S: "0,1,5,12"
4343    
4344     6.7.5. Getting MIDI instrument map information
4345    
4346     The front-end can ask for the current settings of a MIDI instrument
4347     map by sending the following command:
4348    
4349     GET MIDI_INSTRUMENT_MAP INFO <map>
4350    
4351     Where <map> is the numerical ID of the map the front-end is
4352     interested in as returned by the "LIST MIDI_INSTRUMENT_MAPS"
4353     (Section 6.7.4) command.
4354    
4355     Possible Answers:
4356    
4357     LinuxSampler will answer by sending a <CRLF> separated list. Each
4358     answer line begins with the settings category name followed by a
4359     colon and then a space character <SP> and finally the info
4360     character string to that setting category. At the moment the
4361     following categories are defined:
4362    
4363    
4364    
4365 schoenebeck 1251
4366    
4367     Schoenebeck Expires December 24, 2007 [Page 78]
4368    
4369     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4370    
4371    
4372    
4373    
4374 schoenebeck 974 NAME -
4375    
4376     custom name of the given map, which does not have to be
4377     unique
4378    
4379 iliev 1137 DEFAULT -
4380    
4381     either true or false, defines whether this map is the
4382     default map
4383    
4384 schoenebeck 974 The mentioned fields above don't have to be in particular order.
4385    
4386     Example:
4387    
4388 iliev 1162 C: "GET MIDI_INSTRUMENT_MAP INFO 0"
4389 iliev 1137
4390 iliev 1162 S: "NAME: Standard Map"
4391 iliev 1137
4392     "DEFAULT: true"
4393    
4394 schoenebeck 974 "."
4395    
4396     6.7.6. Renaming a MIDI instrument map
4397    
4398     The front-end can alter the custom name of a MIDI instrument map by
4399     sending the following command:
4400    
4401     SET MIDI_INSTRUMENT_MAP NAME <map> <name>
4402    
4403     Where <map> is the numerical ID of the map and <name> the new custom
4404     name of the map, which does not have to be unique.
4405    
4406     Possible Answers:
4407    
4408     "OK" -
4409    
4410     on success
4411    
4412     "ERR:<error-code>:<error-message>" -
4413    
4414     in case the given map does not exist
4415    
4416     Example:
4417    
4418 schoenebeck 1251
4419    
4420    
4421    
4422    
4423     Schoenebeck Expires December 24, 2007 [Page 79]
4424    
4425     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4426    
4427    
4428 schoenebeck 974 C: "SET MIDI_INSTRUMENT_MAP NAME 0 'Foo instruments'"
4429    
4430     S: "OK"
4431    
4432     6.7.7. Create or replace a MIDI instrument map entry
4433    
4434     The front-end can create a new or replace an existing entry in a
4435 schoenebeck 945 sampler's MIDI instrument map by sending the following command:
4436 senoner 542
4437 schoenebeck 1048 MAP MIDI_INSTRUMENT [NON_MODAL] <map> <midi_bank> <midi_prog>
4438     <engine_name> <filename> <instrument_index> <volume_value>
4439     [<instr_load_mode>] [<name>]
4440 senoner 542
4441 schoenebeck 974 Where <map> is the numeric ID of the map to alter, <midi_bank> is an
4442     integer value between 0..16383 reflecting the MIDI bank select index,
4443     <midi_prog> an integer value between 0..127 reflecting the MIDI
4444     program change index, <engine_name> a sampler engine name as returned
4445     by the "LIST AVAILABLE_ENGINES" (Section 6.4.8) command (not
4446 iliev 1162 encapsulated into apostrophes), <filename> the name of the
4447 schoenebeck 1251 instrument's file to be deployed (encapsulated into apostrophes,
4448     supporting escape sequences as described in chapter "Character Set
4449     and Escape Sequences (Section 7.1)"), <instrument_index> the index
4450     (integer value) of the instrument within the given file,
4451     <volume_value> reflects the master volume of the instrument as
4452     optionally dotted number (where a value < 1.0 means attenuation and a
4453     value > 1.0 means amplification). This parameter easily allows to
4454     adjust the volume of all intruments within a custom instrument map
4455     without having to adjust their instrument files. The OPTIONAL
4456     <instr_load_mode> argument defines the life time of the instrument,
4457     that is when the instrument should be loaded, when freed and has
4458     exactly the following possibilities:
4459 senoner 542
4460 schoenebeck 945 "ON_DEMAND" -
4461 senoner 542
4462 schoenebeck 945 The instrument will be loaded when needed, that is when
4463     demanded by at least one sampler channel. It will immediately
4464     be freed from memory when not needed by any sampler channel
4465     anymore.
4466 senoner 542
4467 schoenebeck 945 "ON_DEMAND_HOLD" -
4468 senoner 542
4469 schoenebeck 945 The instrument will be loaded when needed, that is when
4470     demanded by at least one sampler channel. It will be kept in
4471     memory even when not needed by any sampler channel anymore.
4472     Instruments with this mode are only freed when the sampler is
4473     reset or all mapping entries with this mode (and respective
4474     instrument) are explicitly changed to "ON_DEMAND" and no
4475     sampler channel is using the instrument anymore.
4476 senoner 542
4477 schoenebeck 1251
4478    
4479     Schoenebeck Expires December 24, 2007 [Page 80]
4480    
4481     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4482    
4483    
4484 schoenebeck 945 "PERSISTENT" -
4485 senoner 542
4486 schoenebeck 1048 The instrument will immediately be loaded into memory when this
4487     mapping command is sent and the instrument is kept all the
4488     time. Instruments with this mode are only freed when the
4489     sampler is reset or all mapping entries with this mode (and
4490     respective instrument) are explicitly changed to "ON_DEMAND"
4491     and no sampler channel is using the instrument anymore.
4492 senoner 542
4493 schoenebeck 945 not supplied -
4494 schoenebeck 708
4495 schoenebeck 945 In case there is no <instr_load_mode> argument given, it will
4496     be up to the InstrumentManager to decide which mode to use.
4497     Usually it will use "ON_DEMAND" if an entry for the given
4498     instrument does not exist in the InstrumentManager's list yet,
4499     otherwise if an entry already exists, it will simply stick with
4500     the mode currently reflected by the already existing entry,
4501     that is it will not change the mode.
4502 schoenebeck 940
4503 iliev 1162 The <instr_load_mode> argument thus allows to define an appropriate
4504     strategy (low memory consumption vs. fast instrument switching) for
4505     each instrument individually. Note, the following restrictions apply
4506     to this argument: "ON_DEMAND_HOLD" and "PERSISTENT" have to be
4507 schoenebeck 945 supported by the respective sampler engine (which is technically the
4508     case when the engine provides an InstrumentManager for its format).
4509     If this is not the case the argument will automatically fall back to
4510     the default value "ON_DEMAND". Also the load mode of one instrument
4511     may automatically change the laod mode of other instrument(s), i.e.
4512     because the instruments are part of the same file and the engine does
4513     not allow a way to manage load modes for them individually. Due to
4514     this, in case the frontend shows the load modes of entries, the
4515     frontend should retrieve the actual mode by i.e. sending "GET
4516 schoenebeck 974 MIDI_INSTRUMENT INFO" (Section 6.7.11) command(s). Finally the
4517 schoenebeck 945 OPTIONAL <name> argument allows to set a custom name (encapsulated
4518     into apostrophes) for the mapping entry, useful for frontends for
4519     displaying an appropriate name for mapped instruments (using "GET
4520 schoenebeck 974 MIDI_INSTRUMENT INFO" (Section 6.7.11)).
4521 schoenebeck 940
4522 schoenebeck 1048 By default, "MAP MIDI_INSTRUMENT" commands block until the mapping is
4523     completely established in the sampler. The OPTIONAL "NON_MODAL"
4524     argument however causes the respective "MAP MIDI_INSTRUMENT" command
4525     to return immediately, that is to let the sampler establish the
4526     mapping in the background. So this argument might be especially
4527     useful for mappings with a "PERSISTENT" type, because these have to
4528     load the respective instruments immediately and might thus block for
4529     a very long time. It is recommended however to use the OPTIONAL
4530     "NON_MODAL" argument only if really necessary, because it has the
4531     following drawbacks: as "NON_MODAL" instructions return immediately,
4532 schoenebeck 1251
4533    
4534    
4535     Schoenebeck Expires December 24, 2007 [Page 81]
4536    
4537     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4538    
4539    
4540 schoenebeck 1048 they may not necessarily return an error i.e. when the given
4541     instrument file turns out to be corrupt, beside that subsequent
4542     commands in a LSCP instruction sequence might fail, because mandatory
4543     mappings are not yet completed.
4544 schoenebeck 940
4545 schoenebeck 945 Possible Answers:
4546 schoenebeck 940
4547 schoenebeck 945 "OK" -
4548 schoenebeck 940
4549 schoenebeck 945 usually
4550 schoenebeck 940
4551 schoenebeck 945 "ERR:<error-code>:<error-message>" -
4552    
4553 schoenebeck 974 when the given map or engine does not exist or a value is out
4554     of range
4555 schoenebeck 945
4556     Examples:
4557    
4558 iliev 1162 C: "MAP MIDI_INSTRUMENT 0 3 0 gig '/usr/share/Steinway D.gig' 0
4559     0.8 PERSISTENT"
4560    
4561     S: "OK"
4562    
4563 schoenebeck 974 C: "MAP MIDI_INSTRUMENT 0 4 50 gig '/home/john/foostrings.gig' 7
4564 schoenebeck 945 1.0"
4565    
4566     S: "OK"
4567    
4568     C: "MAP MIDI_INSTRUMENT 0 0 0 gig '/usr/share/piano.gig' 0 1.0
4569     'Normal Piano'"
4570    
4571     S: "OK"
4572    
4573 schoenebeck 974 C: "MAP MIDI_INSTRUMENT 0 1 0 gig '/usr/share/piano.gig' 0 0.25
4574 schoenebeck 945 'Silent Piano'"
4575    
4576     S: "OK"
4577    
4578 schoenebeck 1048 C: "MAP MIDI_INSTRUMENT NON_MODAL 1 8 120 gig '/home/joe/
4579     foodrums.gig' 0 1.0 PERSISTENT 'Foo Drumkit'"
4580 schoenebeck 945
4581     S: "OK"
4582    
4583 schoenebeck 974 6.7.8. Getting ammount of MIDI instrument map entries
4584 schoenebeck 945
4585 schoenebeck 974 The front-end can query the amount of currently existing entries in a
4586     MIDI instrument map by sending the following command:
4587 schoenebeck 945
4588 schoenebeck 1251
4589    
4590    
4591     Schoenebeck Expires December 24, 2007 [Page 82]
4592    
4593     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4594    
4595    
4596 schoenebeck 974 GET MIDI_INSTRUMENTS <map>
4597 schoenebeck 945
4598 schoenebeck 974 The front-end can query the amount of currently existing entries in
4599     all MIDI instrument maps by sending the following command:
4600    
4601     GET MIDI_INSTRUMENTS ALL
4602    
4603 schoenebeck 945 Possible Answers:
4604    
4605 schoenebeck 974 The sampler will answer by sending the current number of entries
4606     in the MIDI instrument map(s).
4607 schoenebeck 945
4608     Example:
4609    
4610 schoenebeck 974 C: "GET MIDI_INSTRUMENTS 0"
4611 schoenebeck 945
4612 schoenebeck 974 S: "234"
4613 schoenebeck 945
4614 iliev 1162 C: "GET MIDI_INSTRUMENTS ALL"
4615 iliev 1137
4616 iliev 1162 S: "954"
4617 iliev 1137
4618 schoenebeck 974 6.7.9. Getting indeces of all entries of a MIDI instrument map
4619 schoenebeck 945
4620 schoenebeck 974 The front-end can query a list of all currently existing entries in a
4621     certain MIDI instrument map by sending the following command:
4622    
4623     LIST MIDI_INSTRUMENTS <map>
4624    
4625     Where <map> is the numeric ID of the MIDI instrument map.
4626    
4627     The front-end can query a list of all currently existing entries of
4628     all MIDI instrument maps by sending the following command:
4629    
4630     LIST MIDI_INSTRUMENTS ALL
4631    
4632 schoenebeck 945 Possible Answers:
4633    
4634 schoenebeck 974 The sampler will answer by sending a comma separated list of map
4635     ID - MIDI bank - MIDI program triples, where each triple is
4636     encapsulated into curly braces. The list is returned in one
4637     single line. Each triple just reflects the key of the respective
4638     map entry, thus subsequent "GET MIDI_INSTRUMENT INFO"
4639     (Section 6.7.11) command(s) are necessary to retrieve detailed
4640     informations about each entry.
4641 schoenebeck 945
4642     Example:
4643    
4644 schoenebeck 1251
4645    
4646    
4647     Schoenebeck Expires December 24, 2007 [Page 83]
4648    
4649     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4650    
4651    
4652 schoenebeck 974 C: "LIST MIDI_INSTRUMENTS 0"
4653 schoenebeck 945
4654 schoenebeck 974 S: "{0,0,0},{0,0,1},{0,0,3},{0,1,4},{1,127,127}"
4655 schoenebeck 945
4656 schoenebeck 974 6.7.10. Remove an entry from the MIDI instrument map
4657 schoenebeck 945
4658 schoenebeck 974 The front-end can delete an entry from a MIDI instrument map by
4659 schoenebeck 945 sending the following command:
4660    
4661 schoenebeck 974 UNMAP MIDI_INSTRUMENT <map> <midi_bank> <midi_prog>
4662 schoenebeck 945
4663 schoenebeck 974 Where <map> is the numeric ID of the MIDI instrument map, <midi_bank>
4664     is an integer value between 0..16383 reflecting the MIDI bank value
4665     and <midi_prog> an integer value between 0..127 reflecting the MIDI
4666     program value of the map's entrie's key index triple.
4667 schoenebeck 945
4668     Possible Answers:
4669    
4670 iliev 1162 "OK" -
4671 iliev 1137
4672 iliev 1162 usually
4673 iliev 1137
4674 schoenebeck 945 "ERR:<error-code>:<error-message>" -
4675    
4676     when index out of bounds
4677    
4678     Example:
4679    
4680 schoenebeck 974 C: "UNMAP MIDI_INSTRUMENT 0 2 127"
4681 schoenebeck 945
4682     S: "OK"
4683    
4684 schoenebeck 974 6.7.11. Get current settings of MIDI instrument map entry
4685 schoenebeck 945
4686     The front-end can retrieve the current settings of a certain
4687     instrument map entry by sending the following command:
4688    
4689 schoenebeck 974 GET MIDI_INSTRUMENT INFO <map> <midi_bank> <midi_prog>
4690 schoenebeck 945
4691 schoenebeck 974 Where <map> is the numeric ID of the MIDI instrument map, <midi_bank>
4692     is an integer value between 0..16383 reflecting the MIDI bank value,
4693     <midi_bank> and <midi_prog> an integer value between 0..127
4694     reflecting the MIDI program value of the map's entrie's key index
4695     triple.
4696 schoenebeck 945
4697     Possible Answers:
4698    
4699 schoenebeck 1251
4700    
4701    
4702    
4703     Schoenebeck Expires December 24, 2007 [Page 84]
4704    
4705     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4706    
4707    
4708 schoenebeck 945 LinuxSampler will answer by sending a <CRLF> separated list. Each
4709     answer line begins with the information category name followed by
4710     a colon and then a space character <SP> and finally the info
4711     character string to that info category. At the moment the
4712     following categories are defined:
4713    
4714     "NAME" -
4715    
4716     Name for this MIDI instrument map entry (if defined). This
4717     name shall be used by frontends for displaying a name for this
4718     mapped instrument. It can be set and changed with the "MAP
4719 schoenebeck 974 MIDI_INSTRUMENT" (Section 6.7.7) command and does not have to
4720 schoenebeck 945 be unique.
4721    
4722     "ENGINE_NAME" -
4723    
4724     Name of the engine to be deployed for this instrument.
4725    
4726 iliev 1162 "INSTRUMENT_FILE" -
4727 iliev 1137
4728 iliev 1162 File name of the instrument.
4729 iliev 1137
4730 schoenebeck 945 "INSTRUMENT_NR" -
4731    
4732     Index of the instrument within the file.
4733    
4734     "INSTRUMENT_NAME" -
4735    
4736     Name of the loaded instrument as reflected by its file. In
4737     contrast to the "NAME" field, the "INSTRUMENT_NAME" field
4738     cannot be changed.
4739    
4740     "LOAD_MODE" -
4741    
4742     Life time of instrument (see "MAP MIDI_INSTRUMENT"
4743 schoenebeck 974 (Section 6.7.7) for details about this setting).
4744 schoenebeck 945
4745     "VOLUME" -
4746    
4747     master volume of the instrument as optionally dotted number
4748     (where a value < 1.0 means attenuation and a value > 1.0 means
4749     amplification)
4750    
4751     The mentioned fields above don't have to be in particular order.
4752    
4753     Example:
4754    
4755 schoenebeck 1251
4756    
4757    
4758    
4759     Schoenebeck Expires December 24, 2007 [Page 85]
4760    
4761     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4762    
4763    
4764 schoenebeck 974 C: "GET MIDI_INSTRUMENT INFO 1 45 120"
4765 schoenebeck 945
4766     S: "NAME: Drums for Foo Song"
4767    
4768     "ENGINE_NAME: GigEngine"
4769    
4770     "INSTRUMENT_FILE: /usr/share/joesdrumkit.gig"
4771    
4772     "INSTRUMENT_NR: 0"
4773    
4774     "INSTRUMENT_NAME: Joe's Drumkit"
4775    
4776     "LOAD_MODE: PERSISTENT"
4777    
4778     "VOLUME: 1.0"
4779    
4780     "."
4781    
4782 iliev 1162 6.7.12. Clear MIDI instrument map
4783    
4784     The front-end can clear a whole MIDI instrument map, that is delete
4785     all its entries by sending the following command:
4786    
4787 schoenebeck 974 CLEAR MIDI_INSTRUMENTS <map>
4788 schoenebeck 945
4789 schoenebeck 974 Where <map> is the numeric ID of the map to clear.
4790 schoenebeck 945
4791 schoenebeck 974 The front-end can clear all MIDI instrument maps, that is delete all
4792     entries of all maps by sending the following command:
4793 schoenebeck 945
4794 schoenebeck 974 CLEAR MIDI_INSTRUMENTS ALL
4795 schoenebeck 945
4796 schoenebeck 974 The command "CLEAR MIDI_INSTRUMENTS ALL" does not delete the maps,
4797     only their entries, thus the map's settings like custom name will be
4798     preservevd.
4799 schoenebeck 945
4800 schoenebeck 974 Possible Answers:
4801 schoenebeck 945
4802 schoenebeck 974 "OK" -
4803 schoenebeck 945
4804 schoenebeck 974 always
4805 schoenebeck 945
4806 schoenebeck 974 Examples:
4807 schoenebeck 945
4808 schoenebeck 974 C: "CLEAR MIDI_INSTRUMENTS 0"
4809 schoenebeck 945
4810 schoenebeck 974 S: "OK"
4811 schoenebeck 945
4812 schoenebeck 1251
4813    
4814    
4815     Schoenebeck Expires December 24, 2007 [Page 86]
4816    
4817     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4818    
4819    
4820 schoenebeck 974 C: "CLEAR MIDI_INSTRUMENTS ALL"
4821 schoenebeck 945
4822 schoenebeck 974 S: "OK"
4823 schoenebeck 945
4824 iliev 1162 6.8. Managing Instruments Database
4825 schoenebeck 945
4826 iliev 1162 The following commands describe how to use and manage the instruments
4827     database.
4828 schoenebeck 945
4829 iliev 1162 6.8.1. Creating a new instrument directory
4830 schoenebeck 945
4831 iliev 1162 The front-end can add a new instrument directory to the instruments
4832     database by sending the following command:
4833 schoenebeck 945
4834 iliev 1162 ADD DB_INSTRUMENT_DIRECTORY <dir>
4835 schoenebeck 945
4836 iliev 1162 Where <dir> is the absolute path name of the directory to be created
4837     (encapsulated into apostrophes).
4838 iliev 1137
4839 iliev 1162 Possible Answers:
4840 iliev 1137
4841 iliev 1162 "OK" -
4842 iliev 1137
4843 iliev 1162 on success
4844 iliev 1137
4845 iliev 1162 "ERR:<error-code>:<error-message>" -
4846 iliev 1137
4847 iliev 1162 when the directory could not be created, which can happen if
4848     the directory already exists or the name contains not allowed
4849     symbols
4850 iliev 1137
4851 iliev 1162 Examples:
4852 iliev 1137
4853 iliev 1162 C: "ADD DB_INSTRUMENT_DIRECTORY '/Piano Collection'"
4854 iliev 1137
4855 iliev 1162 S: "OK"
4856 iliev 1137
4857 iliev 1162 6.8.2. Deleting an instrument directory
4858 iliev 1137
4859 iliev 1162 The front-end can delete a particular instrument directory from the
4860     instruments database by sending the following command:
4861 iliev 1137
4862 iliev 1162 REMOVE DB_INSTRUMENT_DIRECTORY [FORCE] <dir>
4863 iliev 1137
4864 iliev 1162 Where <dir> is the absolute path name of the directory to delete.
4865     The optional FORCE argument can be used to force the deletion of a
4866     non-empty directory and all its content.
4867 iliev 1137
4868 schoenebeck 1251
4869    
4870    
4871     Schoenebeck Expires December 24, 2007 [Page 87]
4872    
4873     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4874    
4875    
4876 iliev 1162 Possible Answers:
4877    
4878     "OK" -
4879    
4880     if the directory is deleted successfully
4881    
4882     "ERR:<error-code>:<error-message>" -
4883    
4884     if the given directory does not exist, or if trying to delete a
4885     non-empty directory, without using the FORCE argument.
4886    
4887     Examples:
4888    
4889     C: "REMOVE DB_INSTRUMENT_DIRECTORY FORCE '/Piano Collection'"
4890    
4891     S: "OK"
4892    
4893     6.8.3. Getting amount of instrument directories
4894    
4895     The front-end can retrieve the current amount of directories in a
4896     specific directory by sending the following command:
4897    
4898 iliev 1189 GET DB_INSTRUMENT_DIRECTORIES [RECURSIVE] <dir>
4899 iliev 1162
4900     Where <dir> should be replaced by the absolute path name of the
4901 iliev 1189 directory. If RECURSIVE is specified, the number of all directories,
4902     including those located in subdirectories of the specified directory,
4903     will be returned.
4904 iliev 1162
4905     Possible Answers:
4906    
4907     The current number of instrument directories in the specified
4908     directory.
4909    
4910     "ERR:<error-code>:<error-message>" -
4911    
4912     if the given directory does not exist.
4913    
4914     Example:
4915    
4916     C: "GET DB_INSTRUMENT_DIRECTORIES '/'"
4917    
4918     S: "2"
4919    
4920 schoenebeck 1251
4921    
4922    
4923    
4924    
4925    
4926    
4927     Schoenebeck Expires December 24, 2007 [Page 88]
4928    
4929     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4930    
4931    
4932 iliev 1162 6.8.4. Listing all directories in specific directory
4933    
4934     The front-end can retrieve the current list of directories in
4935     specific directory by sending the following command:
4936    
4937 iliev 1189 LIST DB_INSTRUMENT_DIRECTORIES [RECURSIVE] <dir>
4938 iliev 1162
4939     Where <dir> should be replaced by the absolute path name of the
4940 iliev 1189 directory. If RECURSIVE is specified, the absolute path names of all
4941     directories, including those located in subdirectories of the
4942     specified directory, will be returned.
4943 iliev 1162
4944     Possible Answers:
4945    
4946     A comma separated list of all instrument directories (encapsulated
4947     into apostrophes) in the specified directory.
4948    
4949     "ERR:<error-code>:<error-message>" -
4950    
4951     if the given directory does not exist.
4952    
4953 iliev 1189 Example:
4954 iliev 1162
4955     C: "LIST DB_INSTRUMENT_DIRECTORIES '/'"
4956    
4957     S: "'Piano Collection','Percussion Collection'"
4958    
4959 iliev 1189 C: "LIST DB_INSTRUMENT_DIRECTORIES RECURSIVE '/'"
4960    
4961     S: "'/Piano Collection','/Piano Collection/Acoustic','/Piano
4962     Collection/Acoustic/New','/Percussion Collection'"
4963    
4964 iliev 1162 6.8.5. Getting instrument directory information
4965    
4966     The front-end can ask for the current settings of an instrument
4967     directory by sending the following command:
4968    
4969     GET DB_INSTRUMENT_DIRECTORY INFO <dir>
4970    
4971     Where <dir> should be replaced by the absolute path name of the
4972     directory the front-end is interested in.
4973    
4974     Possible Answers:
4975    
4976     LinuxSampler will answer by sending a <CRLF> separated list. Each
4977     answer line begins with the settings category name followed by a
4978     colon and then a space character <SP> and finally the info
4979     character string to that setting category. At the moment the
4980 schoenebeck 1251
4981    
4982    
4983     Schoenebeck Expires December 24, 2007 [Page 89]
4984    
4985     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
4986    
4987    
4988 iliev 1162 following categories are defined:
4989    
4990    
4991    
4992     DESCRIPTION -
4993    
4994     A brief description of the directory content
4995    
4996     CREATED -
4997    
4998     The creation date and time of the directory, represented in
4999     "YYYY-MM-DD HH:MM:SS" format
5000    
5001     MODIFIED -
5002    
5003     The date and time of the last modification of the directory,
5004     represented in "YYYY-MM-DD HH:MM:SS" format
5005    
5006     The mentioned fields above don't have to be in particular order.
5007    
5008     Example:
5009    
5010 iliev 1189 C: "GET DB_INSTRUMENT_DIRECTORY INFO '/Piano Collection'"
5011 iliev 1162
5012 iliev 1189 S: "DESCRIPTION: Piano collection of instruments in GigaSampler
5013     format."
5014 iliev 1162
5015     "CREATED: 2007-02-05 10:23:12"
5016    
5017     "MODIFIED: 2007-04-07 12:50:21"
5018    
5019     "."
5020    
5021     6.8.6. Renaming an instrument directory
5022    
5023     The front-end can alter the name of a specific instrument directory
5024     by sending the following command:
5025    
5026     SET DB_INSTRUMENT_DIRECTORY NAME <dir> <name>
5027    
5028     Where <dir> is the absolute path name of the directory and <name> is
5029     the new name for that directory.
5030    
5031     Possible Answers:
5032    
5033     "OK" -
5034    
5035 schoenebeck 1251
5036    
5037    
5038    
5039     Schoenebeck Expires December 24, 2007 [Page 90]
5040    
5041     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5042    
5043    
5044 iliev 1162 on success
5045    
5046     "ERR:<error-code>:<error-message>" -
5047    
5048     in case the given directory does not exists, or if a directory
5049     with name equal to the new name already exists.
5050    
5051     Example:
5052    
5053     C: "SET DB_INSTRUMENT_DIRECTORY NAME '/Piano Collection/Acustic'
5054     'Acoustic'"
5055    
5056     S: "OK"
5057    
5058     6.8.7. Moving an instrument directory
5059    
5060     The front-end can move a specific instrument directory by sending the
5061     following command:
5062    
5063     MOVE DB_INSTRUMENT_DIRECTORY <dir> <dst>
5064    
5065     Where <dir> is the absolute path name of the directory to move and
5066     <dst> is the location where the directory will be moved to.
5067    
5068     Possible Answers:
5069    
5070 iliev 1189 "OK" -
5071 iliev 1162
5072 iliev 1189 on success
5073 iliev 1162
5074 iliev 1189 "ERR:<error-code>:<error-message>" -
5075 iliev 1162
5076 iliev 1189 in case a given directory does not exists, or if a directory
5077     with name equal to the name of the specified directory already
5078     exists in the destination directory. Error is also thrown when
5079     trying to move a directory to a subdirectory of itself.
5080 iliev 1162
5081 iliev 1189 Example:
5082 iliev 1162
5083 iliev 1189 C: "MOVE DB_INSTRUMENT_DIRECTORY '/Acoustic' '/Piano Collection/
5084     Acoustic'"
5085 iliev 1162
5086 iliev 1189 S: "OK"
5087 iliev 1162
5088 schoenebeck 1251
5089    
5090    
5091    
5092    
5093    
5094    
5095     Schoenebeck Expires December 24, 2007 [Page 91]
5096    
5097     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5098    
5099    
5100 iliev 1189 6.8.8. Copying instrument directories
5101    
5102     The front-end can copy a specific instrument directory by sending the
5103     following command:
5104    
5105     COPY DB_INSTRUMENT_DIRECTORY <dir> <dst>
5106    
5107     Where <dir> is the absolute path name of the directory to copy and
5108     <dst> is the location where the directory will be copied to.
5109    
5110     Possible Answers:
5111    
5112 iliev 1162 "OK" -
5113    
5114     on success
5115    
5116     "ERR:<error-code>:<error-message>" -
5117    
5118     in case a given directory does not exists, or if a directory
5119     with name equal to the name of the specified directory already
5120     exists in the destination directory. Error is also thrown when
5121 iliev 1189 trying to copy a directory to a subdirectory of itself.
5122 iliev 1162
5123     Example:
5124    
5125 iliev 1189 C: "COPY DB_INSTRUMENT_DIRECTORY '/Piano Collection/Acoustic'
5126     '/Acoustic/Pianos'"
5127 iliev 1162
5128     S: "OK"
5129    
5130 iliev 1189 6.8.9. Changing the description of directory
5131 iliev 1162
5132     The front-end can alter the description of a specific instrument
5133     directory by sending the following command:
5134    
5135     SET DB_INSTRUMENT_DIRECTORY DESCRIPTION <dir> <desc>
5136    
5137     Where <dir> is the absolute path name of the directory and <desc> is
5138     the new description for the directory.
5139    
5140     Possible Answers:
5141    
5142     "OK" -
5143    
5144     on success
5145    
5146 schoenebeck 1251
5147    
5148    
5149    
5150    
5151     Schoenebeck Expires December 24, 2007 [Page 92]
5152    
5153     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5154    
5155    
5156 iliev 1162 "ERR:<error-code>:<error-message>" -
5157    
5158     in case the given directory does not exists.
5159    
5160     Example:
5161    
5162     C: "SET DB_INSTRUMENT_DIRECTORY DESCRIPTION '/Piano Collection' 'A
5163     collection of piano instruments in various format.'"
5164    
5165     S: "OK"
5166    
5167 iliev 1189 6.8.10. Finding directories
5168 iliev 1162
5169 iliev 1189 The front-end can search for directories in specific directory by
5170     sending the following command:
5171 iliev 1162
5172 iliev 1189 FIND DB_INSTRUMENT_DIRECTORIES [NON_RECURSIVE] <dir> <criteria-
5173     list>
5174 iliev 1162
5175 iliev 1189 Where <dir> should be replaced by the absolute path name of the
5176     directory to search in. If NON_RECURSIVE is specified, the
5177     directories located in subdirectories of the specified directory will
5178     not be searched. <criteria-list> is a list of search criterias in
5179     form of "key1=val1 key2=val2 ...". The following criterias are
5180     allowed:
5181 iliev 1162
5182 iliev 1189 NAME='<search-string>'
5183 iliev 1162
5184 iliev 1189 Restricts the search to directories, which names satisfy the
5185     supplied search string.
5186 iliev 1162
5187 iliev 1189 CREATED='[<date-after>]..[<date-before>]'
5188 iliev 1162
5189 iliev 1189 Restricts the search to directories, which creation date satisfies
5190     the specified period, where <date-after> and <date-before> are in
5191     "YYYY-MM-DD HH:MM:SS" format. If <date-after> is omitted the
5192     search is restricted to directories created before <date-before>.
5193     If <date-before> is omitted, the search is restricted to
5194     directories created after <date-after>.
5195    
5196     MODIFIED='[<date-after>]..[<date-before>]'
5197    
5198     Restricts the search to directories, which date of last
5199     modification satisfies the specified period, where <date-after>
5200     and <date-before> are in "YYYY-MM-DD HH:MM:SS" format. If <date-
5201     after> is omitted the search is restricted to directories, which
5202     are last modified before <date-before>. If <date-before> is
5203     omitted, the search is restricted to directories, which are last
5204 schoenebeck 1251
5205    
5206    
5207     Schoenebeck Expires December 24, 2007 [Page 93]
5208    
5209     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5210    
5211    
5212 iliev 1189 modified after <date-after>.
5213    
5214     DESCRIPTION='<search-string>'
5215    
5216     Restricts the search to directories with description that
5217     satisfies the supplied search string.
5218    
5219     Where <search-string> is either a regular expression, or a word list
5220     separated with spaces for OR search and with '+' for AND search.
5221    
5222     Possible Answers:
5223    
5224     A comma separated list with the absolute path names (encapsulated
5225     into apostrophes) of all directories in the specified directory
5226     that satisfy the supplied search criterias.
5227    
5228     "ERR:<error-code>:<error-message>" -
5229    
5230     if the given directory does not exist.
5231    
5232     Example:
5233    
5234     C: "FIND DB_INSTRUMENT_DIRECTORIES '/' NAME='Piano'"
5235    
5236     S: "'/Piano Collection'"
5237    
5238     C: "FIND DB_INSTRUMENT_DIRECTORIES '/' CREATED='..2007-04-01 09:
5239     30:13'"
5240    
5241     S: "'/Piano Collection','/Percussions'"
5242    
5243     6.8.11. Adding instruments to the instruments database
5244    
5245 iliev 1162 The front-end can add one or more instruments to the instruments
5246     database by sending the following command:
5247    
5248 iliev 1201 ADD DB_INSTRUMENTS [NON_MODAL] [<mode>] <db_dir> <file_path>
5249     [<instr_index>]
5250 iliev 1162
5251     Where <db_dir> is the absolute path name of a directory (encapsulated
5252     into apostrophes) in the instruments database in which only the new
5253     instruments (that are not already in the database) will be added,
5254     <file_path> is the absolute path name of a file or directory in the
5255     file system (encapsulated into apostrophes). In case an instrument
5256     file is supplied, only the instruments in the specified file will be
5257     added to the instruments database. If the optional <instr_index>
5258     (the index of the instrument within the given file) is supplied too,
5259     then only the specified instrument will be added. In case a
5260 schoenebeck 1251
5261    
5262    
5263     Schoenebeck Expires December 24, 2007 [Page 94]
5264    
5265     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5266    
5267    
5268 iliev 1162 directory is supplied, the instruments in that directory will be
5269     added. The OPTIONAL <mode> argument is only applied when a directory
5270     is provided as <file_path> and specifies how the scanning will be
5271     done and has exactly the following possibilities:
5272    
5273 iliev 1201 "RECURSIVE" -
5274    
5275     All instruments will be processed, including those in the
5276     subdirectories, and the respective subdirectory tree structure
5277     will be recreated in the instruments database
5278    
5279 iliev 1162 "NON_RECURSIVE" -
5280    
5281     Only the instruments in the specified directory will be added,
5282     the instruments in the subdirectories will not be processed.
5283    
5284     "FLAT" -
5285    
5286     All instruments will be processed, including those in the
5287     subdirectories, but the respective subdirectory structure will
5288     not be recreated in the instruments database. All instruments
5289     will be added directly in the specified database directory.
5290    
5291 iliev 1201 The difference between regular and NON_MODAL versions of the command
5292     is that the regular command returns when the scanning is finished
5293     while NON_MODAL version returns immediately and a background process
5294     is launched. The GET DB_INSTRUMENTS_JOB INFO (Section 6.8.21)
5295     command can be used to monitor the scanning progress.
5296 iliev 1162
5297     Possible Answers:
5298    
5299 iliev 1201 "OK" -
5300 iliev 1162
5301 iliev 1201 on success when NON_MODAL is not supplied
5302 iliev 1162
5303 iliev 1201 "OK[<job-id>]" -
5304 iliev 1162
5305 iliev 1201 on success when NON_MODAL is supplied, where <job-id> is a
5306     numerical ID used to obtain status information about the job
5307     progress. See GET DB_INSTRUMENTS_JOB INFO (Section 6.8.21)
5308 iliev 1162
5309     "ERR:<error-code>:<error-message>" -
5310    
5311     if an invalid path is specified.
5312    
5313     Examples:
5314    
5315 schoenebeck 1251
5316    
5317    
5318    
5319     Schoenebeck Expires December 24, 2007 [Page 95]
5320    
5321     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5322    
5323    
5324 iliev 1162 C: "ADD DB_INSTRUMENTS '/Piano Collection' '/home/me/gigs/PMI
5325     Bosendorfer 290.gig' 0"
5326    
5327     S: "OK"
5328    
5329 iliev 1189 6.8.12. Removing an instrument
5330 iliev 1162
5331     The front-end can remove a particular instrument from the instruments
5332     database by sending the following command:
5333    
5334     REMOVE DB_INSTRUMENT <instr_path>
5335    
5336     Where <instr_path> is the absolute path name (in the instruments
5337     database) of the instrument to remove.
5338    
5339     Possible Answers:
5340    
5341     "OK" -
5342    
5343     if the instrument is removed successfully
5344    
5345     "ERR:<error-code>:<error-message>" -
5346    
5347     if the given path does not exist or is a directory.
5348    
5349     Examples:
5350    
5351     C: "REMOVE DB_INSTRUMENT '/Piano Collection/Bosendorfer 290'"
5352    
5353     S: "OK"
5354    
5355 iliev 1189 6.8.13. Getting amount of instruments
5356 iliev 1162
5357     The front-end can retrieve the current amount of instruments in a
5358     specific directory by sending the following command:
5359    
5360 iliev 1189 GET DB_INSTRUMENTS [RECURSIVE] <dir>
5361 iliev 1162
5362     Where <dir> should be replaced by the absolute path name of the
5363 iliev 1189 directory. If RECURSIVE is specified, the number of all instruments,
5364     including those located in subdirectories of the specified directory,
5365     will be returned.
5366 iliev 1162
5367 iliev 1189 Possible Answers:
5368    
5369 iliev 1162 The current number of instruments in the specified directory.
5370    
5371 schoenebeck 1251
5372    
5373    
5374    
5375     Schoenebeck Expires December 24, 2007 [Page 96]
5376    
5377     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5378    
5379    
5380 iliev 1162 "ERR:<error-code>:<error-message>" -
5381    
5382     if the given directory does not exist.
5383    
5384     Example:
5385    
5386     C: "GET DB_INSTRUMENTS '/Piano Collection'"
5387    
5388     S: "2"
5389    
5390 iliev 1189 6.8.14. Listing all instruments in specific directory
5391 iliev 1162
5392     The front-end can retrieve the current list of instruments in
5393     specific directory by sending the following command:
5394    
5395 iliev 1189 LIST DB_INSTRUMENTS [RECURSIVE] <dir>
5396 iliev 1162
5397     Where <dir> should be replaced by the absolute path name of the
5398 iliev 1189 directory. If RECURSIVE is specified, the absolute path names of all
5399     instruments, including those located in subdirectories of the
5400     specified directory, will be returned.
5401 iliev 1162
5402     Possible Answers:
5403    
5404     A comma separated list of all instruments (encapsulated into
5405     apostrophes) in the specified directory.
5406    
5407     "ERR:<error-code>:<error-message>" -
5408    
5409     if the given directory does not exist.
5410    
5411     Example:
5412    
5413     C: "LIST DB_INSTRUMENTS '/Piano Collection'"
5414    
5415     S: "'Bosendorfer 290','Steinway D'"
5416    
5417 iliev 1189 C: "LIST DB_INSTRUMENTS RECURSIVE '/Piano Collection'"
5418 iliev 1162
5419 iliev 1189 S: "'/Piano Collection/Bosendorfer 290','/Piano Collection/
5420     Steinway D','/Piano Collection/Lite/Free Piano'"
5421    
5422     6.8.15. Getting instrument information
5423    
5424 iliev 1162 The front-end can ask for the current settings of an instrument by
5425     sending the following command:
5426    
5427 schoenebeck 1251
5428    
5429    
5430    
5431     Schoenebeck Expires December 24, 2007 [Page 97]
5432    
5433     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5434    
5435    
5436 iliev 1162 GET DB_INSTRUMENT INFO <instr_path>
5437    
5438     Where <instr_path> should be replaced by the absolute path name of
5439     the instrument the front-end is interested in.
5440    
5441     Possible Answers:
5442    
5443     LinuxSampler will answer by sending a <CRLF> separated list. Each
5444     answer line begins with the settings category name followed by a
5445     colon and then a space character <SP> and finally the info
5446     character string to that setting category. At the moment the
5447     following categories are defined:
5448    
5449    
5450    
5451     INSTRUMENT_FILE -
5452    
5453     File name of the instrument.
5454    
5455     INSTRUMENT_NR -
5456    
5457     Index of the instrument within the file.
5458    
5459     FORMAT_FAMILY -
5460    
5461     The format family of the instrument.
5462    
5463     FORMAT_VERSION -
5464    
5465     The format version of the instrument.
5466    
5467     SIZE -
5468    
5469 iliev 1201 The size of the instrument in bytes.
5470 iliev 1189
5471 iliev 1201 CREATED -
5472 iliev 1189
5473 iliev 1201 The date and time when the instrument is added in the
5474     instruments database, represented in "YYYY-MM-DD HH:MM:SS"
5475     format
5476 iliev 1189
5477 iliev 1162 MODIFIED -
5478    
5479     The date and time of the last modification of the
5480     instrument's database settings, represented in "YYYY-MM-DD
5481     HH:MM:SS" format
5482    
5483 schoenebeck 1251
5484    
5485    
5486    
5487     Schoenebeck Expires December 24, 2007 [Page 98]
5488    
5489     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5490    
5491    
5492 iliev 1162 DESCRIPTION -
5493    
5494     A brief description of the instrument
5495    
5496     IS_DRUM -
5497    
5498     either true or false, determines whether the instrument is a
5499     drumkit or a chromatic instrument
5500    
5501     PRODUCT -
5502    
5503     The product title of the instrument
5504    
5505     ARTISTS -
5506    
5507     Lists the artist names
5508    
5509     KEYWORDS -
5510    
5511     Provides a list of keywords that refer to the instrument.
5512     Keywords are separated with semicolon and blank.
5513    
5514     The mentioned fields above don't have to be in particular order.
5515    
5516     Example:
5517    
5518     C: "GET DB_INSTRUMENT INFO '/Piano Collection/Bosendorfer 290'"
5519    
5520     S: "INSTRUMENT_FILE: /home/me/gigs/Bosendorfer 290.gig"
5521    
5522     "INSTRUMENT_NR: 0"
5523    
5524     "FORMAT_FAMILY: GIG"
5525    
5526 iliev 1201 "FORMAT_VERSION: 2"
5527 iliev 1189
5528 iliev 1201 "SIZE: 2050871870"
5529 iliev 1189
5530 iliev 1201 "CREATED: 2007-02-05 10:23:12"
5531 iliev 1189
5532 iliev 1201 "MODIFIED: 2007-04-07 12:50:21"
5533 iliev 1189
5534 iliev 1162 "DESCRIPTION: "
5535    
5536     "IS_DRUM: false"
5537    
5538     "PRODUCT: GRANDIOSO Bosendorfer 290"
5539    
5540 schoenebeck 1251
5541    
5542    
5543     Schoenebeck Expires December 24, 2007 [Page 99]
5544    
5545     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5546    
5547    
5548 iliev 1162 "ARTISTS: Post Musical Instruments"
5549    
5550     "KEYWORDS: Bosendorfer"
5551    
5552     "."
5553    
5554 iliev 1189 6.8.16. Renaming an instrument
5555 iliev 1162
5556     The front-end can alter the name of a specific instrument by sending
5557     the following command:
5558    
5559     SET DB_INSTRUMENT NAME <instr> <name>
5560    
5561     Where <instr> is the absolute path name of the instrument and <name>
5562     is the new name for that instrument.
5563    
5564     Possible Answers:
5565    
5566     "OK" -
5567    
5568     on success
5569    
5570     "ERR:<error-code>:<error-message>" -
5571    
5572     in case the given instrument does not exists, or if an
5573     instrument with name equal to the new name already exists.
5574    
5575     Example:
5576    
5577     C: "SET DB_INSTRUMENT NAME '/Piano Collection/Bosendorfer'
5578     'Bosendorfer 290'"
5579    
5580     S: "OK"
5581    
5582 iliev 1189 6.8.17. Moving an instrument
5583 iliev 1162
5584     The front-end can move a specific instrument to another directory by
5585     sending the following command:
5586    
5587     MOVE DB_INSTRUMENT <instr> <dst>
5588    
5589     Where <instr> is the absolute path name of the instrument to move and
5590     <dst> is the directory where the instrument will be moved to.
5591    
5592     Possible Answers:
5593    
5594 schoenebeck 1251
5595    
5596    
5597    
5598    
5599     Schoenebeck Expires December 24, 2007 [Page 100]
5600    
5601     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5602    
5603    
5604 iliev 1162 "OK" -
5605    
5606     on success
5607    
5608     "ERR:<error-code>:<error-message>" -
5609    
5610     in case the given instrument does not exists, or if an
5611     instrument with name equal to the name of the specified
5612 iliev 1189 instrument already exists in the destination directory.
5613 iliev 1162
5614 iliev 1189 Example:
5615 iliev 1162
5616 iliev 1189 C: "MOVE DB_INSTRUMENT '/Piano Collection/Bosendorfer 290' '/Piano
5617     Collection/Acoustic'"
5618 iliev 1162
5619 iliev 1189 S: "OK"
5620 iliev 1162
5621 iliev 1189 6.8.18. Copying instruments
5622 iliev 1162
5623 iliev 1189 The front-end can copy a specific instrument to another directory by
5624     sending the following command:
5625    
5626     COPY DB_INSTRUMENT <instr> <dst>
5627    
5628     Where <instr> is the absolute path name of the instrument to copy and
5629     <dst> is the directory where the instrument will be copied to.
5630    
5631     Possible Answers:
5632    
5633     "OK" -
5634    
5635     on success
5636    
5637     "ERR:<error-code>:<error-message>" -
5638    
5639     in case the given instrument does not exists, or if an
5640     instrument with name equal to the name of the specified
5641 iliev 1162 instrument already exists in the destination directory.
5642    
5643     Example:
5644    
5645 iliev 1189 C: "COPY DB_INSTRUMENT '/Piano Collection/Bosendorfer 290'
5646     '/Acoustic/Pianos/'"
5647 iliev 1162
5648     S: "OK"
5649    
5650 schoenebeck 1251
5651    
5652    
5653    
5654    
5655     Schoenebeck Expires December 24, 2007 [Page 101]
5656    
5657     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5658    
5659    
5660 iliev 1189 6.8.19. Changing the description of instrument
5661 iliev 1162
5662     The front-end can alter the description of a specific instrument by
5663     sending the following command:
5664    
5665     SET DB_INSTRUMENT DESCRIPTION <instr> <desc>
5666    
5667     Where <instr> is the absolute path name of the instrument and <desc>
5668     is the new description for the instrument.
5669    
5670     Possible Answers:
5671    
5672     "OK" -
5673    
5674     on success
5675    
5676     "ERR:<error-code>:<error-message>" -
5677    
5678     in case the given instrument does not exists.
5679    
5680     Example:
5681    
5682     C: "SET DB_INSTRUMENT DESCRIPTION '/Piano Collection/Acoustic/
5683     Bosendorfer 290' 'No comment :)'"
5684    
5685     S: "OK"
5686    
5687 iliev 1189 6.8.20. Finding instruments
5688 iliev 1162
5689 iliev 1189 The front-end can search for instruments in specific directory by
5690     sending the following command:
5691 iliev 1162
5692 iliev 1189 FIND DB_INSTRUMENTS [NON_RECURSIVE] <dir> <criteria-list>
5693 iliev 1162
5694 iliev 1189 Where <dir> should be replaced by the absolute path name of the
5695     directory to search in. If NON_RECURSIVE is specified, the
5696     directories located in subdirectories of the specified directory will
5697     not be searched. <criteria-list> is a list of search criterias in
5698     form of "key1=val1 key2=val2 ...". The following criterias are
5699     allowed:
5700 iliev 1162
5701 iliev 1189 NAME='<search-string>'
5702 iliev 1162
5703 iliev 1189 Restricts the search to instruments, which names satisfy the
5704     supplied search string.
5705 iliev 1162
5706 iliev 1189 SIZE=[<min>]..[<max>]
5707 iliev 1162
5708 schoenebeck 1251
5709    
5710    
5711     Schoenebeck Expires December 24, 2007 [Page 102]
5712    
5713     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5714    
5715    
5716 iliev 1189 Restricts the search to instruments, which size is in the
5717     specified range. If <min> is omitted, the search results are
5718     restricted to instruments with size less then or equal to <max>.
5719     If <max> is omitted, the search is restricted to instruments with
5720     size greater then or equal to <min>.
5721 iliev 1162
5722 iliev 1189 CREATED='[<date-after>]..[<date-before>]'
5723 iliev 1162
5724 iliev 1189 Restricts the search to instruments, which creation date satisfies
5725     the specified period, where <date-after> and <date-before> are in
5726     "YYYY-MM-DD HH:MM:SS" format. If <date-after> is omitted the
5727     search is restricted to instruments created before <date-before>.
5728     If <date-before> is omitted, the search is restricted to
5729     instruments created after <date-after>.
5730 iliev 1162
5731 iliev 1189 MODIFIED='[<date-after>]..[<date-before>]'
5732    
5733     Restricts the search to instruments, which date of last
5734     modification satisfies the specified period, where <date-after>
5735     and <date-before> are in "YYYY-MM-DD HH:MM:SS" format. If <date-
5736     after> is omitted the search is restricted to instruments, which
5737     are last modified before <date-before>. If <date-before> is
5738     omitted, the search is restricted to instruments, which are last
5739     modified after <date-after>.
5740    
5741     DESCRIPTION='<search-string>'
5742    
5743     Restricts the search to instruments with description that
5744     satisfies the supplied search string.
5745    
5746     PRODUCT='<search-string>'
5747    
5748     Restricts the search to instruments with product info that
5749     satisfies the supplied search string.
5750    
5751     ARTISTS='<search-string>'
5752    
5753     Restricts the search to instruments with artists info that
5754     satisfies the supplied search string.
5755    
5756     KEYWORDS='<search-string>'
5757    
5758     Restricts the search to instruments with keyword list that
5759     satisfies the supplied search string.
5760    
5761     IS_DRUM=true | false
5762    
5763 schoenebeck 1251
5764    
5765    
5766    
5767     Schoenebeck Expires December 24, 2007 [Page 103]
5768    
5769     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5770    
5771    
5772 iliev 1189 Either true or false. Restricts the search to drum kits or
5773     chromatic instruments.
5774    
5775     FORMAT_FAMILIES='<format-list>'
5776    
5777     Restricts the search to instruments of the supplied format
5778     families, where <format-list> is a comma separated list of format
5779     families.
5780    
5781     Where <search-string> is either a regular expression, or a word list
5782     separated with spaces for OR search and with '+' for AND search.
5783    
5784     Possible Answers:
5785    
5786     A comma separated list with the absolute path names (encapsulated
5787     into apostrophes) of all instruments in the specified directory
5788     that satisfy the supplied search criterias.
5789    
5790     "ERR:<error-code>:<error-message>" -
5791    
5792     if the given directory does not exist.
5793    
5794     Example:
5795    
5796     C: "FIND DB_INSTRUMENTS '/Piano Collection' NAME='bosendorfer+
5797     290'"
5798    
5799     S: "'/Piano Collection/Bosendorfer 290'"
5800    
5801     C: "FIND DB_INSTRUMENTS '/Piano Collection' CREATED='2007-04-01
5802     09:30:13..'"
5803    
5804     S: "'/Piano Collection/Bosendorfer 290','/Piano Collection/
5805     Steinway D'"
5806    
5807 iliev 1201 6.8.21. Getting job status information
5808 iliev 1189
5809 iliev 1201 The front-end can ask for the current status of a particular database
5810     instruments job by sending the following command:
5811 iliev 1189
5812 iliev 1201 GET DB_INSTRUMENTS_JOB INFO <job-id>
5813 iliev 1189
5814 iliev 1201 Where <job-id> should be replaced by the numerical ID of the job the
5815     front-end is interested in.
5816 iliev 1189
5817 iliev 1201 Possible Answers:
5818 iliev 1189
5819 schoenebeck 1251
5820    
5821    
5822    
5823     Schoenebeck Expires December 24, 2007 [Page 104]
5824    
5825     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5826    
5827    
5828 iliev 1201 LinuxSampler will answer by sending a <CRLF> separated list. Each
5829     answer line begins with the settings category name followed by a
5830     colon and then a space character <SP> and finally the info
5831     character string to that setting category. At the moment the
5832     following categories are defined:
5833 iliev 1189
5834    
5835    
5836 iliev 1201 FILES_TOTAL -
5837    
5838     The total number of files scheduled for scanning
5839    
5840     FILES_SCANNED -
5841    
5842     The current number of scanned files
5843    
5844     SCANNING -
5845    
5846     The absolute path name of the file which is currently being
5847     scanned
5848    
5849     STATUS -
5850    
5851     An integer value between 0 and 100 indicating the scanning
5852     progress percentage of the file which is currently being
5853     scanned
5854    
5855     The mentioned fields above don't have to be in particular order.
5856    
5857     Example:
5858    
5859     C: "GET DB_INSTRUMENTS_JOB INFO 2"
5860    
5861     S: "FILES_TOTAL: 12"
5862    
5863     "FILES_SCANNED: 7"
5864    
5865     "SCANNING: /home/me/gigs/Bosendorfer 290.gig"
5866    
5867     "STATUS: 42"
5868    
5869     "."
5870    
5871    
5872    
5873    
5874    
5875    
5876    
5877    
5878    
5879 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 105]
5880 iliev 1201
5881 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5882 iliev 1201
5883    
5884 schoenebeck 575 7. Command Syntax
5885 senoner 542
5886 schoenebeck 575 The grammar of the control protocol as descibed in Section 6 is
5887     defined below using Backus-Naur Form (BNF as described in [RFC2234])
5888     where applicable.
5889 senoner 542
5890 schoenebeck 575 input =
5891 schoenebeck 708
5892 schoenebeck 575 line LF
5893 schoenebeck 708
5894 schoenebeck 575 / line CR LF
5895 senoner 542
5896 schoenebeck 575 line =
5897 schoenebeck 708
5898 schoenebeck 575 /* epsilon (empty line ignored) */
5899 schoenebeck 708
5900 schoenebeck 575 / comment
5901 schoenebeck 708
5902 schoenebeck 575 / command
5903 schoenebeck 708
5904 schoenebeck 575 / error
5905 senoner 542
5906 schoenebeck 575 comment =
5907 schoenebeck 708
5908 schoenebeck 575 '#'
5909 schoenebeck 708
5910 schoenebeck 575 / comment '#'
5911 schoenebeck 708
5912 schoenebeck 575 / comment SP
5913 schoenebeck 708
5914 schoenebeck 575 / comment number
5915 schoenebeck 708
5916 schoenebeck 575 / comment string
5917 senoner 542
5918 schoenebeck 575 command =
5919 schoenebeck 708
5920 schoenebeck 974 ADD SP add_instruction
5921 schoenebeck 708
5922 schoenebeck 945 / MAP SP map_instruction
5923    
5924     / UNMAP SP unmap_instruction
5925    
5926 schoenebeck 575 / GET SP get_instruction
5927 schoenebeck 708
5928 schoenebeck 575 / CREATE SP create_instruction
5929 schoenebeck 708
5930 schoenebeck 575 / DESTROY SP destroy_instruction
5931 schoenebeck 708
5932    
5933    
5934    
5935 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 106]
5936 schoenebeck 940
5937 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5938 schoenebeck 708
5939    
5940 schoenebeck 945 / LIST SP list_instruction
5941 schoenebeck 708
5942 schoenebeck 945 / LOAD SP load_instruction
5943    
5944     / REMOVE SP remove_instruction
5945    
5946 schoenebeck 575 / SET SP set_instruction
5947 schoenebeck 708
5948 schoenebeck 575 / SUBSCRIBE SP subscribe_event
5949 schoenebeck 708
5950 schoenebeck 575 / UNSUBSCRIBE SP unsubscribe_event
5951 schoenebeck 708
5952 schoenebeck 945 / RESET SP reset_instruction
5953 schoenebeck 708
5954 schoenebeck 945 / CLEAR SP clear_instruction
5955    
5956 iliev 1189 / FIND SP find_instruction
5957    
5958 iliev 1162 / MOVE SP move_instruction
5959    
5960 iliev 1189 / COPY SP copy_instruction
5961    
5962 schoenebeck 1251 / EDIT SP edit_instruction
5963    
5964 schoenebeck 575 / RESET
5965 schoenebeck 708
5966 schoenebeck 575 / QUIT
5967 senoner 542
5968 schoenebeck 974 add_instruction =
5969    
5970     CHANNEL
5971    
5972 iliev 1162 / DB_INSTRUMENT_DIRECTORY SP pathname
5973    
5974 iliev 1201 / DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP pathname SP pathname
5975 iliev 1162
5976 iliev 1201 / DB_INSTRUMENTS SP scan_mode SP pathname SP pathname
5977 iliev 1162
5978 iliev 1201 / DB_INSTRUMENTS SP NON_MODAL SP pathname SP pathname
5979    
5980     / DB_INSTRUMENTS SP NON_MODAL SP pathname SP pathname SP
5981     instrument_index
5982    
5983 iliev 1162 / DB_INSTRUMENTS SP pathname SP pathname
5984    
5985     / DB_INSTRUMENTS SP pathname SP pathname SP instrument_index
5986    
5987 schoenebeck 974
5988    
5989 schoenebeck 708
5990    
5991 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 107]
5992 iliev 1189
5993 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
5994 iliev 1162
5995    
5996 schoenebeck 1251 / MIDI_INSTRUMENT_MAP
5997    
5998 iliev 1201 / MIDI_INSTRUMENT_MAP SP map_name
5999    
6000     subscribe_event =
6001    
6002     AUDIO_OUTPUT_DEVICE_COUNT
6003    
6004 iliev 1189 / AUDIO_OUTPUT_DEVICE_INFO
6005 iliev 1162
6006 iliev 1189 / MIDI_INPUT_DEVICE_COUNT
6007 iliev 1162
6008 iliev 993 / MIDI_INPUT_DEVICE_INFO
6009    
6010     / CHANNEL_COUNT
6011    
6012 schoenebeck 575 / VOICE_COUNT
6013 schoenebeck 708
6014 schoenebeck 575 / STREAM_COUNT
6015 schoenebeck 708
6016 schoenebeck 575 / BUFFER_FILL
6017 schoenebeck 708
6018 schoenebeck 575 / CHANNEL_INFO
6019 schoenebeck 708
6020 iliev 1110 / FX_SEND_COUNT
6021    
6022     / FX_SEND_INFO
6023    
6024 iliev 993 / MIDI_INSTRUMENT_MAP_COUNT
6025    
6026     / MIDI_INSTRUMENT_MAP_INFO
6027    
6028     / MIDI_INSTRUMENT_COUNT
6029    
6030     / MIDI_INSTRUMENT_INFO
6031    
6032 iliev 1162 / DB_INSTRUMENT_DIRECTORY_COUNT
6033    
6034     / DB_INSTRUMENT_DIRECTORY_INFO
6035    
6036     / DB_INSTRUMENT_COUNT
6037    
6038     / DB_INSTRUMENT_INFO
6039    
6040 iliev 1201 / DB_INSTRUMENTS_JOB_INFO
6041    
6042 schoenebeck 575 / MISCELLANEOUS
6043 senoner 542
6044 schoenebeck 940
6045 iliev 1110
6046 senoner 542
6047 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 108]
6048 iliev 1201
6049 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6050 senoner 542
6051    
6052 schoenebeck 1251 / TOTAL_VOICE_COUNT
6053    
6054 iliev 1201 / GLOBAL_INFO
6055 senoner 542
6056 iliev 1201 unsubscribe_event =
6057 iliev 1162
6058 iliev 1201 AUDIO_OUTPUT_DEVICE_COUNT
6059 iliev 1162
6060 iliev 1201 / AUDIO_OUTPUT_DEVICE_INFO
6061 iliev 1162
6062 iliev 1189 / MIDI_INPUT_DEVICE_COUNT
6063 iliev 1162
6064 iliev 1189 / MIDI_INPUT_DEVICE_INFO
6065 iliev 1162
6066 iliev 993 / CHANNEL_COUNT
6067 schoenebeck 945
6068 schoenebeck 974 / VOICE_COUNT
6069 schoenebeck 945
6070 schoenebeck 974 / STREAM_COUNT
6071 schoenebeck 945
6072 schoenebeck 974 / BUFFER_FILL
6073 schoenebeck 945
6074 schoenebeck 575 / CHANNEL_INFO
6075 schoenebeck 708
6076 iliev 1110 / FX_SEND_COUNT
6077    
6078     / FX_SEND_INFO
6079    
6080 iliev 993 / MIDI_INSTRUMENT_MAP_COUNT
6081    
6082     / MIDI_INSTRUMENT_MAP_INFO
6083    
6084 iliev 1162 / MIDI_INSTRUMENT_COUNT
6085 iliev 1110
6086 iliev 1162 / MIDI_INSTRUMENT_INFO
6087 iliev 1110
6088 iliev 1162 / DB_INSTRUMENT_DIRECTORY_COUNT
6089 iliev 1110
6090 iliev 1162 / DB_INSTRUMENT_DIRECTORY_INFO
6091 iliev 1110
6092 iliev 1162 / DB_INSTRUMENT_COUNT
6093 iliev 1110
6094 iliev 1162 / DB_INSTRUMENT_INFO
6095 iliev 993
6096 iliev 1201 / DB_INSTRUMENTS_JOB_INFO
6097    
6098 schoenebeck 575 / MISCELLANEOUS
6099    
6100 schoenebeck 708
6101 iliev 1201
6102    
6103 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 109]
6104 iliev 1201
6105 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6106 iliev 1201
6107    
6108 schoenebeck 1251 / TOTAL_VOICE_COUNT
6109    
6110 iliev 1110 / GLOBAL_INFO
6111    
6112 schoenebeck 945 map_instruction =
6113 schoenebeck 708
6114 schoenebeck 1048 MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP
6115 schoenebeck 945 engine_name SP filename SP instrument_index SP volume_value
6116 schoenebeck 708
6117 schoenebeck 1048 / MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog
6118     SP engine_name SP filename SP instrument_index SP volume_value SP
6119 schoenebeck 945 instr_load_mode
6120 schoenebeck 708
6121 schoenebeck 1048 / MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog
6122     SP engine_name SP filename SP instrument_index SP volume_value SP
6123 iliev 1189 entry_name
6124    
6125     / MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog
6126     SP engine_name SP filename SP instrument_index SP volume_value SP
6127 schoenebeck 945 instr_load_mode SP entry_name
6128 schoenebeck 708
6129 schoenebeck 945 unmap_instruction =
6130    
6131 schoenebeck 974 MIDI_INSTRUMENT SP midi_map SP midi_bank SP midi_prog
6132 schoenebeck 945
6133     remove_instruction =
6134    
6135     CHANNEL SP sampler_channel
6136    
6137 schoenebeck 974 / MIDI_INSTRUMENT_MAP SP midi_map
6138    
6139     / MIDI_INSTRUMENT_MAP SP ALL
6140    
6141 iliev 1162 / DB_INSTRUMENT_DIRECTORY SP FORCE SP pathname
6142    
6143     / DB_INSTRUMENT_DIRECTORY SP pathname
6144    
6145     / DB_INSTRUMENT SP pathname
6146    
6147 schoenebeck 940 get_instruction =
6148 schoenebeck 708
6149 schoenebeck 940 AVAILABLE_ENGINES
6150 schoenebeck 708
6151 schoenebeck 575 / AVAILABLE_MIDI_INPUT_DRIVERS
6152 schoenebeck 708
6153 schoenebeck 575 / MIDI_INPUT_DRIVER SP INFO SP string
6154 schoenebeck 708
6155    
6156 iliev 1201
6157    
6158    
6159 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 110]
6160 iliev 1201
6161 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6162 iliev 1201
6163    
6164 schoenebeck 1251 / MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string
6165    
6166 schoenebeck 575 / MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string SP
6167     key_val_list
6168 schoenebeck 708
6169 schoenebeck 575 / AVAILABLE_AUDIO_OUTPUT_DRIVERS
6170 schoenebeck 708
6171 schoenebeck 575 / AUDIO_OUTPUT_DRIVER SP INFO SP string
6172 schoenebeck 708
6173 schoenebeck 575 / AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string
6174 schoenebeck 708
6175 schoenebeck 575 / AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string SP
6176     key_val_list
6177 schoenebeck 708
6178 iliev 1189 / AUDIO_OUTPUT_DEVICES
6179 iliev 1162
6180 iliev 1189 / MIDI_INPUT_DEVICES
6181 iliev 1162
6182 schoenebeck 575 / AUDIO_OUTPUT_DEVICE SP INFO SP number
6183 schoenebeck 708
6184 schoenebeck 575 / MIDI_INPUT_DEVICE SP INFO SP number
6185 schoenebeck 708
6186 schoenebeck 575 / MIDI_INPUT_PORT SP INFO SP number SP number
6187 schoenebeck 708
6188 schoenebeck 575 / MIDI_INPUT_PORT_PARAMETER SP INFO SP number SP number SP string
6189 schoenebeck 708
6190 schoenebeck 575 / AUDIO_OUTPUT_CHANNEL SP INFO SP number SP number
6191 schoenebeck 708
6192 schoenebeck 575 / AUDIO_OUTPUT_CHANNEL_PARAMETER SP INFO SP number SP number SP
6193     string
6194 schoenebeck 708
6195 schoenebeck 575 / CHANNELS
6196 schoenebeck 708
6197 schoenebeck 575 / CHANNEL SP INFO SP sampler_channel
6198 schoenebeck 708
6199 schoenebeck 575 / CHANNEL SP BUFFER_FILL SP buffer_size_type SP sampler_channel
6200 schoenebeck 708
6201 schoenebeck 575 / CHANNEL SP STREAM_COUNT SP sampler_channel
6202 schoenebeck 708
6203 schoenebeck 940 / CHANNEL SP VOICE_COUNT SP sampler_channel
6204 schoenebeck 708
6205 schoenebeck 940 / ENGINE SP INFO SP engine_name
6206 schoenebeck 708
6207 schoenebeck 575 / SERVER SP INFO
6208    
6209 schoenebeck 940 / TOTAL_VOICE_COUNT
6210    
6211    
6212 iliev 1201
6213    
6214    
6215 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 111]
6216 iliev 1201
6217 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6218 iliev 1201
6219    
6220 schoenebeck 1251 / TOTAL_VOICE_COUNT_MAX
6221    
6222 schoenebeck 974 / MIDI_INSTRUMENTS SP midi_map
6223 schoenebeck 945
6224 schoenebeck 974 / MIDI_INSTRUMENTS SP ALL
6225 schoenebeck 945
6226 schoenebeck 974 / MIDI_INSTRUMENT SP INFO SP midi_map SP midi_bank SP midi_prog
6227 schoenebeck 708
6228 schoenebeck 974 / MIDI_INSTRUMENT_MAPS
6229 schoenebeck 945
6230 schoenebeck 974 / MIDI_INSTRUMENT_MAP SP INFO SP midi_map
6231 schoenebeck 945
6232 schoenebeck 1002 / FX_SENDS SP sampler_channel
6233 schoenebeck 945
6234 iliev 1189 / FX_SEND SP INFO SP sampler_channel SP fx_send_id
6235 iliev 1162
6236 iliev 1189 / DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP pathname
6237 iliev 1162
6238 iliev 1189 / DB_INSTRUMENT_DIRECTORIES SP pathname
6239    
6240 iliev 1162 / DB_INSTRUMENT_DIRECTORY SP INFO SP pathname
6241    
6242 iliev 1189 / DB_INSTRUMENTS SP RECURSIVE SP pathname
6243    
6244 iliev 1162 / DB_INSTRUMENTS SP pathname
6245    
6246     / DB_INSTRUMENT SP INFO SP pathname
6247    
6248 iliev 1201 / DB_INSTRUMENTS_JOB SP INFO SP number
6249    
6250 schoenebeck 1006 / VOLUME
6251    
6252 schoenebeck 1002 set_instruction =
6253    
6254 schoenebeck 575 AUDIO_OUTPUT_DEVICE_PARAMETER SP number SP string '='
6255     param_val_list
6256 schoenebeck 708
6257 schoenebeck 575 / AUDIO_OUTPUT_CHANNEL_PARAMETER SP number SP number SP string '='
6258     param_val_list
6259 schoenebeck 708
6260 schoenebeck 575 / MIDI_INPUT_DEVICE_PARAMETER SP number SP string '='
6261     param_val_list
6262 schoenebeck 708
6263 schoenebeck 575 / MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '='
6264     param_val_list
6265 schoenebeck 708
6266 schoenebeck 575 / CHANNEL SP set_chan_instruction
6267 schoenebeck 708
6268 schoenebeck 974
6269 iliev 1201
6270    
6271 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 112]
6272 iliev 1201
6273 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6274 iliev 1201
6275    
6276 schoenebeck 1251 / MIDI_INSTRUMENT_MAP SP NAME SP midi_map SP map_name
6277    
6278 iliev 1137 / FX_SEND SP NAME SP sampler_channel SP fx_send_id SP fx_send_name
6279    
6280 schoenebeck 1002 / FX_SEND SP AUDIO_OUTPUT_CHANNEL SP sampler_channel SP fx_send_id
6281     SP audio_channel_index SP audio_channel_index
6282    
6283 schoenebeck 1028 / FX_SEND SP MIDI_CONTROLLER SP sampler_channel SP fx_send_id SP
6284     midi_ctrl
6285    
6286     / FX_SEND SP LEVEL SP sampler_channel SP fx_send_id SP
6287     volume_value
6288    
6289 iliev 1162 / DB_INSTRUMENT_DIRECTORY SP NAME SP pathname SP dirname
6290 schoenebeck 575
6291 iliev 1189 / DB_INSTRUMENT_DIRECTORY SP DESCRIPTION SP pathname SP stringval
6292 iliev 1162
6293 iliev 1189 / DB_INSTRUMENT SP NAME SP pathname SP dirname
6294 iliev 1162
6295 iliev 1189 / DB_INSTRUMENT SP DESCRIPTION SP pathname SP stringval
6296 iliev 1110
6297 iliev 1189 / ECHO SP boolean
6298 iliev 1110
6299 schoenebeck 1006 / VOLUME SP volume_value
6300    
6301 schoenebeck 708 create_instruction =
6302 schoenebeck 575
6303 schoenebeck 708 AUDIO_OUTPUT_DEVICE SP string SP key_val_list
6304 schoenebeck 575
6305 schoenebeck 708 / AUDIO_OUTPUT_DEVICE SP string
6306 schoenebeck 575
6307 schoenebeck 708 / MIDI_INPUT_DEVICE SP string SP key_val_list
6308 senoner 542
6309 schoenebeck 575 / MIDI_INPUT_DEVICE SP string
6310 senoner 542
6311 schoenebeck 1002 / FX_SEND SP sampler_channel SP midi_ctrl
6312    
6313     / FX_SEND SP sampler_channel SP midi_ctrl SP fx_send_name
6314    
6315 schoenebeck 945 reset_instruction =
6316    
6317     CHANNEL SP sampler_channel
6318    
6319     clear_instruction =
6320    
6321 schoenebeck 1006 MIDI_INSTRUMENTS SP midi_map
6322    
6323 schoenebeck 974
6324 iliev 1189
6325 iliev 1201
6326    
6327 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 113]
6328 iliev 1201
6329 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6330 iliev 1201
6331    
6332 schoenebeck 1251 / MIDI_INSTRUMENTS SP ALL
6333    
6334     find_instruction =
6335    
6336 iliev 1189 DB_INSTRUMENTS SP NON_RECURSIVE SP pathname SP query_val_list
6337    
6338     / DB_INSTRUMENTS SP pathname SP query_val_list
6339    
6340     / DB_INSTRUMENT_DIRECTORIES SP NON_RECURSIVE SP pathname SP
6341     query_val_list
6342    
6343     / DB_INSTRUMENT_DIRECTORIES SP pathname SP query_val_list
6344    
6345 iliev 1162 move_instruction =
6346    
6347     DB_INSTRUMENT_DIRECTORY SP pathname SP pathname
6348    
6349     / DB_INSTRUMENT SP pathname SP pathname
6350    
6351 iliev 1189 copy_instruction =
6352    
6353     DB_INSTRUMENT_DIRECTORY SP pathname SP pathname
6354    
6355     / DB_INSTRUMENT SP pathname SP pathname
6356    
6357 schoenebeck 575 destroy_instruction =
6358 schoenebeck 708
6359 schoenebeck 575 AUDIO_OUTPUT_DEVICE SP number
6360 schoenebeck 708
6361 schoenebeck 575 / MIDI_INPUT_DEVICE SP number
6362 senoner 542
6363 schoenebeck 1002 / FX_SEND SP sampler_channel SP fx_send_id
6364    
6365 schoenebeck 575 load_instruction =
6366 schoenebeck 708
6367 schoenebeck 575 INSTRUMENT SP load_instr_args
6368 schoenebeck 708
6369 schoenebeck 945 / ENGINE SP load_engine_args
6370 schoenebeck 940
6371 schoenebeck 945 set_chan_instruction =
6372 schoenebeck 940
6373 iliev 1162 AUDIO_OUTPUT_DEVICE SP sampler_channel SP device_index
6374    
6375     / AUDIO_OUTPUT_CHANNEL SP sampler_channel SP audio_channel_index
6376     SP audio_channel_index
6377    
6378 schoenebeck 575 / AUDIO_OUTPUT_TYPE SP sampler_channel SP audio_output_type_name
6379 schoenebeck 708
6380    
6381 iliev 1201
6382    
6383 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 114]
6384    
6385     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6386 iliev 1201
6387    
6388 schoenebeck 1251 / MIDI_INPUT SP sampler_channel SP device_index SP
6389     midi_input_port_index SP midi_input_channel_index
6390 iliev 1201
6391 schoenebeck 575 / MIDI_INPUT_DEVICE SP sampler_channel SP device_index
6392 schoenebeck 708
6393 schoenebeck 575 / MIDI_INPUT_PORT SP sampler_channel SP midi_input_port_index
6394 schoenebeck 708
6395 schoenebeck 575 / MIDI_INPUT_CHANNEL SP sampler_channel SP
6396     midi_input_channel_index
6397 schoenebeck 708
6398 schoenebeck 575 / MIDI_INPUT_TYPE SP sampler_channel SP midi_input_type_name
6399 schoenebeck 708
6400 schoenebeck 1028 / VOLUME SP sampler_channel SP volume_value
6401 schoenebeck 1002
6402 schoenebeck 1028 / MUTE SP sampler_channel SP boolean
6403 schoenebeck 1002
6404 schoenebeck 1028 / SOLO SP sampler_channel SP boolean
6405 schoenebeck 1002
6406 schoenebeck 1028 / MIDI_INSTRUMENT_MAP SP sampler_channel SP midi_map
6407 schoenebeck 1002
6408 schoenebeck 1006 / MIDI_INSTRUMENT_MAP SP sampler_channel SP NONE
6409    
6410 schoenebeck 974 / MIDI_INSTRUMENT_MAP SP sampler_channel SP DEFAULT
6411    
6412 schoenebeck 1251 edit_instruction =
6413    
6414     INSTRUMENT SP sampler_channel
6415    
6416 schoenebeck 1048 modal_arg =
6417    
6418     /* epsilon (empty argument) */
6419    
6420     / NON_MODAL SP
6421    
6422 schoenebeck 575 key_val_list =
6423 schoenebeck 708
6424 schoenebeck 575 string '=' param_val_list
6425 schoenebeck 708
6426 schoenebeck 575 / key_val_list SP string '=' param_val_list
6427 senoner 542
6428 schoenebeck 575 buffer_size_type =
6429 schoenebeck 708
6430 schoenebeck 575 BYTES
6431 schoenebeck 708
6432 iliev 1162 / PERCENTAGE
6433 iliev 1110
6434 iliev 1162 list_instruction =
6435 iliev 1110
6436 iliev 1162
6437 schoenebeck 708
6438    
6439 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 115]
6440    
6441     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6442 iliev 1201
6443    
6444 schoenebeck 1251 AUDIO_OUTPUT_DEVICES
6445 iliev 1201
6446 schoenebeck 1251 / MIDI_INPUT_DEVICES
6447 iliev 1201
6448 schoenebeck 1251 / CHANNELS
6449 iliev 1201
6450 schoenebeck 945 / AVAILABLE_ENGINES
6451 schoenebeck 708
6452 schoenebeck 974 / AVAILABLE_MIDI_INPUT_DRIVERS
6453 schoenebeck 708
6454 schoenebeck 974 / AVAILABLE_AUDIO_OUTPUT_DRIVERS
6455 senoner 542
6456 schoenebeck 974 / MIDI_INSTRUMENTS SP midi_map
6457 schoenebeck 945
6458 schoenebeck 974 / MIDI_INSTRUMENTS SP ALL
6459 schoenebeck 945
6460 schoenebeck 1048 / MIDI_INSTRUMENT_MAPS
6461 schoenebeck 708
6462 schoenebeck 1048 / FX_SENDS SP sampler_channel
6463 senoner 542
6464 iliev 1189 / DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP pathname
6465    
6466 iliev 1162 / DB_INSTRUMENT_DIRECTORIES SP pathname
6467    
6468 iliev 1189 / DB_INSTRUMENTS SP RECURSIVE SP pathname
6469    
6470 iliev 1162 / DB_INSTRUMENTS SP pathname
6471    
6472 schoenebeck 1048 load_instr_args =
6473 schoenebeck 945
6474 schoenebeck 1028 filename SP instrument_index SP sampler_channel
6475 schoenebeck 1002
6476 schoenebeck 1028 / NON_MODAL SP filename SP instrument_index SP sampler_channel
6477 schoenebeck 1002
6478 schoenebeck 1028 load_engine_args =
6479 schoenebeck 1002
6480 schoenebeck 1028 engine_name SP sampler_channel
6481 schoenebeck 1002
6482 schoenebeck 1006 instr_load_mode =
6483    
6484 schoenebeck 945 ON_DEMAND
6485    
6486     / ON_DEMAND_HOLD
6487    
6488     / PERSISTENT
6489    
6490 schoenebeck 575 device_index =
6491 schoenebeck 708
6492 senoner 542
6493 schoenebeck 708
6494 senoner 542
6495 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 116]
6496    
6497     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6498 iliev 1201
6499    
6500 schoenebeck 1251 number
6501 iliev 1201
6502 schoenebeck 1251 audio_channel_index =
6503 iliev 1201
6504 schoenebeck 1251 number
6505 iliev 1201
6506 schoenebeck 575 audio_output_type_name =
6507 schoenebeck 708
6508 schoenebeck 575 string
6509 senoner 542
6510 schoenebeck 575 midi_input_port_index =
6511 schoenebeck 708
6512 schoenebeck 575 number
6513 senoner 542
6514 schoenebeck 575 midi_input_channel_index =
6515 schoenebeck 708
6516 schoenebeck 575 number
6517 schoenebeck 708
6518 schoenebeck 575 / ALL
6519 senoner 542
6520 schoenebeck 575 midi_input_type_name =
6521 schoenebeck 708
6522 schoenebeck 575 string
6523 senoner 542
6524 schoenebeck 1048 midi_map =
6525 schoenebeck 940
6526 schoenebeck 1048 number
6527 schoenebeck 1002
6528 schoenebeck 1048 midi_bank =
6529 schoenebeck 1002
6530 schoenebeck 1028 number
6531 schoenebeck 1002
6532 schoenebeck 1028 midi_prog =
6533 schoenebeck 1002
6534 schoenebeck 1028 number
6535 schoenebeck 1002
6536 schoenebeck 1028 midi_ctrl =
6537 schoenebeck 1002
6538 schoenebeck 1006 number
6539    
6540 schoenebeck 945 volume_value =
6541 schoenebeck 940
6542 schoenebeck 945 dotnum
6543    
6544 schoenebeck 575 / number
6545 senoner 542
6546 schoenebeck 575 sampler_channel =
6547 schoenebeck 708
6548 senoner 542
6549 schoenebeck 708
6550 senoner 542
6551 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 117]
6552    
6553     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6554 iliev 1201
6555    
6556 schoenebeck 1251 number
6557 iliev 1201
6558 schoenebeck 1251 instrument_index =
6559 iliev 1201
6560 schoenebeck 1251 number
6561 iliev 1201
6562 schoenebeck 1002 fx_send_id =
6563    
6564     number
6565    
6566 iliev 1162 engine_name =
6567 iliev 1110
6568 iliev 1162 string
6569 iliev 1110
6570 iliev 1162 pathname =
6571 iliev 1110
6572 iliev 1162 stringval
6573 iliev 1110
6574 iliev 1162 dirname =
6575 iliev 1110
6576 iliev 1162 stringval
6577 senoner 542
6578 schoenebeck 708 filename =
6579 senoner 542
6580 schoenebeck 1251 stringval_escaped
6581 senoner 542
6582 schoenebeck 974 map_name =
6583    
6584     stringval
6585    
6586 schoenebeck 945 entry_name =
6587    
6588 schoenebeck 1048 stringval
6589 senoner 542
6590 schoenebeck 1048 fx_send_name =
6591 senoner 542
6592 schoenebeck 1048 stringval
6593 senoner 542
6594 schoenebeck 1028 param_val_list =
6595 schoenebeck 1002
6596 schoenebeck 1028 param_val
6597 schoenebeck 1002
6598 schoenebeck 1028 / param_val_list','param_val
6599 schoenebeck 1002
6600 schoenebeck 1028 param_val =
6601 schoenebeck 1002
6602 schoenebeck 1006 string
6603    
6604 senoner 542
6605    
6606    
6607 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 118]
6608    
6609     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6610 iliev 1201
6611    
6612 schoenebeck 1251 / stringval
6613 iliev 1201
6614 schoenebeck 1251 / number
6615 iliev 1201
6616 schoenebeck 1251 / dotnum
6617 iliev 1201
6618 iliev 1189 query_val_list =
6619 senoner 542
6620 iliev 1189 string '=' query_val
6621 senoner 542
6622 iliev 1189 / query_val_list SP string '=' query_val
6623 senoner 542
6624 iliev 1189 query_val =
6625 senoner 542
6626 iliev 1189 string
6627 senoner 542
6628 iliev 1189 / stringval
6629 schoenebeck 575
6630 iliev 1201 scan_mode =
6631 schoenebeck 575
6632 iliev 1201 RECURSIVE
6633 iliev 993
6634 iliev 1201 / NON_RECURSIVE
6635 iliev 993
6636 iliev 1201 / FLAT
6637    
6638 schoenebeck 1251 7.1. Character Set and Escape Sequences
6639 iliev 1201
6640 schoenebeck 1251 Older versions of this protocol up to and including v1.1 only
6641     supported the standard ASCII character set (ASCII code 0 - 127)
6642     [RFC20], all younger versions of this protocol however support the
6643     Extended ASCII character set (ASCII code 0 - 255). The same group of
6644     younger protocols also support escape sequences, but only for
6645     certain, explicitly declared parts of the protocol. The supported
6646     escape sequences are defined as follows:
6647 iliev 1201
6648    
6649    
6650    
6651    
6652    
6653    
6654    
6655    
6656    
6657    
6658    
6659    
6660    
6661    
6662    
6663 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 119]
6664    
6665     Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6666 iliev 1201
6667    
6668 schoenebeck 1251 +------------------------+------------------------------------------+
6669     | ASCII Character | Translated into (Name) |
6670     | Sequence | |
6671     +------------------------+------------------------------------------+
6672     | \n | new line |
6673     | | |
6674     | \r | carriage return |
6675     | | |
6676     | \f | form feed |
6677     | | |
6678     | \t | horizontal tab |
6679     | | |
6680     | \v | vertical tab |
6681     | | |
6682     | \' | apostrophe |
6683     | | |
6684     | \" | quotation mark |
6685     | | |
6686     | \\ | backslash |
6687     | | |
6688     | \OOO | three digit octal ASCII code of the |
6689     | | character |
6690     | | |
6691     | \xHH | two digit hex ASCII code of the |
6692     | | character |
6693     +------------------------+------------------------------------------+
6694 iliev 1201
6695 schoenebeck 1251 Notice: due to the transition of certain parts of the protocol which
6696     now support escape sequences, a slight backward incompatibility to
6697     protocols version v1.1 and younger has been introduced. The only
6698     difference is that in parts of the protocol where escape characters
6699     are now supported, a backslash characters MUST be escaped as well
6700     (that is as double backslash), whereas in the old versions a single
6701     backslash was sufficient.
6702 iliev 1201
6703    
6704    
6705    
6706    
6707    
6708    
6709    
6710    
6711    
6712    
6713 schoenebeck 1251
6714    
6715    
6716    
6717    
6718    
6719     Schoenebeck Expires December 24, 2007 [Page 120]
6720 schoenebeck 940
6721 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6722 schoenebeck 575
6723    
6724     8. Events
6725 senoner 542
6726     This chapter will describe all currently defined events supported by
6727     LinuxSampler.
6728    
6729 iliev 993 8.1. Number of audio output devices changed
6730 senoner 542
6731 iliev 993 Client may want to be notified when the total number of audio output
6732     devices on the back-end changes by issuing the following command:
6733    
6734     SUBSCRIBE AUDIO_OUTPUT_DEVICE_COUNT
6735    
6736     Server will start sending the following notification messages:
6737    
6738     "NOTIFY:AUDIO_OUTPUT_DEVICE_COUNT:<devices>"
6739    
6740     where <devices> will be replaced by the new number of audio output
6741     devices.
6742    
6743     8.2. Audio output device's settings changed
6744    
6745     Client may want to be notified when changes were made to audio output
6746     devices on the back-end by issuing the following command:
6747    
6748     SUBSCRIBE AUDIO_OUTPUT_DEVICE_INFO
6749    
6750     Server will start sending the following notification messages:
6751    
6752     "NOTIFY:AUDIO_OUTPUT_DEVICE_INFO:<device-id>"
6753    
6754     where <device-id> will be replaced by the numerical ID of the audio
6755     output device, which settings has been changed. The front-end will
6756     have to send the respective command to actually get the audio output
6757     device info. Because these messages will be triggered by LSCP
6758     commands issued by other clients rather than real time events
6759     happening on the server, it is believed that an empty notification
6760     message is sufficient here.
6761    
6762     8.3. Number of MIDI input devices changed
6763    
6764     Client may want to be notified when the total number of MIDI input
6765     devices on the back-end changes by issuing the following command:
6766    
6767     SUBSCRIBE MIDI_INPUT_DEVICE_COUNT
6768    
6769     Server will start sending the following notification messages:
6770    
6771    
6772    
6773    
6774    
6775 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 121]
6776 iliev 993
6777 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6778 iliev 993
6779    
6780     "NOTIFY:MIDI_INPUT_DEVICE_COUNT:<devices>"
6781    
6782     where <devices> will be replaced by the new number of MIDI input
6783     devices.
6784    
6785     8.4. MIDI input device's settings changed
6786    
6787     Client may want to be notified when changes were made to MIDI input
6788     devices on the back-end by issuing the following command:
6789    
6790     SUBSCRIBE MIDI_INPUT_DEVICE_INFO
6791    
6792     Server will start sending the following notification messages:
6793    
6794     "NOTIFY:MIDI_INPUT_DEVICE_INFO:<device-id>"
6795    
6796     where <device-id> will be replaced by the numerical ID of the MIDI
6797     input device, which settings has been changed. The front-end will
6798     have to send the respective command to actually get the MIDI input
6799     device info. Because these messages will be triggered by LSCP
6800     commands issued by other clients rather than real time events
6801     happening on the server, it is believed that an empty notification
6802     message is sufficient here.
6803    
6804     8.5. Number of sampler channels changed
6805    
6806 senoner 542 Client may want to be notified when the total number of channels on
6807     the back-end changes by issuing the following command:
6808    
6809 schoenebeck 558 SUBSCRIBE CHANNEL_COUNT
6810 senoner 542
6811     Server will start sending the following notification messages:
6812    
6813 schoenebeck 558 "NOTIFY:CHANNEL_COUNT:<channels>"
6814 senoner 542
6815     where <channels> will be replaced by the new number of sampler
6816     channels.
6817    
6818 iliev 993 8.6. Number of active voices changed
6819 senoner 542
6820 schoenebeck 708 Client may want to be notified when the number of voices on the back-
6821     end changes by issuing the following command:
6822 senoner 542
6823     SUBSCRIBE VOICE_COUNT
6824    
6825     Server will start sending the following notification messages:
6826    
6827 iliev 993
6828    
6829    
6830    
6831 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 122]
6832 iliev 993
6833 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6834 iliev 993
6835    
6836 iliev 1110 "NOTIFY:VOICE_COUNT:<sampler-channel> <voices>"
6837 senoner 542
6838     where <sampler-channel> will be replaced by the sampler channel the
6839     voice count change occurred and <voices> by the new number of active
6840     voices on that channel.
6841    
6842 iliev 993 8.7. Number of active disk streams changed
6843 senoner 542
6844     Client may want to be notified when the number of streams on the
6845     back-end changes by issuing the following command: SUBSCRIBE
6846     STREAM_COUNT
6847    
6848     SUBSCRIBE STREAM_COUNT
6849    
6850     Server will start sending the following notification messages:
6851    
6852     "NOTIFY:STREAM_COUNT:<sampler-channel> <streams>"
6853    
6854     where <sampler-channel> will be replaced by the sampler channel the
6855     stream count change occurred and <streams> by the new number of
6856     active disk streams on that channel.
6857    
6858 iliev 993 8.8. Disk stream buffer fill state changed
6859 senoner 542
6860     Client may want to be notified when the buffer fill state of a disk
6861     stream on the back-end changes by issuing the following command:
6862    
6863     SUBSCRIBE BUFFER_FILL
6864    
6865     Server will start sending the following notification messages:
6866    
6867     "NOTIFY:BUFFER_FILL:<sampler-channel> <fill-data>"
6868    
6869     where <sampler-channel> will be replaced by the sampler channel the
6870     buffer fill state change occurred on and <fill-data> will be replaced
6871 schoenebeck 708 by the buffer fill data for this channel as described in
6872     Section 6.4.13 as if the "GET CHANNEL BUFFER_FILL PERCENTAGE"
6873     (Section 6.4.13) command was issued on this channel.
6874 senoner 542
6875 iliev 993 8.9. Channel information changed
6876 senoner 542
6877     Client may want to be notified when changes were made to sampler
6878 schoenebeck 561 channels on the back-end by issuing the following command:
6879 senoner 542
6880 schoenebeck 558 SUBSCRIBE CHANNEL_INFO
6881 senoner 542
6882     Server will start sending the following notification messages:
6883    
6884 iliev 993
6885    
6886    
6887 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 123]
6888 iliev 993
6889 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6890 iliev 993
6891    
6892 schoenebeck 558 "NOTIFY:CHANNEL_INFO:<sampler-channel>"
6893 senoner 542
6894     where <sampler-channel> will be replaced by the sampler channel the
6895     channel info change occurred. The front-end will have to send the
6896     respective command to actually get the channel info. Because these
6897     messages will be triggered by LSCP commands issued by other clients
6898     rather than real time events happening on the server, it is believed
6899     that an empty notification message is sufficient here.
6900    
6901 iliev 1110 8.10. Number of effect sends changed
6902 senoner 542
6903 iliev 1110 Client may want to be notified when the number of effect sends on a
6904     particular sampler channel is changed by issuing the following
6905     command:
6906    
6907     SUBSCRIBE FX_SEND_COUNT
6908    
6909     Server will start sending the following notification messages:
6910    
6911     "NOTIFY:FX_SEND_COUNT:<channel-id> <fx-sends>"
6912    
6913     where <channel-id> will be replaced by the numerical ID of the
6914     sampler channel, on which the effect sends number is changed and <fx-
6915     sends> will be replaced by the new number of effect sends on that
6916     channel.
6917    
6918     8.11. Effect send information changed
6919    
6920     Client may want to be notified when changes were made to effect sends
6921     on a a particular sampler channel by issuing the following command:
6922    
6923     SUBSCRIBE FX_SEND_INFO
6924    
6925     Server will start sending the following notification messages:
6926    
6927     "NOTIFY:FX_SEND_INFO:<channel-id> <fx-send-id>"
6928    
6929     where <channel-id> will be replaced by the numerical ID of the
6930     sampler channel, on which an effect send entity is changed and <fx-
6931     send-id> will be replaced by the numerical ID of the changed effect
6932     send.
6933    
6934     8.12. Total number of active voices changed
6935    
6936 schoenebeck 940 Client may want to be notified when the total number of voices on the
6937     back-end changes by issuing the following command:
6938 senoner 542
6939 iliev 1110
6940    
6941    
6942    
6943 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 124]
6944 iliev 1110
6945 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
6946 iliev 1110
6947    
6948 schoenebeck 940 SUBSCRIBE TOTAL_VOICE_COUNT
6949 senoner 542
6950     Server will start sending the following notification messages:
6951    
6952 iliev 1110 "NOTIFY:TOTAL_VOICE_COUNT:<voices>"
6953 senoner 542
6954 iliev 993 where <voices> will be replaced by the new number of all currently
6955     active voices.
6956 senoner 542
6957 iliev 1110 8.13. Number of MIDI instrument maps changed
6958 senoner 542
6959 iliev 993 Client may want to be notified when the number of MIDI instrument
6960     maps on the back-end changes by issuing the following command:
6961 senoner 542
6962 iliev 993 SUBSCRIBE MIDI_INSTRUMENT_MAP_COUNT
6963 senoner 542
6964 iliev 993 Server will start sending the following notification messages:
6965    
6966     "NOTIFY:MIDI_INSTRUMENT_MAP_COUNT:<maps>"
6967    
6968     where <maps> will be replaced by the new number of MIDI instrument
6969     maps.
6970    
6971 iliev 1110 8.14. MIDI instrument map information changed
6972 iliev 993
6973     Client may want to be notified when changes were made to MIDI
6974     instrument maps on the back-end by issuing the following command:
6975    
6976     SUBSCRIBE MIDI_INSTRUMENT_MAP_INFO
6977    
6978     Server will start sending the following notification messages:
6979    
6980     "NOTIFY:MIDI_INSTRUMENT_MAP_INFO:<map-id>"
6981 schoenebeck 708
6982 iliev 993 where <map-id> will be replaced by the numerical ID of the MIDI
6983     instrument map, for which information changes occurred. The front-
6984     end will have to send the respective command to actually get the MIDI
6985     instrument map info. Because these messages will be triggered by
6986     LSCP commands issued by other clients rather than real time events
6987     happening on the server, it is believed that an empty notification
6988     message is sufficient here.
6989 schoenebeck 708
6990 iliev 1110 8.15. Number of MIDI instruments changed
6991 senoner 542
6992 iliev 993 Client may want to be notified when the number of MIDI instrument
6993     maps on the back-end changes by issuing the following command:
6994    
6995 iliev 1110
6996    
6997    
6998    
6999 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 125]
7000 iliev 1110
7001 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7002 iliev 1110
7003    
7004 iliev 993 SUBSCRIBE MIDI_INSTRUMENT_COUNT
7005    
7006     Server will start sending the following notification messages:
7007    
7008     "NOTIFY:MIDI_INSTRUMENT_COUNT:<map-id> <instruments>"
7009    
7010     where <map-id> is the numerical ID of the MIDI instrument map, in
7011     which the nuber of instruments has changed and <instruments> will be
7012     replaced by the new number of MIDI instruments in the specified map.
7013    
7014 iliev 1110 8.16. MIDI instrument information changed
7015 iliev 993
7016     Client may want to be notified when changes were made to MIDI
7017     instruments on the back-end by issuing the following command:
7018    
7019     SUBSCRIBE MIDI_INSTRUMENT_INFO
7020    
7021     Server will start sending the following notification messages:
7022    
7023     "NOTIFY:MIDI_INSTRUMENT_INFO:<map-id> <bank> <program>"
7024    
7025     where <map-id> will be replaced by the numerical ID of the MIDI
7026     instrument map, in which a MIDI instrument is changed. <bank> and
7027     <program> specifies the location of the changed MIDI instrument in
7028     the map. The front-end will have to send the respective command to
7029     actually get the MIDI instrument info. Because these messages will
7030     be triggered by LSCP commands issued by other clients rather than
7031     real time events happening on the server, it is believed that an
7032     empty notification message is sufficient here.
7033    
7034 iliev 1110 8.17. Global settings changed
7035 iliev 993
7036 iliev 1110 Client may want to be notified when changes to the global settings of
7037     the sampler were made by issuing the following command:
7038 iliev 993
7039 iliev 1110 SUBSCRIBE GLOBAL_INFO
7040 iliev 993
7041 iliev 1110 Server will start sending the following types of notification
7042     messages:
7043 iliev 993
7044 iliev 1110 "NOTIFY:GLOBAL_INFO:VOLUME <volume>" - Notifies that the golbal
7045     volume of the sampler is changed, where <volume> will be replaced
7046     by the optional dotted floating point value, reflecting the new
7047     global volume parameter.
7048 iliev 993
7049    
7050 iliev 1110
7051    
7052    
7053    
7054    
7055 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 126]
7056 iliev 993
7057 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7058 iliev 993
7059    
7060 iliev 1162 8.18. Number of database instrument directories changed
7061 iliev 993
7062 iliev 1162 Client may want to be notified when the number of instrument
7063     directories in a particular directory in the instruments database is
7064     changed by issuing the following command:
7065    
7066     SUBSCRIBE DB_INSTRUMENT_DIRECTORY_COUNT
7067    
7068     Server will start sending the following notification messages:
7069    
7070     "NOTIFY:DB_INSTRUMENT_DIRECTORY_COUNT:<dir-path>"
7071    
7072     where <dir-path> will be replaced by the absolute path name of the
7073     directory in the instruments database, in which the number of
7074     directories is changed.
7075    
7076     Note that when a non-empty directory is removed, this event is not
7077     sent for the subdirectories in that directory.
7078    
7079     8.19. Database instrument directory information changed
7080    
7081     Client may want to be notified when changes were made to directories
7082     in the instruments database by issuing the following command:
7083    
7084     SUBSCRIBE DB_INSTRUMENT_DIRECTORY_INFO
7085    
7086     Server will start sending the following notification messages:
7087    
7088     "NOTIFY:DB_INSTRUMENT_DIRECTORY_INFO:<dir-path>"
7089    
7090     where <dir-path> will be replaced by the absolute path name of the
7091     directory, for which information changes occurred. The front-end
7092     will have to send the respective command to actually get the updated
7093     directory info. Because these messages will be triggered by LSCP
7094     commands issued by other clients rather than real time events
7095     happening on the server, it is believed that an empty notification
7096     message is sufficient here.
7097    
7098     "NOTIFY:DB_INSTRUMENT_DIRECTORY_INFO:NAME <old-dir-path> <new-
7099     name>"
7100    
7101     where <old-dir-path> is the old absolute path name of the directory
7102     (encapsulated into apostrophes), which name is changes and <new-name>
7103     is the new name of the directory, encapsulated into apostrophes.
7104    
7105    
7106    
7107    
7108    
7109    
7110    
7111 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 127]
7112 iliev 1162
7113 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7114 iliev 1162
7115    
7116     8.20. Number of database instruments changed
7117    
7118     Client may want to be notified when the number of instruments in a
7119     particular directory in the instruments database is changed by
7120     issuing the following command:
7121    
7122     SUBSCRIBE DB_INSTRUMENT_COUNT
7123    
7124     Server will start sending the following notification messages:
7125    
7126     "NOTIFY:DB_INSTRUMENT_COUNT:<dir-path>"
7127    
7128     where <dir-path> will be replaced by the absolute path name of the
7129     directory in the instruments database, in which the number of
7130     instruments is changed.
7131    
7132     Note that when a non-empty directory is removed, this event is not
7133     sent for the instruments in that directory.
7134    
7135     8.21. Database instrument information changed
7136    
7137     Client may want to be notified when changes were made to instruments
7138     in the instruments database by issuing the following command:
7139    
7140     SUBSCRIBE DB_INSTRUMENT_INFO
7141    
7142     Server will start sending the following notification messages:
7143    
7144     "NOTIFY:DB_INSTRUMENT_INFO:<instr-path>"
7145    
7146     where <instr-path> will be replaced by the absolute path name of the
7147     instrument, which settings are changed. The front-end will have to
7148     send the respective command to actually get the updated directory
7149     info. Because these messages will be triggered by LSCP commands
7150     issued by other clients rather than real time events happening on the
7151     server, it is believed that an empty notification message is
7152     sufficient here.
7153    
7154     "NOTIFY:DB_INSTRUMENT_INFO:NAME <old-instr-path> <new-name>"
7155    
7156     where <old-instr-path> is the old absolute path name of the
7157     instrument (encapsulated into apostrophes), which name is changes and
7158     <new-name> is the new name of the instrument, encapsulated into
7159     apostrophes.
7160    
7161    
7162    
7163    
7164    
7165    
7166    
7167 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 128]
7168 iliev 1162
7169 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7170 iliev 1162
7171    
7172 iliev 1201 8.22. Database job status information changed
7173 iliev 1162
7174 iliev 1201 Client may want to be notified when the status of particular database
7175     instruments job is changed by issuing the following command:
7176    
7177     SUBSCRIBE DB_INSTRUMENTS_JOB_INFO
7178    
7179     Server will start sending the following notification messages:
7180    
7181     "NOTIFY:DB_INSTRUMENTS_JOB_INFO:<job-id>"
7182    
7183     where <job-id> will be replaced by the numerical ID of the job, which
7184     status is changed. The front-end will have to send the respective
7185     command to actually get the status info. Because these messages will
7186     be triggered by LSCP commands issued by other clients rather than
7187     real time events happening on the server, it is believed that an
7188     empty notification message is sufficient here.
7189    
7190     8.23. Miscellaneous and debugging events
7191    
7192 schoenebeck 940 Client may want to be notified of miscellaneous and debugging events
7193     occurring at the server by issuing the following command:
7194 senoner 542
7195 schoenebeck 940 SUBSCRIBE MISCELLANEOUS
7196 senoner 542
7197 schoenebeck 940 Server will start sending the following notification messages:
7198 senoner 542
7199 schoenebeck 940 "NOTIFY:MISCELLANEOUS:<string>"
7200 senoner 542
7201 schoenebeck 940 where <string> will be replaced by whatever data server wants to send
7202     to the client. Client MAY display this data to the user AS IS to
7203     facilitate debugging.
7204 senoner 542
7205    
7206    
7207    
7208    
7209    
7210    
7211    
7212    
7213    
7214    
7215    
7216    
7217    
7218    
7219    
7220    
7221    
7222    
7223 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 129]
7224 schoenebeck 940
7225 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7226 senoner 542
7227    
7228 schoenebeck 575 9. Security Considerations
7229 senoner 542
7230     As there is so far no method of authentication and authorization
7231     defined and so not required for a client applications to succeed to
7232     connect, running LinuxSampler might be a security risk for the host
7233     system the LinuxSampler instance is running on.
7234    
7235    
7236    
7237    
7238    
7239    
7240    
7241    
7242    
7243    
7244    
7245    
7246    
7247    
7248    
7249    
7250    
7251    
7252    
7253    
7254    
7255    
7256    
7257    
7258    
7259    
7260    
7261    
7262    
7263    
7264    
7265    
7266    
7267    
7268    
7269    
7270    
7271    
7272    
7273    
7274    
7275    
7276    
7277    
7278    
7279 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 130]
7280 schoenebeck 940
7281 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7282 senoner 542
7283    
7284 schoenebeck 575 10. Acknowledgments
7285 senoner 542
7286     This document has benefited greatly from the comments of the
7287     following people, discussed on the LinuxSampler developer's mailing
7288     list:
7289    
7290     Rui Nuno Capela
7291 schoenebeck 708
7292 senoner 542 Vladimir Senkov
7293 schoenebeck 708
7294 senoner 542 Mark Knecht
7295 schoenebeck 708
7296 schoenebeck 561 Grigor Iliev
7297 senoner 542
7298    
7299 schoenebeck 708
7300 senoner 542
7301    
7302 schoenebeck 575
7303    
7304 schoenebeck 940
7305    
7306    
7307    
7308    
7309    
7310    
7311    
7312    
7313    
7314    
7315    
7316    
7317    
7318    
7319    
7320    
7321    
7322    
7323    
7324    
7325    
7326    
7327    
7328 schoenebeck 974
7329    
7330    
7331    
7332    
7333    
7334    
7335 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 131]
7336 schoenebeck 940
7337 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7338 schoenebeck 940
7339    
7340 schoenebeck 974 11. References
7341 senoner 542
7342 schoenebeck 1251 [RFC20] UCLA, "ASCII format for Network Interchange", RFC 20,
7343     1969.
7344    
7345 schoenebeck 974 [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
7346     Requirement Levels", RFC 2119, 1997.
7347 senoner 542
7348 schoenebeck 974 [RFC2234] Crocker, D. and P. Overell, "Augmented BNF for Syntax
7349     Specifications", RFC 2234, 1997.
7350 senoner 542
7351 schoenebeck 974 [RFC793] Defense Advanced Research Projects Agency, "TRANSMISSION
7352     CONTROL PROTOCOL", RFC 793, 1981.
7353 senoner 542
7354    
7355    
7356    
7357    
7358    
7359    
7360    
7361    
7362    
7363    
7364    
7365    
7366    
7367    
7368    
7369    
7370 schoenebeck 940
7371    
7372    
7373    
7374    
7375    
7376    
7377    
7378    
7379    
7380    
7381    
7382    
7383    
7384    
7385    
7386    
7387    
7388    
7389    
7390    
7391 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 132]
7392 schoenebeck 940
7393 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7394 schoenebeck 940
7395    
7396 schoenebeck 974 Author's Address
7397 senoner 542
7398 schoenebeck 974 C. Schoenebeck
7399     Interessengemeinschaft Software Engineering e. V.
7400     Max-Planck-Str. 39
7401     74081 Heilbronn
7402     Germany
7403 senoner 542
7404 schoenebeck 974 Email: schoenebeck at software minus engineering dot org
7405 senoner 542
7406    
7407    
7408    
7409    
7410    
7411    
7412    
7413    
7414    
7415    
7416    
7417    
7418    
7419    
7420    
7421    
7422    
7423    
7424    
7425    
7426    
7427    
7428    
7429    
7430    
7431    
7432    
7433    
7434    
7435    
7436    
7437    
7438    
7439    
7440    
7441    
7442    
7443    
7444    
7445    
7446    
7447 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 133]
7448 schoenebeck 974
7449 schoenebeck 1251 Internet-Draft LinuxSampler Control Protocol (draft) June 2007
7450 senoner 542
7451    
7452 schoenebeck 974 Full Copyright Statement
7453 senoner 542
7454 iliev 1110 Copyright (C) The IETF Trust (2007).
7455 senoner 542
7456 schoenebeck 974 This document is subject to the rights, licenses and restrictions
7457     contained in BCP 78, and except as set forth therein, the authors
7458     retain all their rights.
7459 senoner 542
7460 schoenebeck 974 This document and the information contained herein are provided on an
7461     "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
7462 iliev 1110 OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
7463     THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
7464     OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
7465     THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
7466 schoenebeck 974 WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
7467 senoner 542
7468    
7469 schoenebeck 974 Intellectual Property
7470 senoner 542
7471 schoenebeck 974 The IETF takes no position regarding the validity or scope of any
7472     Intellectual Property Rights or other rights that might be claimed to
7473     pertain to the implementation or use of the technology described in
7474     this document or the extent to which any license under such rights
7475     might or might not be available; nor does it represent that it has
7476     made any independent effort to identify any such rights. Information
7477     on the procedures with respect to rights in RFC documents can be
7478     found in BCP 78 and BCP 79.
7479 senoner 542
7480 schoenebeck 974 Copies of IPR disclosures made to the IETF Secretariat and any
7481     assurances of licenses to be made available, or the result of an
7482     attempt made to obtain a general license or permission for the use of
7483     such proprietary rights by implementers or users of this
7484     specification can be obtained from the IETF on-line IPR repository at
7485     http://www.ietf.org/ipr.
7486 senoner 542
7487 schoenebeck 974 The IETF invites any interested party to bring to its attention any
7488     copyrights, patents or patent applications, or other proprietary
7489     rights that may cover technology that may be required to implement
7490     this standard. Please address the information to the IETF at
7491     ietf-ipr@ietf.org.
7492 senoner 542
7493    
7494 schoenebeck 974 Acknowledgment
7495 senoner 542
7496 schoenebeck 974 Funding for the RFC Editor function is provided by the IETF
7497     Administrative Support Activity (IASA).
7498 senoner 542
7499    
7500 schoenebeck 974
7501    
7502    
7503 schoenebeck 1251 Schoenebeck Expires December 24, 2007 [Page 134]
7504 schoenebeck 940

  ViewVC Help
Powered by ViewVC