Soundbank
Interface Soundbank
public interface Soundbank
A Soundbank
contains a set of Instruments
that can be loaded into a Synthesizer
. Note that a Java Sound Soundbank
is different from a MIDI bank. MIDI permits up to 16383 banks, each containing up to 128 instruments (also sometimes called programs, patches, or timbres). However, a Soundbank
can contain 16383 times 128 instruments, because the instruments within a Soundbank
are indexed by both a MIDI program number and a MIDI bank number (via a Patch
object). Thus, a Soundbank
can be thought of as a collection of MIDI banks.
Soundbank
includes methods that return String
objects containing the sound bank's name, manufacturer, version number, and description. The precise content and format of these strings is left to the implementor.