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 760eb308db Release 4.7.3
2014-08-20 15:16:22 -07:00

4.3 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#L144


METHODS

addLanguage( code, data )

Utility function for adding languages to the default options. Useful for amending multiple language support at runtime.

Example: vjs.addLanguage('es', {'Hello':'Hola'});

PARAMETERS:
  • code String The language code or dictionary property
  • data Object The data values to be translated
RETURNS:
  • Object The resulting global languages dictionary object

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


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