Package | Description |
---|---|
uk.co.caprica.vlcj.player |
This is the main package for vlcj client applications, providing the classes
necessary to create and control native media players and associated
resources.
|
uk.co.caprica.vlcj.player.media |
Encapsulation of various types of media.
|
uk.co.caprica.vlcj.player.media.callback |
Specification and base implementation for media that is provided by native media callback
functions.
|
uk.co.caprica.vlcj.player.media.callback.nonseekable |
Components that implement non-seekable media, e.g.
|
uk.co.caprica.vlcj.player.media.callback.seekable |
Components that implement seekable media.
|
uk.co.caprica.vlcj.player.media.simple |
Simple media, i.e.
|
Modifier and Type | Method and Description |
---|---|
boolean |
MediaPlayer.playMedia(Media media)
Play a new media item.
|
boolean |
DefaultMediaPlayer.playMedia(Media media) |
boolean |
MediaPlayer.prepareMedia(Media media)
Prepare a new media item for play-back, but do not begin playing.
|
boolean |
DefaultMediaPlayer.prepareMedia(Media media) |
boolean |
MediaPlayer.startMedia(Media media)
Play a new media item, with options, and wait for it to start playing or error.
|
boolean |
DefaultMediaPlayer.startMedia(Media media) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMedia
Base implementation of Media to handle media options.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractCallbackMedia
Base implementation of media that uses the native media callbacks.
|
class |
DefaultCallbackMedia
Implementation of a
CallbackMedia media that uses a Java byte array for an IO buffer
when reading media data. |
Modifier and Type | Class and Description |
---|---|
class |
FileInputStreamMedia
Media implementation that reads media data from a
FileInputStream . |
class |
NonSeekableCallbackMedia
Base implementation for non-seekable media.
|
class |
NonSeekableInputStreamMedia
Base implementation for non-seekable media using an
InputStream . |
Modifier and Type | Class and Description |
---|---|
class |
RandomAccessFileMedia
Implementation of seekable media that uses a
RandomAccessFile . |
class |
SeekableCallbackMedia
Base implementation for seekable media.
|
Modifier and Type | Class and Description |
---|---|
class |
SimpleMedia
Encapsulation of 'simple' media, i.e.
|
Copyright © 2009–2015 Caprica Software Limited. All rights reserved.