forked from nwhitehead/pyfluidsynth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fluidsynth.py
1103 lines (925 loc) · 46.7 KB
/
fluidsynth.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
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
448
449
450
451
452
453
454
455
456
457
458
459
460
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
================================================================================
pyFluidSynth
Python bindings for FluidSynth
Copyright 2008, Nathan Whitehead <[email protected]>
Released under the LGPL
This module contains python bindings for FluidSynth. FluidSynth is a
software synthesizer for generating music. It works like a MIDI
synthesizer. You load patches, set parameters, then send NOTEON and
NOTEOFF events to play notes. Instruments are defined in SoundFonts,
generally files with the extension SF2. FluidSynth can either be used
to play audio itself, or you can call a function that returns chunks
of audio data and output the data to the soundcard yourself.
FluidSynth works on all major platforms, so pyFluidSynth should also.
================================================================================
"""
from ctypes import *
from ctypes.util import find_library
import os
# A short circuited or expression to find the FluidSynth library
# (mostly needed for Windows distributions of libfluidsynth supplied with QSynth)
# DLL search method changed in Python 3.8
# https://docs.python.org/3/library/os.html#os.add_dll_directory
if hasattr(os, 'add_dll_directory'):
os.add_dll_directory(os.getcwd())
lib = find_library('fluidsynth') or \
find_library('libfluidsynth') or \
find_library('libfluidsynth-3') or \
find_library('libfluidsynth-2') or \
find_library('libfluidsynth-1')
if lib is None:
raise ImportError("Couldn't find the FluidSynth library.")
# Dynamically link the FluidSynth library
# Architecture (32-/64-bit) must match your Python version
_fl = CDLL(lib)
# Helper function for declaring function prototypes
def cfunc(name, result, *args):
"""Build and apply a ctypes prototype complete with parameter flags"""
if hasattr(_fl, name):
atypes = []
aflags = []
for arg in args:
atypes.append(arg[1])
aflags.append((arg[2], arg[0]) + arg[3:])
return CFUNCTYPE(result, *atypes)((name, _fl), tuple(aflags))
else: # Handle Fluidsynth 1.x, 2.x, etc. API differences
return None
# Bump this up when changing the interface for users
api_version = '1.3.1'
# Function prototypes for C versions of functions
FLUID_OK = 0
FLUID_FAILED = -1
fluid_version = cfunc('fluid_version', c_void_p,
('major', POINTER(c_int), 1),
('minor', POINTER(c_int), 1),
('micro', POINTER(c_int), 1))
majver = c_int()
fluid_version(majver, c_int(), c_int())
if majver.value > 1:
FLUIDSETTING_EXISTS = FLUID_OK
else:
FLUIDSETTING_EXISTS = 1
# fluid settings
new_fluid_settings = cfunc('new_fluid_settings', c_void_p)
fluid_settings_setstr = cfunc('fluid_settings_setstr', c_int,
('settings', c_void_p, 1),
('name', c_char_p, 1),
('str', c_char_p, 1))
fluid_settings_setnum = cfunc('fluid_settings_setnum', c_int,
('settings', c_void_p, 1),
('name', c_char_p, 1),
('val', c_double, 1))
fluid_settings_setint = cfunc('fluid_settings_setint', c_int,
('settings', c_void_p, 1),
('name', c_char_p, 1),
('val', c_int, 1))
fluid_settings_copystr = cfunc('fluid_settings_copystr', c_int,
('settings', c_void_p, 1),
('name', c_char_p, 1),
('str', c_char_p, 1),
('len', c_int, 1))
fluid_settings_getnum = cfunc('fluid_settings_getnum', c_int,
('settings', c_void_p, 1),
('name', c_char_p, 1),
('val', POINTER(c_double), 1))
fluid_settings_getint = cfunc('fluid_settings_getint', c_int,
('settings', c_void_p, 1),
('name', c_char_p, 1),
('val', POINTER(c_int), 1))
delete_fluid_settings = cfunc('delete_fluid_settings', None,
('settings', c_void_p, 1))
fluid_synth_activate_key_tuning = cfunc('fluid_synth_activate_key_tuning', c_int,
('synth', c_void_p, 1),
('bank', c_int, 1),
('prog', c_int, 1),
('name', c_char_p, 1),
('pitch', POINTER(c_double), 1),
('apply', c_int, 1))
fluid_synth_activate_tuning = cfunc('fluid_synth_activate_tuning', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('bank', c_int, 1),
('prog', c_int, 1),
('apply', c_int, 1))
fluid_synth_deactivate_tuning = cfunc('fluid_synth_deactivate_tuning', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('apply', c_int, 1))
fluid_synth_tuning_dump = cfunc('fluid_synth_tuning_dump', c_int,
('synth', c_void_p, 1),
('bank', c_int, 1),
('prog', c_int, 1),
('name', c_char_p, 1),
('length', c_int, 1),
('pitch', POINTER(c_double), 1))
# fluid synth
new_fluid_synth = cfunc('new_fluid_synth', c_void_p,
('settings', c_void_p, 1))
delete_fluid_synth = cfunc('delete_fluid_synth', None,
('synth', c_void_p, 1))
fluid_synth_sfload = cfunc('fluid_synth_sfload', c_int,
('synth', c_void_p, 1),
('filename', c_char_p, 1),
('update_midi_presets', c_int, 1))
fluid_synth_sfunload = cfunc('fluid_synth_sfunload', c_int,
('synth', c_void_p, 1),
('sfid', c_int, 1),
('update_midi_presets', c_int, 1))
fluid_synth_program_select = cfunc('fluid_synth_program_select', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('sfid', c_int, 1),
('bank', c_int, 1),
('preset', c_int, 1))
fluid_synth_noteon = cfunc('fluid_synth_noteon', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('key', c_int, 1),
('vel', c_int, 1))
fluid_synth_noteoff = cfunc('fluid_synth_noteoff', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('key', c_int, 1))
fluid_synth_pitch_bend = cfunc('fluid_synth_pitch_bend', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('val', c_int, 1))
fluid_synth_cc = cfunc('fluid_synth_cc', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('ctrl', c_int, 1),
('val', c_int, 1))
fluid_synth_get_cc = cfunc('fluid_synth_get_cc', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('num', c_int, 1),
('pval', POINTER(c_int), 1))
fluid_synth_program_change = cfunc('fluid_synth_program_change', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('prg', c_int, 1))
fluid_synth_unset_program = cfunc('fluid_synth_unset_program', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1))
fluid_synth_get_program = cfunc('fluid_synth_get_program', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('sfont_id', POINTER(c_int), 1),
('bank_num', POINTER(c_int), 1),
('preset_num', POINTER(c_int), 1))
fluid_synth_bank_select = cfunc('fluid_synth_bank_select', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('bank', c_int, 1))
fluid_synth_sfont_select = cfunc('fluid_synth_sfont_select', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('sfid', c_int, 1))
fluid_synth_program_reset = cfunc('fluid_synth_program_reset', c_int,
('synth', c_void_p, 1))
fluid_synth_system_reset = cfunc('fluid_synth_system_reset', c_int,
('synth', c_void_p, 1))
fluid_synth_write_s16 = cfunc('fluid_synth_write_s16', c_void_p,
('synth', c_void_p, 1),
('len', c_int, 1),
('lbuf', c_void_p, 1),
('loff', c_int, 1),
('lincr', c_int, 1),
('rbuf', c_void_p, 1),
('roff', c_int, 1),
('rincr', c_int, 1))
fluid_synth_all_notes_off = cfunc('fluid_synth_all_notes_off', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1))
fluid_synth_all_sounds_off = cfunc('fluid_synth_all_sounds_off', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1))
class fluid_synth_channel_info_t(Structure):
_fields_ = [
('assigned', c_int),
('sfont_id', c_int),
('bank', c_int),
('program', c_int),
('name', c_char*32),
('reserved', c_char*32)]
fluid_synth_get_channel_info = cfunc('fluid_synth_get_channel_info', c_int,
('synth', c_void_p, 1),
('chan', c_int, 1),
('info', POINTER(fluid_synth_channel_info_t), 1))
fluid_synth_set_reverb_full = cfunc('fluid_synth_set_reverb_full', c_int,
('synth', c_void_p, 1),
('set', c_int, 1),
('roomsize', c_double, 1),
('damping', c_double, 1),
('width', c_double, 1),
('level', c_double, 1))
fluid_synth_set_chorus_full = cfunc('fluid_synth_set_chorus_full', c_int,
('synth', c_void_p, 1),
('set', c_int, 1),
('nr', c_int, 1),
('level', c_double, 1),
('speed', c_double, 1),
('depth_ms', c_double, 1),
('type', c_int, 1))
fluid_synth_set_reverb = cfunc('fluid_synth_set_reverb', c_int,
('synth', c_void_p, 1),
('roomsize', c_double, 1),
('damping', c_double, 1),
('width', c_double, 1),
('level', c_double, 1))
fluid_synth_set_chorus = cfunc('fluid_synth_set_chorus', c_int,
('synth', c_void_p, 1),
('nr', c_int, 1),
('level', c_double, 1),
('speed', c_double, 1),
('depth_ms', c_double, 1),
('type', c_int, 1))
fluid_synth_set_reverb_roomsize = cfunc('fluid_synth_set_reverb_roomsize', c_int,
('synth', c_void_p, 1),
('roomsize', c_double, 1))
fluid_synth_set_reverb_damp = cfunc('fluid_synth_set_reverb_damp', c_int,
('synth', c_void_p, 1),
('damping', c_double, 1))
fluid_synth_set_reverb_level = cfunc('fluid_synth_set_reverb_level', c_int,
('synth', c_void_p, 1),
('level', c_double, 1))
fluid_synth_set_reverb_width = cfunc('fluid_synth_set_reverb_width', c_int,
('synth', c_void_p, 1),
('width', c_double, 1))
fluid_synth_set_chorus_nr = cfunc('fluid_synth_set_chorus_nr', c_int,
('synth', c_void_p, 1),
('nr', c_int, 1))
fluid_synth_set_chorus_level = cfunc('fluid_synth_set_chorus_level', c_int,
('synth', c_void_p, 1),
('level', c_double, 1))
fluid_synth_set_chorus_type = cfunc('fluid_synth_set_chorus_type', c_int,
('synth', c_void_p, 1),
('type', c_int, 1))
fluid_synth_get_reverb_roomsize = cfunc('fluid_synth_get_reverb_roomsize', c_double,
('synth', c_void_p, 1))
fluid_synth_get_reverb_damp = cfunc('fluid_synth_get_reverb_damp', c_double,
('synth', c_void_p, 1))
fluid_synth_get_reverb_level = cfunc('fluid_synth_get_reverb_level', c_double,
('synth', c_void_p, 1))
fluid_synth_get_reverb_width = cfunc('fluid_synth_get_reverb_width', c_double,
('synth', c_void_p, 1))
fluid_synth_get_chorus_nr = cfunc('fluid_synth_get_chorus_nr', c_int,
('synth', c_void_p, 1))
fluid_synth_get_chorus_level = cfunc('fluid_synth_get_chorus_level', c_double,
('synth', c_void_p, 1))
fluid_synth_get_chorus_speed_Hz = cfunc('fluid_synth_get_chorus_speed_Hz', c_double,
('synth', c_void_p, 1))
fluid_synth_get_chorus_depth_ms = cfunc('fluid_synth_get_chorus_depth_ms', c_double,
('synth', c_void_p, 1))
fluid_synth_get_chorus_type = cfunc('fluid_synth_get_chorus_type', c_int,
('synth', c_void_p, 1))
fluid_synth_set_midi_router = cfunc('fluid_synth_set_midi_router', None,
('synth', c_void_p, 1),
('router', c_void_p, 1))
fluid_synth_handle_midi_event = cfunc('fluid_synth_handle_midi_event', c_int,
('data', c_void_p, 1),
('event', c_void_p, 1))
# fluid sequencer
new_fluid_sequencer2 = cfunc('new_fluid_sequencer2', c_void_p,
('use_system_timer', c_int, 1))
fluid_sequencer_process = cfunc('fluid_sequencer_process', None,
('seq', c_void_p, 1),
('msec', c_uint, 1))
fluid_sequencer_register_fluidsynth = cfunc('fluid_sequencer_register_fluidsynth', c_short,
('seq', c_void_p, 1),
('synth', c_void_p, 1))
fluid_sequencer_register_client = cfunc('fluid_sequencer_register_client', c_short,
('seq', c_void_p, 1),
('name', c_char_p, 1),
('callback', CFUNCTYPE(None, c_uint, c_void_p, c_void_p, c_void_p), 1),
('data', c_void_p, 1))
fluid_sequencer_get_tick = cfunc('fluid_sequencer_get_tick', c_uint,
('seq', c_void_p, 1))
fluid_sequencer_set_time_scale = cfunc('fluid_sequencer_set_time_scale', None,
('seq', c_void_p, 1),
('scale', c_double, 1))
fluid_sequencer_get_time_scale = cfunc('fluid_sequencer_get_time_scale', c_double,
('seq', c_void_p, 1))
fluid_sequencer_send_at = cfunc('fluid_sequencer_send_at', c_int,
('seq', c_void_p, 1),
('evt', c_void_p, 1),
('time', c_uint, 1),
('absolute', c_int, 1))
delete_fluid_sequencer = cfunc('delete_fluid_sequencer', None,
('seq', c_void_p, 1))
# fluid event
new_fluid_event = cfunc('new_fluid_event', c_void_p)
fluid_event_set_source = cfunc('fluid_event_set_source', None,
('evt', c_void_p, 1),
('src', c_void_p, 1))
fluid_event_set_dest = cfunc('fluid_event_set_dest', None,
('evt', c_void_p, 1),
('dest', c_void_p, 1))
fluid_event_timer = cfunc('fluid_event_timer', None,
('evt', c_void_p, 1),
('data', c_void_p, 1))
fluid_event_note = cfunc('fluid_event_note', None,
('evt', c_void_p, 1),
('channel', c_int, 1),
('key', c_short, 1),
('vel', c_short, 1),
('duration', c_uint, 1))
fluid_event_noteon = cfunc('fluid_event_noteon', None,
('evt', c_void_p, 1),
('channel', c_int, 1),
('key', c_short, 1),
('vel', c_short, 1))
fluid_event_noteoff = cfunc('fluid_event_noteoff', None,
('evt', c_void_p, 1),
('channel', c_int, 1),
('key', c_short, 1))
delete_fluid_event = cfunc('delete_fluid_event', None,
('evt', c_void_p, 1))
fluid_midi_event_get_channel = cfunc('fluid_midi_event_get_channel', c_int,
('evt', c_void_p, 1))
fluid_midi_event_get_control = cfunc('fluid_midi_event_get_control', c_int,
('evt', c_void_p, 1))
fluid_midi_event_get_program = cfunc('fluid_midi_event_get_program', c_int,
('evt', c_void_p, 1))
fluid_midi_event_get_key = cfunc('fluid_midi_event_get_key', c_int,
('evt', c_void_p, 1))
fluid_midi_event_get_type = cfunc('fluid_midi_event_get_type', c_int,
('evt', c_void_p, 1))
fluid_midi_event_get_value = cfunc('fluid_midi_event_get_value', c_int,
('evt', c_void_p, 1))
fluid_midi_event_get_velocity = cfunc('fluid_midi_event_get_velocity', c_int,
('evt', c_void_p, 1))
# fluid_player_status returned by fluid_player_get_status()
FLUID_PLAYER_READY = 0
FLUID_PLAYER_PLAYING = 1
FLUID_PLAYER_STOPPING = 2
FLUID_PLAYER_DONE = 3
# tempo_type used by fluid_player_set_tempo()
FLUID_PLAYER_TEMPO_INTERNAL = 0
FLUID_PLAYER_TEMPO_EXTERNAL_BPM = 1
FLUID_PLAYER_TEMPO_EXTERNAL_MIDI = 2
new_fluid_player = cfunc('new_fluid_player', c_void_p,
('synth', c_void_p, 1))
delete_fluid_player = cfunc('delete_fluid_player', None,
('player', c_void_p, 1))
fluid_player_add = cfunc('fluid_player_add', c_int,
('player', c_void_p, 1),
('filename', c_char_p, 1))
fluid_player_get_status = cfunc('fluid_player_get_status', c_int,
('player', c_void_p, 1))
fluid_player_join = cfunc('fluid_player_join', c_int,
('player', c_void_p, 1))
fluid_player_play = cfunc('fluid_player_play', c_int,
('player', c_void_p, 1))
fluid_player_set_playback_callback = cfunc('fluid_player_set_playback_callback', c_int,
('player', c_void_p, 1),
('handler', CFUNCTYPE(c_int, c_void_p, c_void_p), 1),
('event_handler_data', c_void_p, 1))
fluid_player_set_tempo = cfunc('fluid_player_set_tempo', c_int,
('player', c_void_p, 1),
('tempo_type', c_int, 1),
('tempo', c_double, 1))
fluid_player_seek = cfunc('fluid_player_seek', c_int,
('player', c_void_p, 1),
('ticks', c_int, 1))
fluid_player_stop = cfunc('fluid_player_stop', c_int,
('player', c_void_p, 1))
# fluid audio driver
new_fluid_audio_driver = cfunc('new_fluid_audio_driver', c_void_p,
('settings', c_void_p, 1),
('synth', c_void_p, 1))
delete_fluid_audio_driver = cfunc('delete_fluid_audio_driver', None,
('driver', c_void_p, 1))
# fluid midi driver
new_fluid_midi_driver = cfunc('new_fluid_midi_driver', c_void_p,
('settings', c_void_p, 1),
('handler', CFUNCTYPE(c_int, c_void_p, c_void_p), 1),
('event_handler_data', c_void_p, 1))
# fluid midi router rule
class fluid_midi_router_t(Structure):
_fields_ = [
('synth', c_void_p),
('rules_mutex', c_void_p),
('rules', c_void_p*6),
('free_rules', c_void_p),
('event_handler', c_void_p),
('event_handler_data', c_void_p),
('nr_midi_channels', c_int),
('cmd_rule', c_void_p),
('cmd_rule_type', POINTER(c_int))]
delete_fluid_midi_router_rule = cfunc('delete_fluid_midi_router_rule', c_int,
('rule', c_void_p, 1))
new_fluid_midi_router_rule = cfunc('new_fluid_midi_router_rule', c_void_p)
fluid_midi_router_rule_set_chan = cfunc('fluid_midi_router_rule_set_chan', None,
('rule', c_void_p, 1),
('min', c_int, 1),
('max', c_int, 1),
('mul', c_float, 1),
('add', c_int, 1))
fluid_midi_router_rule_set_param1 = cfunc('fluid_midi_router_rule_set_param1', None,
('rule', c_void_p, 1),
('min', c_int, 1),
('max', c_int, 1),
('mul', c_float, 1),
('add', c_int, 1))
fluid_midi_router_rule_set_param2 = cfunc('fluid_midi_router_rule_set_param2', None,
('rule', c_void_p, 1),
('min', c_int, 1),
('max', c_int, 1),
('mul', c_float, 1),
('add', c_int, 1))
# fluid midi router
new_fluid_midi_router = cfunc('new_fluid_midi_router', POINTER(fluid_midi_router_t),
('settings', c_void_p, 1),
('handler', CFUNCTYPE(c_int, c_void_p, c_void_p), 1),
('event_handler_data', c_void_p, 1))
fluid_midi_router_handle_midi_event = cfunc('fluid_midi_router_handle_midi_event', c_int,
('data', c_void_p, 1),
('event', c_void_p, 1))
fluid_midi_router_clear_rules = cfunc('fluid_midi_router_clear_rules', c_int,
('router', POINTER(fluid_midi_router_t), 1))
fluid_midi_router_set_default_rules = cfunc('fluid_midi_router_set_default_rules', c_int,
('router', POINTER(fluid_midi_router_t), 1))
fluid_midi_router_add_rule = cfunc('fluid_midi_router_add_rule', c_int,
('router', POINTER(fluid_midi_router_t), 1),
('rule', c_void_p, 1),
('type', c_int, 1))
# fluidsynth 2.x
new_fluid_cmd_handler=cfunc('new_fluid_cmd_handler', c_void_p,
('synth', c_void_p, 1),
('router', c_void_p, 1))
fluid_synth_get_sfont_by_id = cfunc('fluid_synth_get_sfont_by_id', c_void_p,
('synth', c_void_p, 1),
('id', c_int, 1))
fluid_sfont_get_preset = cfunc('fluid_sfont_get_preset', c_void_p,
('sfont', c_void_p, 1),
('banknum', c_int, 1),
('prenum', c_int, 1))
fluid_preset_get_name = cfunc('fluid_preset_get_name', c_char_p,
('preset', c_void_p, 1))
fluid_synth_set_reverb = cfunc('fluid_synth_set_reverb', c_int,
('synth', c_void_p, 1),
('roomsize', c_double, 1),
('damping', c_double, 1),
('width', c_double, 1),
('level', c_double, 1))
fluid_synth_set_chorus = cfunc('fluid_synth_set_chorus', c_int,
('synth', c_void_p, 1),
('nr', c_int, 1),
('level', c_double, 1),
('speed', c_double, 1),
('depth_ms', c_double, 1),
('type', c_int, 1))
fluid_synth_get_chorus_speed = cfunc('fluid_synth_get_chorus_speed', c_double,
('synth', c_void_p, 1))
fluid_synth_get_chorus_depth = cfunc('fluid_synth_get_chorus_depth', c_double,
('synth', c_void_p, 1))
def fluid_synth_write_s16_stereo(synth, len):
"""Return generated samples in stereo 16-bit format
Return value is a Numpy array of samples.
"""
import numpy
buf = create_string_buffer(len * 4)
fluid_synth_write_s16(synth, len, buf, 0, 2, buf, 1, 2)
return numpy.frombuffer(buf[:], dtype=numpy.int16)
# Object-oriented interface, simplifies access to functions
class Synth:
"""Synth represents a FluidSynth synthesizer"""
def __init__(self, gain=0.2, samplerate=44100, channels=256, **kwargs):
"""Create new synthesizer object to control sound generation
Optional keyword arguments:
gain : scale factor for audio output, default is 0.2
lower values are quieter, allow more simultaneous notes
samplerate : output samplerate in Hz, default is 44100 Hz
added capability for passing arbitrary fluid settings using args
"""
self.settings = new_fluid_settings()
self.setting('synth.gain', gain)
self.setting('synth.sample-rate', float(samplerate))
self.setting('synth.midi-channels', channels)
for opt,val in kwargs.items():
self.setting(opt, val)
self.synth = new_fluid_synth(self.settings)
self.audio_driver = None
self.midi_driver = None
self.router = None
def setting(self, opt, val):
"""change an arbitrary synth setting, type-smart"""
if isinstance(val, (str, bytes)):
fluid_settings_setstr(self.settings, opt.encode(), val.encode())
elif isinstance(val, int):
fluid_settings_setint(self.settings, opt.encode(), val)
elif isinstance(val, float):
fluid_settings_setnum(self.settings, opt.encode(), c_double(val))
def get_setting(self, opt):
"""get current value of an arbitrary synth setting"""
val = c_int()
if fluid_settings_getint(self.settings, opt.encode(), byref(val)) == FLUIDSETTING_EXISTS:
return val.value
strval = create_string_buffer(32)
if fluid_settings_copystr(self.settings, opt.encode(), strval, 32) == FLUIDSETTING_EXISTS:
return strval.value.decode()
num = c_double()
if fluid_settings_getnum(self.settings, opt.encode(), byref(num)) == FLUIDSETTING_EXISTS:
return round(num.value, 6)
return None
def start(self, driver=None, device=None, midi_driver=None, midi_router=None):
"""Start audio output driver in separate background thread
Call this function any time after creating the Synth object.
If you don't call this function, use get_samples() to generate
samples.
Optional keyword argument:
driver : which audio driver to use for output
device : the device to use for audio output
midi_driver : the midi driver to use for communicating with midi devices
see http://www.fluidsynth.org/api/fluidsettings.xml for allowed values and defaults by platform
"""
driver = driver or self.get_setting('audio.driver')
device = device or self.get_setting('audio.%s.device' % driver)
midi_driver = midi_driver or self.get_setting('midi.driver')
self.setting('audio.driver', driver)
self.setting('audio.%s.device' % driver, device)
self.audio_driver = new_fluid_audio_driver(self.settings, self.synth)
self.setting('midi.driver', midi_driver)
self.router = new_fluid_midi_router(self.settings, fluid_synth_handle_midi_event, self.synth)
if new_fluid_cmd_handler:
new_fluid_cmd_handler(self.synth, self.router)
else:
fluid_synth_set_midi_router(self.synth, self.router)
if midi_router == None: ## Use fluidsynth to create a MIDI event handler
self.midi_driver = new_fluid_midi_driver(self.settings, fluid_midi_router_handle_midi_event, self.router)
self.custom_router_callback = None
else: ## Supply an external MIDI event handler
self.custom_router_callback = CFUNCTYPE(c_int, c_void_p, c_void_p)(midi_router)
self.midi_driver = new_fluid_midi_driver(self.settings, self.custom_router_callback, self.router)
return FLUID_OK
def delete(self):
if self.audio_driver:
delete_fluid_audio_driver(self.audio_driver)
delete_fluid_synth(self.synth)
delete_fluid_settings(self.settings)
def sfload(self, filename, update_midi_preset=0):
"""Load SoundFont and return its ID"""
return fluid_synth_sfload(self.synth, filename.encode(), update_midi_preset)
def sfunload(self, sfid, update_midi_preset=0):
"""Unload a SoundFont and free memory it used"""
return fluid_synth_sfunload(self.synth, sfid, update_midi_preset)
def program_select(self, chan, sfid, bank, preset):
"""Select a program"""
return fluid_synth_program_select(self.synth, chan, sfid, bank, preset)
def program_unset(self, chan):
"""Set the preset of a MIDI channel to an unassigned state"""
return fluid_synth_unset_program(self.synth, chan)
def channel_info(self, chan):
"""get soundfont, bank, prog, preset name of channel"""
if fluid_synth_get_channel_info is not None:
info=fluid_synth_channel_info_t()
fluid_synth_get_channel_info(self.synth, chan, byref(info))
return (info.sfont_id, info.bank, info.program, info.name)
else:
(sfontid, banknum, presetnum) = self.program_info(chan)
presetname = self.sfpreset_name(sfontid, banknum, presetnum)
return (sfontid, banknum, presetnum, presetname)
def program_info(self, chan):
"""get active soundfont, bank, prog on a channel"""
if fluid_synth_get_program is not None:
sfontid=c_int()
banknum=c_int()
presetnum=c_int()
fluid_synth_get_program(self.synth, chan, byref(sfontid), byref(banknum), byref(presetnum))
return (sfontid.value, banknum.value, presetnum.value)
else:
(sfontid, banknum, prognum, presetname) = self.channel_info(chan)
return (sfontid, banknum, prognum)
def sfpreset_name(self, sfid, bank, prenum):
"""Return name of a soundfont preset"""
if fluid_synth_get_sfont_by_id is not None:
sfont=fluid_synth_get_sfont_by_id(self.synth, sfid)
preset=fluid_sfont_get_preset(sfont, bank, prenum)
if not preset:
return None
return fluid_preset_get_name(preset).decode('ascii')
else:
(sfontid, banknum, presetnum, presetname) = self.channel_info(chan)
return presetname
def router_clear(self):
if self.router is not None:
fluid_midi_router_clear_rules(self.router)
def router_default(self):
if self.router is not None:
fluid_midi_router_set_default_rules(self.router)
def router_begin(self, type):
"""types are [note|cc|prog|pbend|cpress|kpress]"""
if self.router is not None:
if type=='note':
self.router.cmd_rule_type=0
elif type=='cc':
self.router.cmd_rule_type=1
elif type=='prog':
self.router.cmd_rule_type=2
elif type=='pbend':
self.router.cmd_rule_type=3
elif type=='cpress':
self.router.cmd_rule_type=4
elif type=='kpress':
self.router.cmd_rule_type=5
if 'self.router.cmd_rule' in globals():
delete_fluid_midi_router_rule(self.router.cmd_rule)
self.router.cmd_rule = new_fluid_midi_router_rule()
def router_end(self):
if self.router is not None:
if self.router.cmd_rule is None:
return
if fluid_midi_router_add_rule(self.router, self.router.cmd_rule, self.router.cmd_rule_type)<0:
delete_fluid_midi_router_rule(self.router.cmd_rule)
self.router.cmd_rule=None
def router_chan(self, min, max, mul, add):
if self.router is not None:
fluid_midi_router_rule_set_chan(self.router.cmd_rule, min, max, mul, add)
def router_par1(self, min, max, mul, add):
if self.router is not None:
fluid_midi_router_rule_set_param1(self.router.cmd_rule, min, max, mul, add)
def router_par2(self, min, max, mul, add):
if self.router is not None:
fluid_midi_router_rule_set_param2(self.router.cmd_rule, min, max, mul, add)
def set_reverb(self, roomsize=-1.0, damping=-1.0, width=-1.0, level=-1.0):
"""
roomsize Reverb room size value (0.0-1.0)
damping Reverb damping value (0.0-1.0)
width Reverb width value (0.0-100.0)
level Reverb level value (0.0-1.0)
"""
if fluid_synth_set_reverb is not None:
return fluid_synth_set_reverb(self.synth, roomsize, damping, width, level)
else:
set=0
if roomsize>=0:
set+=0b0001
if damping>=0:
set+=0b0010
if width>=0:
set+=0b0100
if level>=0:
set+=0b1000
return fluid_synth_set_reverb_full(self.synth, set, roomsize, damping, width, level)
def set_chorus(self, nr=-1, level=-1.0, speed=-1.0, depth=-1.0, type=-1):
"""
nr Chorus voice count (0-99, CPU time consumption proportional to this value)
level Chorus level (0.0-10.0)
speed Chorus speed in Hz (0.29-5.0)
depth_ms Chorus depth (max value depends on synth sample rate, 0.0-21.0 is safe for sample rate values up to 96KHz)
type Chorus waveform type (0=sine, 1=triangle)
"""
if fluid_synth_set_chorus is not None:
return fluid_synth_set_chorus(self.synth, nr, level, speed, depth, type)
else:
set=0
if nr>=0:
set+=0b00001
if level>=0:
set+=0b00010
if speed>=0:
set+=0b00100
if depth>=0:
set+=0b01000
if type>=0:
set+=0b10000
return fluid_synth_set_chorus_full(self.synth, set, nr, level, speed, depth, type)
def set_reverb_roomsize(self, roomsize):
if fluid_synth_set_reverb_roomsize is not None:
return fluid_synth_set_reverb_roomsize(self.synth, roomsize)
else:
return self.set_reverb(roomsize=roomsize)
def set_reverb_damp(self, damping):
if fluid_synth_set_reverb_damp is not None:
return fluid_synth_set_reverb_damp(self.synth, damping)
else:
return self.set_reverb(damping=damping)
def set_reverb_level(self, level):
if fluid_synth_set_reverb_level is not None:
return fluid_synth_set_reverb_level(self.synth, level)
else:
return self.set_reverb(level=level)
def set_reverb_width(self, width):
if fluid_synth_set_reverb_width is not None:
return fluid_synth_set_reverb_width(self.synth, width)
else:
return self.set_reverb(width=width)
def set_chorus_nr(self, nr):
if fluid_synth_set_chorus_nr is not None:
return fluid_synth_set_chorus_nr(self.synth, nr)
else:
return self.set_chorus(nr=nr)
def set_chorus_level(self, level):
if fluid_synth_set_chorus_level is not None:
return fluid_synth_set_chorus_level(self.synth, level)
else:
return self.set_chorus(leve=level)
def set_chorus_speed(self, speed):
if fluid_synth_set_chorus_speed is not None:
return fluid_synth_set_chorus_speed(self.synth, speed)
else:
return self.set_chorus(speed=speed)
def set_chorus_depth(self, depth):
if fluid_synth_set_chorus_depth is not None:
return fluid_synth_set_chorus_depth(self.synth, depth)
else:
return self.set_chorus(depth=depth)
def set_chorus_type(self, type):
if fluid_synth_set_chorus_type is not None:
return fluid_synth_set_chorus_type(self.synth, type)
else:
return self.set_chorus(type=type)
def get_reverb_roomsize(self):
return fluid_synth_get_reverb_roomsize(self.synth)
def get_reverb_damp(self):
return fluid_synth_get_reverb_damp(self.synth)
def get_reverb_level(self):
return fluid_synth_get_reverb_level(self.synth)
def get_reverb_width(self):
return fluid_synth_get_reverb_width(self.synth)
def get_chorus_nr(self):
return fluid_synth_get_chorus_nr(self.synth)
def get_chorus_level(self):
return fluid_synth_get_reverb_level(self.synth)
def get_chorus_speed(self):
if fluid_synth_get_chorus_speed is not None:
return fluid_synth_get_chorus_speed(self.synth)
else:
return fluid_synth_get_chorus_speed_Hz(self.synth)
def get_chorus_depth(self):
if fluid_synth_get_chorus_depth is not None:
return fluid_synth_get_chorus_depth(self.synth)
else:
return fluid_synth_get_chorus_depth_ms(self.synth)
def get_chorus_type(self):
return fluid_synth_get_chorus_type(self.synth)
def noteon(self, chan, key, vel):
"""Play a note"""
if key < 0 or key > 127:
return False
if chan < 0:
return False
if vel < 0 or vel > 127:
return False
return fluid_synth_noteon(self.synth, chan, key, vel)
def noteoff(self, chan, key):
"""Stop a note"""
if key < 0 or key > 127:
return False
if chan < 0:
return False
return fluid_synth_noteoff(self.synth, chan, key)
def pitch_bend(self, chan, val):
"""Adjust pitch of a playing channel by small amounts
A pitch bend value of 0 is no pitch change from default.
A value of -2048 is 1 semitone down.
A value of 2048 is 1 semitone up.
Maximum values are -8192 to +8192 (transposing by 4 semitones).
"""
return fluid_synth_pitch_bend(self.synth, chan, val + 8192)
def cc(self, chan, ctrl, val):
"""Send control change value
The controls that are recognized are dependent on the
SoundFont. Values are always 0 to 127. Typical controls
include:
1 : vibrato
7 : volume
10 : pan (left to right)
11 : expression (soft to loud)
64 : sustain
91 : reverb
93 : chorus
"""
return fluid_synth_cc(self.synth, chan, ctrl, val)
def get_cc(self, chan, num):
i=c_int()
fluid_synth_get_cc(self.synth, chan, num, byref(i))
return i.value
def program_change(self, chan, prg):
"""Change the program"""
return fluid_synth_program_change(self.synth, chan, prg)
def bank_select(self, chan, bank):
"""Choose a bank"""
return fluid_synth_bank_select(self.synth, chan, bank)
def all_notes_off(self, chan):
"""Turn off all notes on a channel (release all keys)"""
return fluid_synth_all_notes_off(self.synth, chan)
def all_sounds_off(self, chan):
"""Turn off all sounds on a channel (equivalent to mute)"""
return fluid_synth_all_sounds_off(self.synth, chan)
def sfont_select(self, chan, sfid):
"""Choose a SoundFont"""
return fluid_synth_sfont_select(self.synth, chan, sfid)
def program_reset(self):
"""Reset the programs on all channels"""
return fluid_synth_program_reset(self.synth)
def system_reset(self):
"""Stop all notes and reset all programs"""
return fluid_synth_system_reset(self.synth)
def get_samples(self, len=1024):
"""Generate audio samples
The return value will be a NumPy array containing the given
length of audio samples. If the synth is set to stereo output
(the default) the array will be size 2 * len.
"""
return fluid_synth_write_s16_stereo(self.synth, len)
def tuning_dump(self, bank, prog, pitch):
return fluid_synth_tuning_dump(self.synth, bank, prog, name.encode(), length(name), pitch)
def midi_event_get_type(self, event):
return fluid_midi_event_get_type(event)
def midi_event_get_velocity(self, event):
return fluid_midi_event_get_velocity(event)
def midi_event_get_key(self, event):
return fluid_midi_event_get_key(event)
def midi_event_get_channel(self, event):
return fluid_midi_event_get_channel(event)
def midi_event_get_control(self, event):
return fluid_midi_event_get_control(event)
def midi_event_get_program(self, event):
return fluid_midi_event_get_program(event)
def midi_event_get_value(self, event):
return fluid_midi_event_get_value(event)
def play_midi_file(self, filename):