See: Description
Interface | Description |
---|---|
AudioSpectrumListener |
Audio spectrum callback interface.
|
Class | Description |
---|---|
AudioClip |
An
AudioClip represents a segment of audio that can be played
with minimal latency. |
AudioEqualizer |
The
AudioEqualizer class provides audio equalization control for
a media player. |
AudioTrack |
A
Track that describes an audio track. |
EqualizerBand |
The
EqualizerBand class provides control for each band in the
AudioEqualizer . |
Media |
The
Media class represents a media resource. |
MediaErrorEvent |
An
Event representing the occurrence of an error in handling media. |
MediaMarkerEvent |
An
ActionEvent representing a media marker. |
MediaPlayer |
The
MediaPlayer class provides the controls for playing media. |
MediaView | |
SubtitleTrack |
A
Track that contains subtitle or captioning data to be rendered
overlaying a video track. |
Track |
A class representing a track contained in a media resource.
|
VideoTrack |
A
Track that describes a video track. |
Enum | Description |
---|---|
MediaException.Type |
Enumeration describing categories of errors.
|
MediaPlayer.Status |
Enumeration describing the different status values of a
MediaPlayer . |
Exception | Description |
---|---|
MediaException |
Provides the set of classes for integrating audio and video into Java FX
Applications. The primary use for this package is media playback. There are
three principal classes in the media package:
Media
,
MediaPlayer
, and
MediaView
.
Encoding | Type | Description |
---|---|---|
AAC | Audio | Advanced Audio Coding audio compression |
MP3 | Audio | Raw MPEG-1, 2, and 2.5 audio; layers I, II, and III; all supported combinations of sampling frequencies and bit rates. Note: File must contain at least 3 MP3 frames. |
PCM | Audio | Uncompressed, raw audio samples |
H.264/AVC | Video | H.264/MPEG-4 Part 10 / AVC (Advanced Video Coding) video compression |
VP6 | Video | On2 VP6 video compression |
Container | Description | Video Encoding | Audio Encoding | MIME Type | File Extension |
---|---|---|---|---|---|
AIFF | Audio Interchange File Format | N/A | PCM | audio/x-aiff | .aif, .aiff |
FXM, FLV | FX Media, Flash Video | VP6 | MP3 | video/x-javafx, video/x-flv | .fxm, .flv |
HLS (*) | MP2T HTTP Live Streaming (audiovisual) | H.264/AVC | AAC | application/vnd.apple.mpegurl, audio/mpegurl | .m3u8 |
HLS (*) | MP3 HTTP Live Streaming (audio-only) | N/A | MP3 | application/vnd.apple.mpegurl, audio/mpegurl | .m3u8 |
MP3 | MPEG-1, 2, 2.5 raw audio stream possibly with ID3 metadata v2.3 or v2.4 | N/A | MP3 | audio/mpeg | .mp3 |
MP4 | MPEG-4 Part 14 | H.264/AVC | AAC | video/mp4, audio/x-m4a, video/x-m4v | .mp4, .m4a, .m4v |
WAV | Waveform Audio Format | N/A | PCM | audio/x-wav | .wav |
Protocol | Description | Reference |
---|---|---|
FILE | Protocol for URI representation of local files | java.net.URI |
HTTP | Hypertext transfer protocol for representation of remote files | java.net.URI | HTTPS | Hypertext transfer protocol secure for representation of remote files | java.net.URI |
JAR | Representation of media entries in files accessible via the FILE, HTTP or HTTPS protocols | java.net.JarURLConnection |
HTTP Live Streaming (HLS) | Playlist-based media streaming via HTTP or HTTPS | Internet-Draft: HTTP Live Streaming |
Media.getMetadata()
method. The keys in this mapping
are referred to as tags with the tags supported by Java FX Media listed in
the following table. Note that which tags are available for a given media source
depend on the metadata actually stored in that source, i.e., not all tags are
guaranteed to be available.
Container | Tag (type String) | Type | Description |
---|---|---|---|
FXM, FLV | audio codec | java.lang.String | The encoder used for the audio track. |
FXM, FLV | duration | javafx.util.Duration | The duration of the media. |
FXM, FLV | video codec | java.lang.String | The encoder used for the video track. |
FXM, FLV | width | java.lang.Integer | The width in pixels of the video track. |
FXM, FLV | height | java.lang.Integer | The height in pixels of the video track. |
FXM, FLV | framerate | java.lang.Double | The video frame rate in frames per second. |
FXM, FLV | creationdate | java.lang.String | The date when the video was created. |
FXM, FLV, MP3 | raw metadata | Map<String,ByteBuffer> | The raw metadata according to the appropriate media specification. The key "ID3" maps to MP3 ID3v2 metadata and "FLV" to the FLV onMetadata marker content. |
MP3 | album artist | java.lang.String | The artist for the overall album, possibly "Various Artists" for compilations. |
MP3 | album | java.lang.String | The name of the album. |
MP3 | artist | java.lang.String | The artist of the track. |
MP3 | comment-N | java.lang.String | A comment where N is a 0-relative index. Comment format: ContentDescription[lng]=Comment |
MP3 | composer | java.lang.String | The composer of the track. |
MP3 | year | java.lang.Integer | The year the track was recorded. |
MP3 | disc count | java.lang.Integer | The number of discs in the album. |
MP3 | disc number | java.lang.Integer | The 1-relative index of the disc on which this track appears. |
MP3 | duration | javafx.util.Duration | The duration of the track. |
MP3 | genre | java.lang.String | The genre of the track, for example, "Classical," "Darkwave," or "Jazz." |
MP3 | image | javafx.scene.image.Image | The album cover. |
MP3 | title | java.lang.String | The name of the track. |
MP3 | track count | java.lang.Integer | The number of tracks on the album. |
MP3 | track number | java.lang.Integer | The 1-relative index of this track on the disc. |
The basic steps required to play media in Java FX are:
Media
object for the desired media source.MediaPlayer
object from the Media
object.MediaView
object.MediaPlayer
to the MediaView
.MediaView
to the scene graph.MediaPlayer.play()
.MediaView
class documentation. Some things which should be noted are:
Media
object may be shared among multiple MediaPlayer
s.
MediaPlayer
may be shared amoung multiple MediaView
s.
MediaPlayer
without creating a MediaView
although a view is required for display.MediaPlayer.play()
,
MediaPlayer.setAutoPlay(true)
may be used to request that playing start as soon as possible.MediaPlayer
has several operational states defined by
MediaPlayer.Status
.
AudioClip
(recommended for low latency playback of short clips).
Errors using Java FX Media may be either synchronous or asynchronous. In general
synchronous errors will manifest themselves as a Java Exception
and
asynchronous errors will cause a Java FX property to be set. In the latter case
either the error
property may be observed directly, an
onError
callback registered, or possibly both.
The main sources of synchronous errors are
Media()
and
MediaPlayer()
.
The asynchronous error properties are
Media.error
and
MediaPlayer.error
, and the
asynchronous error callbacks
Media.onError
,
MediaPlayer.onError
, and
MediaView.onError
.
Some errors might be duplicated. For example, a MediaPlayer
will
propagate an error that it encounters to its associated Media
, and
a MediaPlayer
to all its associated MediaView
s. As a
consequence, it is possible to receive multiple notifications of the occurrence
of a given error, depending on which properties are monitored.
The following code snippet illustrates error handling with media:
String source;
Media media;
MediaPlayer mediaPlayer;
MediaView mediaView;
try {
media = new Media(source);
if (media.getError() == null) {
media.setOnError(new Runnable() {
public void run() {
// Handle asynchronous error in Media object.
}
});
try {
mediaPlayer = new MediaPlayer(media);
if (mediaPlayer.getError() == null) {
mediaPlayer.setOnError(new Runnable() {
public void run() {
// Handle asynchronous error in MediaPlayer object.
}
});
mediaView = new MediaView(mediaPlayer);
mediaView.setOnError(new EventHandler
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.