new Html5(options, ready)
Create an instance of this Tech.
| Name | Type | Description |
|---|---|---|
options |
Object |
optional
The key/value store of player options. |
ready |
Component~ReadyCallback |
Callback function to call when the |
Extends
Mixes In
- Tech~SourceHandlerAdditions
Members
-
overrides featuresFullscreenResizeboolean
-
Boolean indicating whether the
HTML5tech currently supports automatic media resize when going into fullscreen.- Default Value:
- true
-
overrides featuresMuteControlbolean
-
Boolean indicating whether the
Techsupports muting volume.- Default Value:
-
featuresNativeAudioTracksboolean
-
Boolean indicating whether the
HTML5tech currently supports nativeAudioTracks.- Default Value:
-
overrides featuresNativeTextTracksboolean
-
Boolean indicating whether the
HTML5tech currently supports nativeTextTracks.- Default Value:
-
featuresNativeVideoTracksboolean
-
Boolean indicating whether the
HTML5tech currently supports nativeVideoTracks.- Default Value:
-
overrides featuresPlaybackRateboolean
-
Boolean indicating whether the
Techsupports changing the speed at which the media plays. Examples:- Set player to play 2x (twice) as fast
- Set player to play 0.5x (half) as fast
- Default Value:
-
overrides featuresProgressEventsboolean
-
Boolean indicating whether the
HTML5tech currently supports the progress event. If this is false, manualprogressevents will be triggered instead.- Default Value:
- true
-
overrides featuresSourcesetboolean
-
Boolean indicating whether the
Techsupports thesourcesetevent. -
overrides featuresTimeupdateEvents
-
Boolean indicating whether the
HTML5tech currently supports the timeupdate event. If this is false, manualtimeupdateevents will be triggered instead.- Default Value:
- true
-
overrides featuresVolumeControlboolean
-
Boolean indicating whether the
Techsupports volume control.- Default Value:
-
movingMediaElementInDOMboolean
-
Boolean indicating whether the
HTML5tech currently supports the media element moving in the DOM. iOS breaks if you move the media element, so this is set this to false there. Everywhere else this should be true. -
static Html5.nativeSourceHandler
-
Native source handler for Html5, simply passes the source to the media element.
Properties:
Name Type Description sourceTech~SourceObject The source object
techHtml5 The instance of the HTML5 tech.
Methods
-
Find a single DOM element matching a
selector. This can be within theComponentscontentEl()or another custom context.Name Type Default Description selectorstring A valid CSS selector, which will be passed to
querySelector.contextElement | string this.contentEl() optional A DOM element within which to query. Can also be a selector string in which case the first matching element will get used as context. If missing
this.contentEl()gets used. Ifthis.contentEl()returns nothing it falls back todocument.Returns:
Type Description Element | null the dom element that was found, or null -
Finds all DOM element matching a
selector. This can be within theComponentscontentEl()or another custom context.Name Type Default Description selectorstring A valid CSS selector, which will be passed to
querySelectorAll.contextElement | string this.contentEl() optional A DOM element within which to query. Can also be a selector string in which case the first matching element will get used as context. If missing
this.contentEl()gets used. Ifthis.contentEl()returns nothing it falls back todocument.Returns:
Type Description NodeList a list of dom elements that were found -
Add a child
Componentinside the currentComponent.Name Type Default Description childstring | Component The name or instance of a child to add.
optionsObject {} optional The key/value store of options that will get passed to children of the child.
indexnumber this.children_.length optional The index to attempt to add a child into.
Returns:
Type Description Component The Componentthat gets added as a child. When using a string theComponentwill get created by this process. -
Add a CSS class name to the
Components element.Name Type Description classToAddstring CSS class name to add
-
overrides addRemoteTextTrack(options, manualCleanup){HTMLTrackElement}
-
Creates a remote text track object and returns an html track element.
Name Type Default Description optionsObject The object should contain values for kind, language, label, and src (location of the WebVTT file)
manualCleanupboolean true optional if set to false, the TextTrack will be automatically removed from the video element whenever the source changes
- Deprecated
- The default value of the "manualCleanup" parameter will default to "false" in upcoming versions of Video.js
Returns:
Type Description HTMLTrackElement An Html Track Element. This can be an emulated HTMLTrackElementor a native one. -
Create and returns a remote
TextTrackobject.Name Type Description kindstring TextTrackkind (subtitles, captions, descriptions, chapters, or metadata)labelstring optional Label to identify the text track
languagestring optional Two letter language abbreviation
Returns:
Type Description TextTrack The TextTrack that gets created. -
Emulate TextTracks using vtt.js if necessary
Fires:
- Tech#event:vttjsloaded
- Tech#event:vttjserror
-
inherited overrides audioTracks(){AudioTrackList}
-
Get the
AudioTrackListReturns:
Type Description AudioTrackList -
autoplay(){boolean}
-
Get the value of
autoplayfrom the media element.autoplayindicates that the media should start to play as soon as the page is ready.- See:
Returns:
Type Description boolean - The value of
autoplayfrom the media element. - True indicates that the media should start as soon as the page loads. - False indicates that the media should not start as soon as the page loads.
-
Remove the focus from this component
-
overrides buffered(){TimeRange}
-
Get the value of
bufferedfrom the media element.bufferedis aTimeRangeobject that represents the parts of the media that are already downloaded and available for playback.- See:
Returns:
Type Description TimeRange The value of bufferedfrom the media element. -
Get the percentage of the current video that is currently buffered.
Returns:
Type Description number A number from 0 to 1 that represents the decimal percentage of the video that is buffered. -
Builds the default DOM class name. Should be overriden by sub-components.
Returns:
Type Description string The DOM class name for this object. -
Cancels a queued callback passed to
Component#requestAnimationFrame(rAF).If you queue an rAF callback via
Component#requestAnimationFrame, use this function instead ofwindow.cancelAnimationFrame. If you don't, your dispose listener will not get cleaned up untilComponent#dispose!Name Type Description idnumber The rAF ID to clear. The return value of
Component#requestAnimationFrame.- See:
Returns:
Type Description number Returns the rAF ID that was cleared. -
Get an array of all child components
Returns:
Type Description Array The children -
Remove any TextTracks added via addRemoteTextTrack that are flagged for automatic garbage collection
-
Clears an interval that gets created via
window.setIntervalorComponent#setInterval. If you set an inteval viaComponent#setIntervaluse this function instead ofwindow.clearInterval. If you don't your dispose listener will not get cleaned up untilComponent#dispose!Name Type Description intervalIdnumber The id of the interval to clear. The return value of
Component#setIntervalorwindow.setInterval.- See:
Returns:
Type Description number Returns the interval id that was cleared. -
Clears a timeout that gets created via
window.setTimeoutorComponent#setTimeout. If you set a timeout viaComponent#setTimeoutuse this function instead ofwindow.clearTimout. If you don't your dispose listener will not get cleaned up untilComponent#dispose!Name Type Description timeoutIdnumber The id of the timeout to clear. The return value of
Component#setTimeoutorwindow.setTimeout.- See:
Returns:
Type Description number Returns the timeout id that was cleared. -
Clear out a single
TrackListor an array ofTrackListsgiven their names.Note: Techs without source handlers should call this between sources for
video&audiotracks. You don't want to use them between tracks!Name Type Description typesArray.<string> | string TrackList names to clear, valid names are
video,audio, andtext. -
Return the
Components DOM element. This is where children get inserted. This will usually be the the same as the element returned inComponent#el.Returns:
Type Description Element The content element for this Component. -
controls(){boolean}
-
Get the value of
controlsfrom the media element.controlsindicates whether the native media controls should be shown or hidden.- See:
Returns:
Type Description boolean - The value of
controlsfrom the media element. - True indicates that native controls should be showing. - False indicates that native controls should be hidden.
-
overrides createEl(){Element}
-
Create the
Html5Tech's DOM element.Returns:
Type Description Element The element that gets created. -
overrides createRemoteTextTrack(options){HTMLTrackElement}
-
Creates either native TextTrack or an emulated TextTrack depending on the value of
featuresNativeTextTracksName Type Description optionsObject The object should contain the options to initialize the TextTrack with.
Name Type Description kindstring optional TextTrackkind (subtitles, captions, descriptions, chapters, or metadata).labelstring optional Label to identify the text track
languagestring optional Two letter language abbreviation.
defaultboolean optional Default this track to on.
idstring optional The internal id to assign this track.
srcstring optional A source url for the track.
Returns:
Type Description HTMLTrackElement The track element that gets created. -
Get the computed width or the height of the component's element.
Uses
window.getComputedStyle.Name Type Description widthOrHeightstring A string containing 'width' or 'height'. Whichever one you want to get.
Returns:
Type Description number The dimension that gets asked for or 0 if nothing was set for that dimension. -
inherited overrides currentDimensions(){Component~DimensionObject}
-
Get an object that contains computed width and height values of the component's element.
Uses
window.getComputedStyle.Returns:
Type Description Component~DimensionObject The computed dimensions of the component's element. -
Get the computed height of the component's element.
Uses
window.getComputedStyle.Returns:
Type Description number The computed height of the component's element. -
currentSrc(){Tech~SourceObject}
-
Get the current source on the
HTML5Tech. Falls back to returning the source from the HTML5 media element.Returns:
Type Description Tech~SourceObject The current source object from the HTML5 tech. With a fallback to the elements source. -
currentTime(){number}
-
Get the value of
currentTimefrom the media element.currentTimeindicates the current second that the media is at in playback.- See:
Returns:
Type Description number The value of currentTimefrom the media element. -
Get the computed width of the component's element.
Uses
window.getComputedStyle.Returns:
Type Description number The computed width of the component's element. -
defaultMuted(){boolean}
-
Get the value of
defaultMutedfrom the media element.defaultMutedindicates whether the media should start muted or not. Only changes the default state of the media.mutedanddefaultMutedcan have different values.Html5#mutedindicates the current state.- See:
Returns:
Type Description boolean - The value of
defaultMutedfrom the media element. - True indicates that the media should start muted. - False indicates that the media should not start muted
-
defaultPlaybackRate(){number}
-
Get the value of
defaultPlaybackRatefrom the media element.defaultPlaybackRateindicates the rate at which the media is currently playing back. This value will not indicate the currentplaybackRateafter playback has started, useHtml5#playbackRatefor that.Examples:
- if defaultPlaybackRate is set to 2, media will play twice as fast.
- if defaultPlaybackRate is set to 0.5, media will play half as fast.
- See:
Returns:
Type Description number The value of defaultPlaybackRatefrom the media element. A number indicating the current playback speed of the media, where 1 is normal speed. -
Get or set width or height of the
Componentelement. This is the shared code for theComponent#widthandComponent#height.Things to know:
- If the width or height in an number this will return the number postfixed with 'px'.
- If the width/height is a percent this will return the percent postfixed with '%'
- Hidden elements have a width of 0 with
window.getComputedStyle. This function defaults to theComponentsstyle.widthand falls back towindow.getComputedStyle. See this for more information - If you want the computed style of the component, use
Component#currentWidthand{Component#currentHeight
Name Type Description widthOrHeightstring 8 'width' or 'height'
numnumber | string optional 8 New dimension
skipListenersboolean optional Skip componentresize event trigger
Fires:
Returns:
Type Description number The dimension when getting or 0 if unset -
Set both the width and height of the
Componentelement at the same time.Name Type Description widthnumber | string Width to set the
Components element to.heightnumber | string Height to set the
Components element to. -
overrides dispose()
-
Dispose of
HTML5media element and remove all tracks. -
duration(){number}
-
Get the current duration of the HTML5 media element.
Returns:
Type Description number The duration of the media or 0 if there is no duration. -
Get the
Components DOM elementReturns:
Type Description Element The DOM element for this Component. -
Emulate texttracks
-
This function reports user activity whenever touch events happen. This can get turned off by any sub-components that wants touch events to act another way.
Report user touch activity when touch events occur. User activity gets used to determine when controls should show/hide. It is simple when it comes to mouse events, because any mouse event should show the controls. So we capture mouse events that bubble up to the player and report activity when that happens. With touch events it isn't as easy as
touchstartandtouchendtoggle player controls. So touch events can't help us at the player level either.User activity gets checked asynchronously. So what could happen is a tap event on the video turns the controls off. Then the
touchendevent bubbles up to the player. Which, if it reported user activity, would turn the controls right back on. We also don't want to completely block touch events from bubbling up. Furthermore atouchmoveevent and anything other than a tap, should not turn controls back on.Listens to Events:
- Component#event:touchstart
- Component#event:touchmove
- Component#event:touchend
- Component#event:touchcancel
-
ended(){boolean}
-
Get the value of
endedfrom the media element.endedindicates whether the media has reached the end or not.- See:
Returns:
Type Description boolean - The value of
endedfrom the media element. - True indicates that the media has ended. - False indicates that the media has not ended.
-
enterFullScreen()
-
Request that the
HTML5Tech enter fullscreen. -
overrides error(){MediaError|null}
-
Get the value of the
errorfrom the media element.errorindicates any MediaError that may have occurred during playback. If error returns null there is no current error.- See:
Returns:
Type Description MediaError | null The value of errorfrom the media element. Will beMediaErrorif there is a current error and null otherwise. -
exitFullScreen()
-
Request that the
HTML5Tech exit fullscreen. -
Set the focus to this component
-
Get the value of an attribute on the
Components element.Name Type Description attributestring Name of the attribute to get the value from.
- See:
Returns:
Type Description string | null - The value of the attribute that was asked for. - Can be an empty string on some browsers if the attribute does not exist or has no value - Most browsers will return null if the attibute does not exist or has no value.
-
Returns the child
Componentwith the givenname.Name Type Description namestring The name of the child
Componentto get.Returns:
Type Description Component | undefined The child Componentwith the givennameor undefined. -
Returns the child
Componentwith the givenid.Name Type Description idstring The id of the child
Componentto get.Returns:
Type Description Component | undefined The child Componentwith the givenidor undefined. -
overrides getVideoPlaybackQuality(){Object}
-
Gets available media playback quality metrics as specified by the W3C's Media Playback Quality API.
- See:
Returns:
Type Description Object An object with supported media playback quality metrics -
handleLateInit_(){undefined}
-
This will be triggered if the loadstart event has already fired, before videojs was ready. Two known examples of when this can happen are:
- If we're loading the playback object after it has started loading
- The media is already playing the (often with autoplay on) then
This function will fire another loadstart so that videojs can catchup.
Fires:
- Tech#event:loadstart
Returns:
Type Description undefined returns nothing. -
Check if a component's element has a CSS class name.
Name Type Description classToCheckstring CSS class name to check.
Returns:
Type Description boolean - True if the
Componenthas the class. - False if theComponentdoes not have the class`
- True if the
-
overrides height(){number}
-
Get the current height of the HTML5 media element.
Returns:
Type Description number The height of the HTML5 media element. -
Hide the
Components element if it is currently showing by adding the 'vjs-hidden` class name to it. -
Get this
Components IDReturns:
Type Description string The id of this Component -
Add and initialize default child
Components based upon options. -
Turn on listeners for
VideoTrackList,{AudioTrackList, andTextTrackListevents.This adds
EventTarget~EventListenersforaddtrack, andremovetrack.Fires:
-
load()
-
A wrapper around the media elements
loadfunction. This will call theHTML5s media elementloadfunction.- See:
-
Localize a string given the string in english.
If tokens are provided, it'll try and run a simple token replacement on the provided string. The tokens it looks for look like
{1}with the index being 1-indexed into the tokens array.If a
defaultValueis provided, it'll use that overstring, if a value isn't found in provided language files. This is useful if you want to have a descriptive key for token replacement but have a succinct localized string and not requireen.jsonto be included.Currently, it is used for the progress bar timing.
{ "progress bar timing: currentTime={1} duration={2}": "{1} of {2}" }It is then used like so:
this.localize('progress bar timing: currentTime={1} duration{2}', [this.player_.currentTime(), this.player_.duration()], '{1} of {2}');Which outputs something like:
01:23 of 24:56.Name Type Description stringstring The string to localize and the key to lookup in the language files.
tokensArray.<string> optional If the current item has token replacements, provide the tokens here.
defaultValuestring optional Defaults to
string. Can be a default value to use for token replacement if the lookup key is needed to be separate.Returns:
Type Description string The localized string or if no localization exists the english string. -
loop(){boolean}
-
Get the value of
loopfrom the media element.loopindicates that the media should return to the start of the media and continue playing once it reaches the end.- See:
Returns:
Type Description boolean - The value of
loopfrom the media element. - True indicates that playback should seek back to start once the end of a media is reached. - False indicates that playback should not loop back to the start when the end of the media is reached.
-
Turn off the polyfill for
progressevents that was created inTech#manualProgressOn -
Polyfill the
progressevent for browsers that don't support it natively.- See:
-
Turn off the polyfill for
timeupdateevents that was created inTech#manualTimeUpdatesOn -
Polyfill the
timeupdateevent for browsers that don't support it. -
muted(){boolean}
-
Get the value of
mutedfrom the media element.mutedindicates that the volume for the media should be set to silent. This does not actually change thevolumeattribute.- See:
Returns:
Type Description boolean - True if the value of
volumeshould be ignored and the audio set to silent. - False if the value ofvolumeshould be used.
-
Get the
Components name. The name gets used to reference theComponentand is set during registration.Returns:
Type Description string The name of this Component. -
networkState(){number}
-
Get the value of
networkStatefrom the media element.networkStateindicates the current network state. It returns an enumeration from the following list:- 0: NETWORK_EMPTY
- 1: NETWORK_IDLE
- 2: NETWORK_LOADING
- 3: NETWORK_NO_SOURCE
Returns:
Type Description number The value of networkStatefrom the media element. This will be a number from the list in the description. -
Update our internal duration on a
durationchangeevent by callingTech#duration.Name Type Description eventEventTarget~Event The
durationchangeevent that caused this to run.Listens to Events:
- Tech#event:durationchange
-
Deep merge of options objects with new options.
Note: When both
objandoptionscontain properties whose values are objects. The two properties get merged usingmodule:mergeOptionsName Type Description objObject The object that contains new options.
- Deprecated
- since version 5
Returns:
Type Description Object A new object of this.options_andobjmerged together. -
overrides overrideNativeAudioTracks(override)
-
Attempt to force override of native audio tracks.
Name Type Description overrideboolean If set to true native audio will be overridden, otherwise native audio will potentially be used.
-
overrides overrideNativeVideoTracks(override)
-
Attempt to force override of native video tracks.
Name Type Description overrideboolean If set to true native video will be overridden, otherwise native video will potentially be used.
-
pause()
-
A wrapper around the media elements
pausefunction. This will call theHTML5media elementspausefunction.- See:
-
paused(){boolean}
-
Get the value of
pausedfrom the media element.pausedindicates whether the media element is currently paused or not.- See:
Returns:
Type Description boolean The value of pausedfrom the media element. -
play()
-
A wrapper around the media elements
playfunction. This will call theHTML5s media elementplayfunction.- See:
-
playbackRate(){number}
-
Get the value of
playbackRatefrom the media element.playbackRateindicates the rate at which the media is currently playing back. Examples:- if playbackRate is set to 2, media will play twice as fast.
- if playbackRate is set to 0.5, media will play half as fast.
- See:
Returns:
Type Description number The value of playbackRatefrom the media element. A number indicating the current playback speed of the media, where 1 is normal speed. -
overrides played(){TimeRange}
-
Get the value of
playedfrom the media element.playedreturns aTimeRangeobject representing points in the media timeline that have been played.- See:
Returns:
Type Description TimeRange The value of playedfrom the media element. ATimeRangeobject indicating the ranges of time that have been played. -
Return the
Playerthat theComponenthas attached to.Returns:
Type Description Player The player that this Componenthas attached to. -
overrides playsinline(){boolean}
-
Get the value of
playsinlinefrom the media element.playsinlineindicates to the browser that non-fullscreen playback is preferred when fullscreen playback is the native default, such as in iOS Safari.- See:
Returns:
Type Description boolean - The value of
playsinlinefrom the media element. - True indicates that the media should play inline. - False indicates that the media should not play inline.
-
poster(){string}
-
Get the value of
posterfrom the media element.posterindicates that the url of an image file that can/will be shown when no media data is available.- See:
Returns:
Type Description string The value of posterfrom the media element. Value will be a url to an image. -
preload(){string}
-
Get the value of
preloadfrom the media element.preloadindicates what should download before the media is interacted with. It can have the following values:- none: nothing should be downloaded
- metadata: poster and the first few frames of the media may be downloaded to get media dimensions and other metadata
- auto: allow the media and metadata for the media to be downloaded before interaction
- See:
Returns:
Type Description string The value of preloadfrom the media element. Will be 'none', 'metadata', or 'auto'. -
Bind a listener to the component's ready state. Different from event listeners in that if the ready event has already happened it will trigger the function immediately.
Returns:
Type Description Component Returns itself; method can be chained. -
readyState(){number}
-
Get the value of
readyStatefrom the media element.readyStateindicates the current state of the media element. It returns an enumeration from the following list:- 0: HAVE_NOTHING
- 1: HAVE_METADATA
- 2: HAVE_CURRENT_DATA
- 3: HAVE_FUTURE_DATA
- 4: HAVE_ENOUGH_DATA
Returns:
Type Description number The value of readyStatefrom the media element. This will be a number from the list in the description. -
inherited overrides remoteTextTrackEls(){HtmlTrackElementList}
-
Get the remote element
HtmlTrackElementListReturns:
Type Description HtmlTrackElementList -
inherited overrides remoteTextTracks(){TextTrackList}
-
Get the remote element
TextTrackListReturns:
Type Description TextTrackList -
Remove an attribute from the
Components element.Name Type Description attributestring Name of the attribute to remove.
- See:
-
Remove a child
Componentfrom thisComponents list of children. Also removes the childComponents element from thisComponents element.Name Type Description componentComponent The child
Componentto remove. -
Remove a CSS class name from the
Components element.Name Type Description classToRemovestring CSS class name to remove
-
overrides removeRemoteTextTrack(track)
-
Remove remote
TextTrackfromTextTrackListobjectName Type Description trackTextTrack TextTrackobject to remove -
Queues up a callback to be passed to requestAnimationFrame (rAF), but with a few extra bonuses:
-
Supports browsers that do not support rAF by falling back to
Component#setTimeout. -
The callback is turned into a
Component~GenericCallback(i.e. bound to the component). -
Automatic cancellation of the rAF callback is handled if the component is disposed before it is called.
Name Type Description fnComponent~GenericCallback A function that will be bound to this component and executed just before the browser's next repaint.
- See:
Listens to Events:
Returns:
Type Description number Returns an rAF ID that gets used to identify the timeout. It can also be used in Component#cancelAnimationFrameto cancel the animation frame callback. -
-
overrides reset()
-
Reset the tech by removing all sources and then calling
Html5.resetMediaElement. -
seekable(){TimeRange}
-
Get the value of
seekablefrom the media element.seekablereturns aTimeRangeobject indicating ranges of time that can currently beseekedto.- See:
Returns:
Type Description TimeRange The value of seekablefrom the media element. ATimeRangeobject indicating the current ranges of time that can be seeked to. -
seeking(){boolean}
-
Get the value of
seekingfrom the media element.seekingindicates whether the media is currently seeking to a new position or not.- See:
Returns:
Type Description boolean - The value of
seekingfrom the media element. - True indicates that the media is currently seeking to a new position. - False indicates that the media is not seeking to a new position at this time.
-
Set the value of an attribute on the
Component's elementName Type Description attributestring Name of the attribute to set.
valuestring Value to set the attribute to.
- See:
-
setAutoplay(autoplay)
-
Set the value of
autoplayon the media element.autoplayindicates that the media should start to play as soon as the page is ready.Name Type Description autoplayboolean - True indicates that the media should start as soon as the page loads. - False indicates that the media should not start as soon as the page loads.
- See:
-
setControls(val)
-
Set controls attribute for the HTML5 media Element.
Name Type Description valstring Value to set the controls attribute to
-
overrides setCurrentTime(seconds)
-
Set current time for the
HTML5tech.Name Type Description secondsnumber Set the current time of the media to this.
-
setDefaultMuted(defaultMuted)
-
Set the value of
defaultMutedon the media element.defaultMutedindicates that the current audio level should be silent, but will only effect the muted level on intial playback..Name Type Description defaultMutedboolean - True if the audio should be set to silent - False otherwise
- See:
-
setDefaultPlaybackRate(){number}
-
Set the value of
defaultPlaybackRateon the media element.defaultPlaybackRateindicates the rate at which the media should play back upon initial startup. Changing this value after a video has started will do nothing. Instead you should usedHtml5#setPlaybackRate.Example Values:
- if playbackRate is set to 2, media will play twice as fast.
- if playbackRate is set to 0.5, media will play half as fast.
- See:
Returns:
Type Description number The value of defaultPlaybackRatefrom the media element. A number indicating the current playback speed of the media, where 1 is normal speed. -
Creates a function that gets run every
xmilliseconds. This function is a wrapper aroundwindow.setInterval. There are a few reasons to use this one instead though.- It gets cleared via
Component#clearIntervalwhenComponent#disposegets called. - The function callback will be a
Component~GenericCallback
Name Type Description fnComponent~GenericCallback The function to run every
xseconds.intervalnumber Execute the specified function every
xmilliseconds.- See:
Listens to Events:
Returns:
Type Description number Returns an id that can be used to identify the interval. It can also be be used in Component#clearIntervalto clear the interval. - It gets cleared via
-
setLoop(loop)
-
Set the value of
loopon the media element.loopindicates that the media should return to the start of the media and continue playing once it reaches the end.Name Type Description loopboolean - True indicates that playback should seek back to start once the end of a media is reached. - False indicates that playback should not loop back to the start when the end of the media is reached.
- See:
-
setMuted(muted)
-
Set the value of
mutedon the media element.mutedindicates that the current audio level should be silent.Name Type Description mutedboolean - True if the audio should be set to silent - False otherwise
- See:
-
setPlaybackRate(){number}
-
Set the value of
playbackRateon the media element.playbackRateindicates the rate at which the media should play back. Examples:- if playbackRate is set to 2, media will play twice as fast.
- if playbackRate is set to 0.5, media will play half as fast.
- See:
Returns:
Type Description number The value of playbackRatefrom the media element. A number indicating the current playback speed of the media, where 1 is normal speed. -
overrides setPlaysinline(playsinline)
-
Set the value of
playsinlinefrom the media element.playsinlineindicates to the browser that non-fullscreen playback is preferred when fullscreen playback is the native default, such as in iOS Safari.Name Type Description playsinlineboolean - True indicates that the media should play inline. - False indicates that the media should not play inline.
- See:
-
overrides setPoster(poster)
-
Set the value of
posteron the media element.posteris the url to an image file that can/will be shown when no media data is available.Name Type Description posterstring The url to an image that should be used as the
posterfor the media element.- See:
-
setPreload(preload)
-
Set the value of
preloadon the media element.preloadindicates what should download before the media is interacted with. It can have the following values:- none: nothing should be downloaded
- metadata: poster and the first few frames of the media may be downloaded to get media dimensions and other metadata
- auto: allow the media and metadata for the media to be downloaded before interaction
Name Type Description preloadstring The value of
preloadto set on the media element. Must be 'none', 'metadata', or 'auto'.- See:
-
setSrc(src)
-
Set the value of
srcon the media element.srcindicates the currentTech~SourceObjectfor the media.Name Type Description srcTech~SourceObject The source object to set as the current source.
- See:
-
Creates a function that runs after an
xmillisecond timeout. This function is a wrapper aroundwindow.setTimeout. There are a few reasons to use this one instead though:- It gets cleared via
Component#clearTimeoutwhenComponent#disposegets called. - The function callback will gets turned into a
Component~GenericCallback
Note: You can't use
window.clearTimeouton the id returned by this function. This will cause its dispose listener not to get cleaned up! Please useComponent#clearTimeoutorComponent#disposeinstead.Name Type Description fnComponent~GenericCallback The function that will be run after
timeout.timeoutnumber Timeout in milliseconds to delay before executing the specified function.
- See:
Listens to Events:
Returns:
Type Description number Returns a timeout ID that gets used to identify the timeout. It can also get used in Component#clearTimeoutto clear the timeout that was set. - It gets cleared via
-
setupSourcesetHandling_()
-
Modify the media element so that we can detect when the source is changed. Fires
sourcesetjust after the source has changed -
setVolume(percentAsDecimal)
-
Set the value of
volumeon the media element.volumeindicates the current audio level as a percentage in decimal form. This means that 1 is 100%, 0.5 is 50%, and so on.Name Type Description percentAsDecimalnumber The volume percent as a decimal. Valid range is from 0-1.
- See:
-
[Spec]Spec
-
Show the
Components element if it is hidden by removing the 'vjs-hidden' class name from it. -
src(src){Tech~SourceObject|undefined}
-
A getter/setter for the
Html5Tech's source object.Note: Please use
Html5#setSourceName Type Description srcTech~SourceObject optional The source object you want to set on the
HTML5techs element.- Deprecated
- Since version 5.
Returns:
Type Description Tech~SourceObject | undefined - The current source object when a source is not passed in. - undefined when setting
-
Stop the interval function created in
Tech#trackCurrentTimeso that thetimeupdateevent is no longer triggered.Listens to Events:
- {Tech#event:pause}
-
Turn off the polyfill for
progressevents that was created inTech#manualProgressOnStop manually tracking progress events by clearing the interval that was set inTech#trackProgress. -
supportsFullScreen(){boolean}
-
Check if fullscreen is supported on the current playback device.
Returns:
Type Description boolean - True if fullscreen is supported. - False if fullscreen is not supported.
-
inherited overrides textTracks(){TextTrackList}
-
Get the
TextTrackListReturns:
Type Description TextTrackList -
Add or remove a CSS class name from the component's element.
classToTogglegets added whenComponent#hasClasswould return false.classToTogglegets removed whenComponent#hasClasswould return true.
Name Type Description classToTogglestring The class to add or remove based on (@link Component#hasClass}
predicateboolean | Dom~predicate optional An
Dom~predicatefunction or a boolean -
Sets up an interval function to track current time and trigger
timeupdateevery 250 milliseconds.Listens to Events:
- Tech#event:play
-
This is used to trigger a
progressevent when the buffered percent changes. It sets an interval function that will be called every 500 milliseconds to check if the buffer end percent has changed.This function is called by
Tech#manualProgressOnName Type Description eventEventTarget~Event The
readyevent that caused this to run.Fires:
Listens to Events:
-
Trigger all the ready listeners for this
Component.Fires:
-
A special function to trigger source set in a way that will allow player to re-trigger if the player or tech are not ready yet.
Name Type Description srcstring The source string at the time of the source changing.
Fires:
-
videoHeight(){number}
-
Get the value of
videoHeightfrom the video element.videoHeightindicates the current height of the video in css pixels.Returns:
Type Description number The value of videoHeightfrom the video element. This will be a number in css pixels. -
inherited overrides videoTracks(){VideoTrackList}
-
Get the
VideoTrackListReturns:
Type Description VideoTrackList -
videoWidth(){number}
-
Get the value of
videoWidthfrom the video element.videoWidthindicates the current width of the video in css pixels.Returns:
Type Description number The value of videoWidthfrom the video element. This will be a number in css pixels. -
volume(){number}
-
Get the value of
volumefrom the media element.volumeindicates the current playback volume of audio for a media.volumewill be a value from 0 (silent) to 1 (loudest and default).- See:
-
[Spec]Spec
Returns:
Type Description number The value of volumefrom the media element. Value will be between 0-1. -
overrides width(){number}
-
Get the current width of the HTML5 media element.
Returns:
Type Description number The width of the HTML5 media element. -
staticHtml5.canControlPlaybackRate(){boolean}
-
Check if the playback rate can be changed in this browser/device.
Returns:
Type Description boolean - True if playback rate can be controlled - False otherwise
-
staticHtml5.canControlVolume(){boolean}
-
Check if the volume can be changed in this browser/device. Volume cannot be changed in a lot of mobile devices. Specifically, it can't be changed from 1 on iOS.
Returns:
Type Description boolean - True if volume can be controlled - False otherwise
-
staticHtml5.canMuteVolume(){bolean}
-
Check if the volume can be muted in this browser/device. Some devices, e.g. iOS, don't allow changing volume but permits muting/unmuting.
Returns:
Type Description bolean - True if volume can be muted
- False otherwise
- True if volume can be muted
-
staticHtml5.canOverrideAttributes(){boolean}
-
Check if we can override a video/audio elements attributes, with Object.defineProperty.
Returns:
Type Description boolean - True if builtin attributes can be overridden - False otherwise
-
staticHtml5.canPlaySource(srcObj, options){string}
-
Check if the tech can support the given source
Name Type Description srcObjObject The source object
optionsObject The options passed to the tech
Returns:
Type Description string 'probably', 'maybe', or '' (empty string) -
staticHtml5.canPlayType(type){string}
-
Check if the tech can support the given type
Name Type Description typestring The mimetype to check
Returns:
Type Description string 'probably', 'maybe', or '' (empty string) -
staticHtml5.isSupported(){boolean}
-
Check if HTML5 media is supported by this browser/device.
Returns:
Type Description boolean - True if HTML5 media is supported. - False if HTML5 media is not supported.
-
staticHtml5.supportsNativeAudioTracks(){boolean}
-
Check to see if native
AudioTracks are supported by this browser/deviceReturns:
Type Description boolean - True if native
AudioTracks are supported. - False otherwise
- True if native
-
staticHtml5.supportsNativeTextTracks(){boolean}
-
Check to see if native
TextTracks are supported by this browser/device.Returns:
Type Description boolean - True if native
TextTracks are supported. - False otherwise
- True if native
-
staticHtml5.supportsNativeVideoTracks(){boolean}
-
Check to see if native
VideoTracks are supported by this browser/deviceReturns:
Type Description boolean - True if native
VideoTracks are supported. - False otherwise
- True if native
Events
-
Triggered when tracks are added or removed on the Tech
AudioTrackListType:
-
Triggered when a component is resized.
Type:
-
Triggered when a
Componentis disposed.Type:
Properties:
Name Type Argument Default Description bubblesboolean <optional>
false set to false so that the close event does not bubble up
-
See
Player#progressType:
-
Triggered when a
Componentis ready.Type:
-
Fired when the source is set on the tech causing the media element to reload.
Type:
-
Triggered when a
Componentis tapped.Type:
-
Triggered when tracks are added or removed on the Tech
TextTrackListType:
-
Trigger timeupdate because we're done seeking and the time has changed. This is particularly useful for if the player is paused to time the time displays.
Type:
-
Triggered when tracks are added or removed on the Tech
VideoTrackListType:
-
Fired when vtt.js is loaded.
Type: