- java.lang.Object
-
- javax.sound.midi.Track
-
public class Track extends Object
A MIDI track is an independent stream of MIDI events (time-stamped MIDI data) that can be stored along with other tracks in a standard MIDI file. The MIDI specification allows only 16 channels of MIDI data, but tracks are a way to get around this limitation. A MIDI file can contain any number of tracks, each containing its own stream of up to 16 channels of MIDI data.A
Track
occupies a middle level in the hierarchy of data played by a
: sequencers play sequences, which contain tracks, which contain MIDI events. A sequencer may provide controls that mute or solo individual tracks.Sequencer
The timing information and resolution for a track is controlled by and stored in the sequence containing the track. A given
Track
is considered to belong to the particular
that maintains its timing. For this reason, a new (empty) track is created by calling theSequence
method, rather than by directly invoking aSequence.createTrack()
Track
constructor.The
Track
class provides methods to edit the track by adding or removingMidiEvent
objects from it. These operations keep the event list in the correct time order. Methods are also included to obtain the track's size, in terms of either the number of events it contains or its duration in ticks.
-
-
Method Summary
Methods Modifier and Type Method and Description boolean
add(MidiEvent event)
Adds a new event to the track.MidiEvent
get(int index)
Obtains the event at the specified index.boolean
remove(MidiEvent event)
Removes the specified event from the track.int
size()
Obtains the number of events in this track.long
ticks()
Obtains the length of the track, expressed in MIDI ticks.
-
-
-
Method Detail
-
add
public boolean add(MidiEvent event)
Adds a new event to the track. However, if the event is already contained in the track, it is not added again. The list of events is kept in time order, meaning that this event inserted at the appropriate place in the list, not necessarily at the end.- Parameters:
event
- the event to add- Returns:
true
if the event did not already exist in the track and was added, otherwisefalse
-
remove
public boolean remove(MidiEvent event)
Removes the specified event from the track.- Parameters:
event
- the event to remove- Returns:
true
if the event existed in the track and was removed, otherwisefalse
-
get
public MidiEvent get(int index) throws ArrayIndexOutOfBoundsException
Obtains the event at the specified index.- Parameters:
index
- the location of the desired event in the event vector- Throws:
- if the specified index is negative or not less than the current size of this track.ArrayIndexOutOfBoundsException
ArrayIndexOutOfBoundsException
- See Also:
size()
-
size
public int size()
Obtains the number of events in this track.- Returns:
- the size of the track's event vector
-
ticks
public long ticks()
Obtains the length of the track, expressed in MIDI ticks. (The duration of a tick in seconds is determined by the timing resolution of theSequence
containing this track, and also by the tempo of the music as set by the sequencer.)- Returns:
- the duration, in ticks
- See Also:
Sequence.Sequence(float, int)
,Sequencer.setTempoInBPM(float)
,Sequencer.getTickPosition()
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/sound/midi/Track.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.