SoundFont is a brand name that collectively refers to a file format and associated technology that uses sample-based synthesis to play MIDI files.
Questions tagged [soundfont]
43 questions
9
votes
2 answers
Android - Play SoundFont with MIDI file
I have one midi file and I have played that midi file using MediaPlayer in android using the following code:
val mMediaPlayer = MediaPlayer.create(context, R.raw.test_ring_1)
mMediaPlayer?.start()
It default play with one instrument like piano,…

jigar kanjariya
- 93
- 1
- 7
7
votes
5 answers
Convert SoundFont to .wav files for each note
Is there a simple way of converting a sound font file to .wav files (or any common music format, really), separate for each note?
So let's say I had a sound font a.sfz; I would like to get out of it a list of files A0.wav, A#0.wav, B0.wav, C1.wav,…

houbysoft
- 32,532
- 24
- 103
- 156
6
votes
2 answers
Using Fluidsynth to play notes from SoundFonts on Android
Is there a way to allow android to play sounds using SoundFont files via using FluidSynth?
I've been looking at jOrgan but the source code seems to be kind of... overwhelming to say the least.
Problem is that java sound API is not supported in…

eunique0216
- 875
- 1
- 16
- 28
6
votes
1 answer
How to load custom DLS or SoundFonts to Android MIDI
I have an application that plays MIDI files through the SONiVOX EAS library.
Is it possible to load my own DLS or SoundFont wavetables into the player and have the library use these sounds for MIDI playback?

Eli Konky
- 2,697
- 1
- 20
- 17
6
votes
1 answer
Loading midi.js soundfonts dynamically
I just started using midi.js and so far it seems really neat. I am currently loading all of my sounds fonts at once like so:
MIDI.loadPlugin({
soundfontUrl: "js/MIDI/soundfont/FluidR3_GM/",
instrument: instruments,
callback:…

Mike2012
- 7,629
- 15
- 84
- 135
6
votes
1 answer
No preset found on channel 9 when playing midi with newly created soundfont
I have created a soundfont with Polyphone to create a new instrument "bagana".
It just has 1 instrument "Bagana", with 1 present "Bagana".
I tried playing a midi file (just a piano piece) with FluidSynth, it worked. When I direct it through the…

dorien
- 5,265
- 10
- 57
- 116
6
votes
1 answer
Looking for a library to synthesize sounds from soundfonts
Im looking for a library that can synthesize sounds from soundfonts / sound banks
Preferably in C#, but other programming languages are fine too
Maybe a video game library can do this? Need suggestions

Amy
- 107
- 4
4
votes
1 answer
How to convert SFZ synthesizer format to (soundfont) SF2?
I have created a sfz file and compiled a corresponding file-tree of instrument samples.
Is there software that convert this sfz filetree to a sf2 soundfont file?
The reason is: I can easily create the sfz file-tree, and easily use the sf2 file.…

mherzl
- 5,624
- 6
- 34
- 75
4
votes
3 answers
Non-iteratively getting the list of instruments in a soundfont using FluidSynth
Is there a function that can return the list of all the instruments (preset names) in a soundfont file in FluidSynth or at least the number of presets in each soundbank?

Petru Dimitriu
- 365
- 1
- 5
- 14
3
votes
1 answer
Soundfonts on Android
I'm having trouble figuring out how to use soundfonts on android (that have a .sf2 extension). I looked into JET Creator but it seems really complicated for simply playing soundfonts. I don't need to have interactive music as provided by JET, I just…

Nitrex88
- 2,158
- 2
- 21
- 23
3
votes
2 answers
JavaX MIDI - Play MIDI file with custom soundfont
I was trying to implement a MIDI player for a java program. So I started using the javax.sound.midi library. I load my Sequencer and my Synthesizer there:
private void playMidiFile() {
Soundbank soundfont =…

mrdlink
- 266
- 4
- 15
3
votes
1 answer
How to use JUCE for generating wav file using MIDI file and soundfonts file?
For last few days I have been trying to generate a wav file using MIDI and soundfont file in an android app. For that I have tried building fluidsynth for this purpose. I have been able to build it successfully but the problem is that fast-rendering…

Swapnil
- 1,870
- 2
- 23
- 48
3
votes
1 answer
export midi with sound fonts on iOS
Is it possible to export a midi sequence with soundfonts assigned to them as a .wav file? If so, can anyone put me in the right direction?
I'm currently using MIKMIDI, and I haven't run into any example that does that so far.

user3217522
- 5,786
- 7
- 26
- 34
3
votes
2 answers
Inspecting a soundfont on iOS
It is possible using AudioUnits on iOS to create samplers that load and play soundfont (or SF2) files. This is a really great feature. The problem is that I don't see any interface for inspecting a soundfont to see: a) how many presets it contains…

Ruben
- 1,950
- 1
- 12
- 13
2
votes
0 answers
use .sfz soundfonts to render audio with WebMScore
I'm using WebMScore to render audio of music scores (it's a fork of MuseScore that runs in the browser or node).
I can successfully load my own, local .sf2 or .sf3 files, however
Trying to load an .sfz soundfont throws error 15424120. (And…

ultraGentle
- 5,084
- 1
- 19
- 45