1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-16 11:37:29 +02:00
video.js/docs/api/vjs.md
Steve Heffernan f3d7196a73 Release 4.7.0
2014-08-05 18:05:38 -07:00

3.8 KiB

vjs

DEFINED IN: src/js/core.js#L26

Doubles as the main function for users to create a player instance and also the main library object.

ALIASES videojs, V (deprecated)

The vjs function can be used to initialize or retrieve a player.

var myPlayer = vjs('my_video_id');

INDEX


PROPERTIES

options

Global Player instance options, surfaced from vjs.Player.prototype.options_ vjs.options = vjs.Player.prototype.options_ All options should use string keys so they avoid renaming by closure compiler

defined in: src/js/core.js#L76


players

Global player list

defined in: src/js/core.js#L125


METHODS

parseUrl( url )

Resolve and parse the elements of a URL

PARAMETERS:
  • url String The url to parse
RETURNS:
  • Object An object of url details

defined in: src/js/lib.js#L723


plugin( name, init )

the method for registering a video.js plugin

PARAMETERS:
  • name String The name of the plugin
  • init Function The function that is run when the player inits

defined in: src/js/plugins.js#L7