Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

videojs-language-switch

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

videojs-language-switch

Control for switching between video language versions

  • 1.2.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
37
decreased by-9.76%
Maintainers
2
Weekly downloads
 
Created
Source

videojs-language-switch

Control for switching between video language versions

Installation

npm install --save videojs-language-switch

The npm installation is preferred, but Bower works, too.

bower install  --save videojs-language-switch

Usage

To include videojs-language-switch on your website or web application, use any of the following methods.

<script> Tag

This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.js, so that the videojs global is available.

Include an array of languages with sources. This plugin is created to work alongside other quality video controls so you can provide several resoulutions as well as types with each language.

The name property used for each language will be what appears within the menu item.

<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-language-switch.min.js"></script>
<script>
  var player = videojs('my-video');

  player.languageSwitch({
    languages: [
      {
        name: 'English',
        sources: [
          {
            src: 'http://bit.ly/2iJXRec',
            type: 'video/mp4',
            res: 'Medium'
          },
          {
            src: 'http://bit.ly/2jxmfwI',
            type: 'video/webm',
            res: 'Medium'
          }
        ]
      },
      {
        name: 'Portuguese',
        sources: [
          {
            src: 'http://bit.ly/2jVlmho',
            type: 'video/mp4',
            res: 'Medium'
          },
          {
            src: 'http://bit.ly/2jVlTzx',
            type: 'video/webm',
            res: 'Medium'
          }
        ]
      }
    ]
  });
</script>

You can provide an option for buttonClass which will add a CSS class to the button icon placeholder element so that you can style it as you wish.

  player.languageSwitch({
    languages: [
      ...
    ],
    buttonClass: 'icon-globe' // Default
  });

You can also provide an option for positionIndex which will position button among the control bar items. Some of the default control bar items are hidden so you need to inspect the bar to find correct index.

  player.languageSwitch({
    languages: [
      ...
    ],
    positionIndex: 5 // Default - item added at the end of the item list.
  });

Browserify

When using with Browserify, install videojs-language-switch via npm and require the plugin as you would any other module.

var videojs = require('video.js');

// The actual plugin function is exported by this module, but it is also
// attached to the `Player.prototype`; so, there is no need to assign it
// to a variable.
require('videojs-language-switch');

var player = videojs('my-video');

player.languageSwitch();

RequireJS/AMD

When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the plugin as you normally would:

require(['video.js', 'videojs-language-switch'], function(videojs) {
  var player = videojs('my-video');

  player.languageSwitch();
});

License

MIT. Copyright (c) Adam Oliver <mail@adamoliver.net>

Keywords

FAQs

Package last updated on 15 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc