|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.google.gwt.user.client.ui.UIObject
com.google.gwt.user.client.ui.Widget
com.google.gwt.user.client.ui.Composite
com.bramosystems.oss.player.core.client.AbstractMediaPlayer
com.bramosystems.oss.player.core.client.ui.NativePlayer
public class NativePlayer
Widget to embed media files with HTML 5 video elements in compliant browsers.
SimplePanel panel = new SimplePanel(); // create panel to hold the player
Widget player = null;
try {
// create the player
player = new NativePlayer("www.example.com/mediafile.ogg");
} catch(LoadException e) {
// catch loading exception and alert user
Window.alert("An error occured while loading");
} catch(PluginNotFoundException e) {
// PluginNotFoundException thrown if browser does not support HTML 5 specs.
player = PlayerUtil.getMissingPluginNotice(e.getPlugin());
}
panel.setWidget(player); // add player to panel.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class com.google.gwt.user.client.ui.UIObject |
|---|
com.google.gwt.user.client.ui.UIObject.DebugIdImpl, com.google.gwt.user.client.ui.UIObject.DebugIdImplEnabled |
| Field Summary |
|---|
| Fields inherited from class com.google.gwt.user.client.ui.UIObject |
|---|
DEBUG_ID_PREFIX |
| Constructor Summary | |
|---|---|
NativePlayer(ArrayList<String> mediaSources,
boolean autoplay,
String height,
String width)
Constructs NativePlayer with the specified height and
width to playback media located at any of the mediaSources. |
|
NativePlayer(String mediaURL)
Constructs NativePlayer to playback media located at mediaURL. |
|
NativePlayer(String mediaURL,
boolean autoplay)
Constructs NativePlayer to playback media located at mediaURL. |
|
NativePlayer(String mediaURL,
boolean autoplay,
String height,
String width)
Constructs NativePlayer with the specified height and
width to playback media located at mediaURL. |
|
| Method Summary | |
|---|---|
void |
addToPlaylist(List<MRL> mediaLocators)
Adds the media locators to the players' playlist. |
void |
addToPlaylist(MRL mediaLocator)
Adds the media locator to the players' playlist. |
void |
addToPlaylist(String... mediaURLs)
Adds the media at the specified URLs to the players' playlist. |
void |
addToPlaylist(String mediaURL)
Adds the media at the specified URL to the players' playlist. |
void |
clearPlaylist()
Removes all entries in the players' playlist |
int |
getLoopCount()
Returns the number of times this player repeats playback before stopping. |
long |
getMediaDuration()
Returns the duration of the loaded media in milliseconds. |
int |
getPlaylistSize()
Returns the number of entries in the playlist |
double |
getPlayPosition()
Gets the current position in the media that is being played. |
double |
getRate()
Returns the current playback rate |
RepeatMode |
getRepeatMode()
Returns the current playback repeat mode |
int |
getVideoHeight()
Returns the height of the current media |
int |
getVideoWidth()
Returns the width of the current media |
double |
getVolume()
Gets the volume ranging from 0 (silent) to 1 (full volume). |
boolean |
isControllerVisible()
Checks whether the player controls are visible. |
boolean |
isResizeToVideoSize()
Checks if player is set to adjust its size to match the dimensions of a video. |
boolean |
isShuffleEnabled()
Checks if this player is in shuffle mode. |
void |
loadMedia(String mediaURL)
Loads the media at the specified URL into the player. |
protected void |
onLoad()
Overriden to register player for DOM events. |
void |
pauseMedia()
Pause the media playback |
void |
play(int index)
Play playlist entry at the specified index |
void |
playMedia()
Plays the media loaded into the player. |
void |
playNext()
Plays the next item in the playlist |
void |
playPrevious()
Plays the previous item in the playlist |
void |
removeFromPlaylist(int index)
Removes the entry at the specified index from the players' playlist. |
void |
setControllerVisible(boolean show)
Displays or hides the player controls. |
void |
setLoopCount(int loop)
Sets the number of times the current media file should repeat playback before stopping. |
void |
setPlayPosition(double position)
Sets the playback position of the current media |
void |
setRate(double rate)
Sets the playback rate. |
void |
setRepeatMode(RepeatMode mode)
Puts the player in the specified repeat mode. |
void |
setResizeToVideoSize(boolean resize)
If the current media is a video, sets the player to adjust its size to match the dimensions of the video |
void |
setShuffleEnabled(boolean enable)
Enables or disables players' shuffle mode. |
void |
setVolume(double volume)
Sets the volume. |
void |
showLogger(boolean show)
Displays or hides the players' logger widget. |
void |
stopMedia()
Stops the media playback. |
| Methods inherited from class com.google.gwt.user.client.ui.Composite |
|---|
getWidget, initWidget, isAttached, onAttach, onBrowserEvent, onDetach, setWidget |
| Methods inherited from class com.google.gwt.user.client.ui.Widget |
|---|
addAttachHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, doAttachChildren, doDetachChildren, fireEvent, getHandlerCount, getLayoutData, getParent, isOrWasAttached, onUnload, removeFromParent, setLayoutData, sinkEvents |
| Methods inherited from class com.google.gwt.user.client.ui.UIObject |
|---|
addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, getTitle, isVisible, isVisible, onEnsureDebugId, removeStyleDependentName, removeStyleName, setElement, setElement, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, toString, unsinkEvents |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface com.google.gwt.event.shared.HasHandlers |
|---|
fireEvent |
| Constructor Detail |
|---|
public NativePlayer(String mediaURL)
throws LoadException,
PluginNotFoundException
NativePlayer to playback media located at mediaURL.
Media playback begins automatically.
This is the same as calling NativePlayer(mediaURL, true, "20px", "100%")
mediaURL - the URL of the media to playback
LoadException - if an error occurs while loading the media.
PluginNotFoundException - if browser does not support the HTML 5 specification.
public NativePlayer(String mediaURL,
boolean autoplay)
throws LoadException,
PluginNotFoundException
NativePlayer to playback media located at mediaURL.
Media playback begins automatically if autoplay is true.
This is the same as calling NativePlayer(mediaURL, autoplay, "20px", "100%")
mediaURL - the URL of the media to playbackautoplay - true to start playing automatically, false otherwise
LoadException - if an error occurs while loading the media.
PluginNotFoundException - if browser does not support the HTML 5 specification.
public NativePlayer(String mediaURL,
boolean autoplay,
String height,
String width)
throws LoadException,
PluginNotFoundException
NativePlayer with the specified height and
width to playback media located at mediaURL. Media playback
begins automatically if autoplay is true.
height and width are specified as CSS units.
mediaURL - the URL of the media to playbackautoplay - true to start playing automatically, false otherwiseheight - the height of the playerwidth - the width of the player.
LoadException - if an error occurs while loading the media.
PluginNotFoundException - if browser does not support the HTML 5 specification.
public NativePlayer(ArrayList<String> mediaSources,
boolean autoplay,
String height,
String width)
throws LoadException,
PluginNotFoundException
NativePlayer with the specified height and
width to playback media located at any of the mediaSources.
Playback begins automatically if autoplay is true.
As per the HTML 5 specification, the browser chooses any of the mediaSources
it supports
height and width are specified as CSS units.
mediaSources - a list of media URLsautoplay - true to start playing automatically, false otherwiseheight - the height of the playerwidth - the width of the player.
LoadException - if an error occurs while loading the media.
PluginNotFoundException - if browser does not support the HTML 5 specification.| Method Detail |
|---|
protected void onLoad()
onLoad in class com.google.gwt.user.client.ui.Widget
public void loadMedia(String mediaURL)
throws LoadException
AbstractMediaPlayerIn respect of the same domain policy of some plugins,
the URL should point to a destination on the same domain
where the application is hosted.
loadMedia in class AbstractMediaPlayermediaURL - the URL of the media to load into the player.
LoadException - if an error occurs while loading the media
public void playMedia()
throws PlayException
AbstractMediaPlayer
playMedia in class AbstractMediaPlayerPlayException - if an error occurs
during media playback.public void stopMedia()
AbstractMediaPlayer
stopMedia in class AbstractMediaPlayerpublic void pauseMedia()
AbstractMediaPlayer
pauseMedia in class AbstractMediaPlayerpublic long getMediaDuration()
AbstractMediaPlayer
getMediaDuration in class AbstractMediaPlayerpublic double getPlayPosition()
AbstractMediaPlayer
getPlayPosition in class AbstractMediaPlayerpublic void setPlayPosition(double position)
AbstractMediaPlayer
setPlayPosition in class AbstractMediaPlayerposition - the new position from where to start playbackpublic double getVolume()
AbstractMediaPlayer0 (silent) to 1 (full volume).
getVolume in class AbstractMediaPlayerpublic void setVolume(double volume)
AbstractMediaPlayer
setVolume in class AbstractMediaPlayervolume - 0 (silent) to 1 (full volume).public int getLoopCount()
AbstractMediaPlayer0, subclasses should override and implement
accordingly.
getLoopCount in class AbstractMediaPlayerpublic int getVideoHeight()
AbstractMediaPlayer
getVideoHeight in class AbstractMediaPlayerpublic int getVideoWidth()
AbstractMediaPlayer
getVideoWidth in class AbstractMediaPlayerpublic boolean isControllerVisible()
AbstractMediaPlayer
isControllerVisible in class AbstractMediaPlayertrue if player controls are visible, false otherwise.public boolean isResizeToVideoSize()
AbstractMediaPlayer
isResizeToVideoSize in class AbstractMediaPlayertrue if player adjusts its size, false otherwisepublic void setControllerVisible(boolean show)
If this player is not available on the panel, this method call is added to the command-queue for later execution.
setControllerVisible in class AbstractMediaPlayershow - true to make the player controls visible, false otherwise.public void setLoopCount(int loop)
If this player is not available on the panel, this method call is added to the command-queue for later execution.
setLoopCount in class AbstractMediaPlayerloop - number of times to repeat playback. A negative value makes playback repeat forever!.public void setResizeToVideoSize(boolean resize)
AbstractMediaPlayer
setResizeToVideoSize in class AbstractMediaPlayerresize - true if player should adjust its size,
false otherwisepublic void showLogger(boolean show)
AbstractMediaPlayer
showLogger in class AbstractMediaPlayershow - true to make the logger widget visible, false otherwise.Loggerpublic void setRate(double rate)
AbstractMediaPlayerIf this player is not available on the panel, this method call is added to the command-queue for later execution.
setRate in class AbstractMediaPlayerrate - the playback rate. A rate of 1 implies normal playback rate,
fractional values are slow motion, and values greater than one are fast-forwardpublic double getRate()
AbstractMediaPlayer
getRate in class AbstractMediaPlayerAbstractMediaPlayer.setRate(double)public void setShuffleEnabled(boolean enable)
PlaylistSupport
setShuffleEnabled in interface PlaylistSupportenable - true to enable shuffle, false otherwisepublic boolean isShuffleEnabled()
PlaylistSupport
isShuffleEnabled in interface PlaylistSupporttrue if player is in shuffle mode, false otherwise.public void addToPlaylist(String mediaURL)
PlaylistSupportIn respect of the same domain policy of some plugins/browsers, the URL should point to a destination on the same domain where the application is hosted.
addToPlaylist in interface PlaylistSupportmediaURL - the URL of the media.public void addToPlaylist(String... mediaURLs)
mediaURLs
it supports.
In respect of the same domain policy of some browsers, the URLs should point to a destination on the same domain where the application is hosted.
addToPlaylist in interface PlaylistSupportmediaURLs - the alternative URLs of the same media (probably in different formats).public void addToPlaylist(MRL mediaLocator)
PlaylistSupport
addToPlaylist in interface PlaylistSupportmediaLocator - specifies alternative URLs of the same mediapublic void addToPlaylist(List<MRL> mediaLocators)
PlaylistSupport
addToPlaylist in interface PlaylistSupportmediaLocators - list of alternative URLs of the same mediapublic void removeFromPlaylist(int index)
PlaylistSupport
removeFromPlaylist in interface PlaylistSupportindex - the index of the playlist entry.public void clearPlaylist()
PlaylistSupport
clearPlaylist in interface PlaylistSupport
public void playNext()
throws PlayException
PlaylistSupport
playNext in interface PlaylistSupportPlayException - if there are no more entries in the playlist to be played. Especially if we've
advanced to the end of the playlist. Note: A player with a negative loop count (i.e. set to play
forever!) may not throw this exception
public void playPrevious()
throws PlayException
PlaylistSupport
playPrevious in interface PlaylistSupportPlayException - if there are no more entries in the playlist to be played. Especially if we've
gotten to the beginning of the playlist. Note: A player with a negative loop count (i.e. set to play
forever!) may not throw this exception
public void play(int index)
throws IndexOutOfBoundsException
PlaylistSupportindex
play in interface PlaylistSupportindex - number of the playlist entry
IndexOutOfBoundsException - if index is outside the bounds of the playlistpublic int getPlaylistSize()
PlaylistSupport
getPlaylistSize in interface PlaylistSupportpublic RepeatMode getRepeatMode()
AbstractMediaPlayer
getRepeatMode in class AbstractMediaPlayerRepeatModepublic void setRepeatMode(RepeatMode mode)
AbstractMediaPlayerThe effect of the specified mode depends on the AbstractMediaPlayer.setLoopCount(int) property as
shown in the table:
Value of loopCount |
Value of repeatMode |
What it means? |
|---|---|---|
| Any value < 0 | Sets repeatMode to RepeatMode.REPEAT_ALL |
Playlist is repeated continously |
| 1 | RepeatMode.REPEAT_OFF |
Entire playlist is played only once |
RepeatMode.REPEAT_ONE |
The current playlist entry is repeated continously | |
RepeatMode.REPEAT_ALL |
Entire playlist is repeated continously | |
| Any value > 1 | RepeatMode.REPEAT_OFF |
The loopCount property is ignored, and the entire playlist is played only once |
RepeatMode.REPEAT_ONE |
Player repeats each playlist entry for the number of times specified by loopCount
and moves on the next until all entries are played and stops |
|
RepeatMode.REPEAT_ALL |
Player repeats entire playlist for the number of times specified by loopCount and stops |
setRepeatMode in class AbstractMediaPlayermode - the new repeat modeRepeatMode
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||