Questions tagged [fluidsynth]

FluidSynth is a software MIDI synthesizer based on the SoundFont 2 specifications

FluidSynth is a is a cross-platform, real-time and open source software MIDI synthesizer based on the SoundFont 2 specifications. Official website: http://www.fluidsynth.org

It is licensed under the GNU Lesser General Public License v2.1; the main usage documentation is in the project's wiki and the API documentation for developers can be found at http://www.fluidsynth.org/api/

50 questions
0
votes
1 answer

Python - Mix two audio chunks

I have two Byte objects. One comes from using the Wave module to read a "chunk" of data: def get_wave_from_file(filename): import wave original_wave = wave.open(filename, 'rb') return original_wave The other uses MIDI information and a…
Ryan Lague
  • 155
  • 3
  • 12
0
votes
1 answer

Sound making function silent when assigned to its own process

I'm working on a kivy app which is intended to parametrically produce ear training exercises on the spot and play them. The music is described using the mingus module, and played via its fluidsynth implementation. I have an exercise playing…
aplainzetakind
  • 490
  • 2
  • 8
0
votes
1 answer

Fluidsynth error: "Name 'ctypes' is not defined"

I am trying to use FluidSynth in a game that I'm working on, but I can't seem to get Fluidsynth to work properly. Whenever I try to import I get this: >>> import fluidsynth Traceback (most recent call last): File "", line 1, in
0
votes
1 answer

Fluidsynth with Telnet and Python: No sound

I've been working with Fluidsynth on a Raspberry Pi B running Raspian (not the absolute latest image because Fluidsynth wouldn't run on the latest version but from at least April 2014). I start Fluidsynth by running fluidsynth -a alsa -g 1 -s -o…
0
votes
1 answer

How to play a note as long as I hit the key (Fluidsynth)?

I'm working on a Raspberry Pi project at the moment and I'm searching for a possibility to play a note as long as ey press a button (connected with gpio). I use pyFluidsynth and got it working but it's note holding a note as long as i press a…
user3425428
1 2 3
4