Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
javax.sound.midi

Class MidiFileFormat


  • public class MidiFileFormat
    extends Object
    A MidiFileFormat object encapsulates a MIDI file's type, as well as its length and timing information.

    A MidiFileFormat object can include a set of properties. A property is a pair of key and value: the key is of type String, the associated property value is an arbitrary object. Properties specify additional informational meta data (like a author, or copyright). Properties are optional information, and file reader and file writer implementations are not required to provide or recognize properties.

    The following table lists some common properties that should be used in implementations:

    Property key Value type Description
    "author" String name of the author of this file
    "title" String title of this file
    "copyright" String copyright message
    "date" Date date of the recording or release
    "comment" String an arbitrary text

    Erste Seite von API Java Inhaltsverzeichnis Haut

    See Also:
    MidiSystem.getMidiFileFormat(java.io.File), Sequencer.setSequence(java.io.InputStream stream)
    • Constructor Detail

      • MidiFileFormat

        public MidiFileFormat(int type,
                      float divisionType,
                      int resolution,
                      int bytes,
                      long microseconds)
        Constructs a MidiFileFormat.
        Parameters:
        type - the MIDI file type (0, 1, or 2)
        divisionType - the timing division type (PPQ or one of the SMPTE types)
        resolution - the timing resolution
        bytes - the length of the MIDI file in bytes, or UNKNOWN_LENGTH if not known
        microseconds - the duration of the file in microseconds, or UNKNOWN_LENGTH if not known
        See Also:
        UNKNOWN_LENGTH, Sequence.PPQ, Sequence.SMPTE_24, Sequence.SMPTE_25, Sequence.SMPTE_30DROP, Sequence.SMPTE_30
      • MidiFileFormat

        public MidiFileFormat(int type,
                      float divisionType,
                      int resolution,
                      int bytes,
                      long microseconds,
                      Map<String,Object> properties)
        Construct a MidiFileFormat with a set of properties.
        Parameters:
        type - the MIDI file type (0, 1, or 2)
        divisionType - the timing division type (PPQ or one of the SMPTE types)
        resolution - the timing resolution
        bytes - the length of the MIDI file in bytes, or UNKNOWN_LENGTH if not known
        microseconds - the duration of the file in microseconds, or UNKNOWN_LENGTH if not known
        properties - a Map<String,Object> object with properties
        Since:
        1.5
        See Also:
        UNKNOWN_LENGTH, Sequence.PPQ, Sequence.SMPTE_24, Sequence.SMPTE_25, Sequence.SMPTE_30DROP, Sequence.SMPTE_30
    • Method Detail

      • getType

        public int getType()
        Obtains the MIDI file type.
        Returns:
        the file's type (0, 1, or 2)
      • getResolution

        public int getResolution()
        Obtains the timing resolution for the MIDI file. If the division type is PPQ, the resolution is specified in ticks per beat. For SMTPE timing, the resolution is specified in ticks per frame.
        Returns:
        the number of ticks per beat (PPQ) or per frame (SMPTE)
        See Also:
        getDivisionType(), Sequence.getResolution()
      • getByteLength

        public int getByteLength()
        Obtains the length of the MIDI file, expressed in 8-bit bytes.
        Returns:
        the number of bytes in the file, or UNKNOWN_LENGTH if not known
        See Also:
        UNKNOWN_LENGTH
      • properties

        public Map<String,Object> properties()
        Obtain an unmodifiable map of properties. The concept of properties is further explained in the class description.
        Returns:
        a Map<String,Object> object containing all properties. If no properties are recognized, an empty map is returned.
        Since:
        1.5
        See Also:
        getProperty(String)
      • getProperty

        public Object getProperty(String key)
        Obtain the property value specified by the key. The concept of properties is further explained in the class description.

        If the specified property is not defined for a particular file format, this method returns null.

        Parameters:
        key - the key of the desired property
        Returns:
        the value of the property with the specified key, or null if the property does not exist.
        Since:
        1.5
        See Also:
        properties()

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/sound/midi/midifileformat.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut