Giter Club home page Giter Club logo

rangeslider-videojs-7.x's Introduction

IMPORTANT!

RangeSlider port for Videojs version 7.x. (Previous version only supports vesion 5.x)

Rangeslider-videojs

Ranger Slider Plugin for Video JS Player

rangeslider.js is a plugin for Video JS player. The aim of this plugin is to create range slider to select a region of a video in video-js.

A previous Live-Demo (Working for VideoJs 5.x)

http://acpmasquerade.github.io/rangeslider-videojs/demo/index.html

Installation

Add rangeslider.min.js and rangeslider.min.css CDN distributed file to your head tag, just after videojs:

<html>
	<head>
		<!--Latest VideoJS (5.x) -->
		<link rel='stylesheet' type='text/css' href='http://vjs.zencdn.net/5.8.7/video-js.css' >
		<script src='http://vjs.zencdn.net/5.8.7/video.js'></script>
		<!--RangeSlider Plugin-->
		<script src='src/rangeslider.js'></script>
		<link rel='stylesheet' type='text/css' href='src/rangeslider.css'>
	</head>
	<body>
		...

Usage

Load a video in video-js, as you can see in the tutorial of video-js player

<video id="vid1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264"
poster="http://video-js.zencoder.com/oceans-clip.png"
data-setup=''>
	<source src="my-video.mp4" type='video/mp4' />
	<source src="my-video.webm" type='video/webm' />
	<source src="my-video.ogv" type='video/ogg' />
</video>

In addition, to load and control the plugin from Javascript must add a few lines of javascript like:

var options = {},
	mplayer = videojs("vid1"),
	mplayer.rangeslider(options);

The first one was to load the videojs player and the second one is to load the rangeslider plugin You can specify to the plugin to be loaded with the range slider open, the panel time, etc.. with the initial options. For example:

locked = true/false; hidden = true/false; panel = true/false; controlTime = true/false;

var options = {locked:true,controlTime:false}, //This will lock the range slider and won't show the control time panel to set the position of the arrows
	mplayer=videojs("vid1"),
	mplayer.rangeslider(options); 

#API Methods

Once the plugin is started, we can control the range slider with the following functions:

# showSlider() ##

Show the Slider Bar Component

	mplayer.showSlider();

# hideSlider() ##

Hide the Slider Bar Component

	mplayer.hideSlider();

# showSliderPanel() ##

Show the Panel above the arrow with the current position

	mplayer.showSliderPanel();

# hideSliderPanel() ##

Hide the Panel above the arrow with the current position

	mplayer.hideSliderPanel();

# showControlTime() ##

Show the panel to edit the time for the start and end arrows

	mplayer.showControlTime();

# hideControlTime() ##

Hide the panel to edit the time for the start and end arrows

	mplayer.hideControlTime();

# lockSlider() ##

Lock the Slider bar and it will not be possible to change the arrow positions

	mplayer.lockSlider();

# unlockSlider() ##

Unlock the Slider bar and it will be possible to change the arrow positions

	mplayer.unlockSlider();

# setValueSlider() ##

Set a values in seconds for the position of the arrows.

	mplayer.setValueSlider(start,end);

# playBetween() ##

The video will be played in a selected section. It is necessary to enter the start and end second.

	mplayer.playBetween(start, end);

# loopBetween() ##

The video will be looped in a selected section. It is necessary to enter the start and end second.

	mplayer.loopBetween(start, end);

# getValueSlider() ##

Get the Values of the arrows in second.

	mplayer.getValueSlider();

EVENTS

# loadedRangeSlider EVENT

Fired when the plugin has been loaded

	mplayer.on("loadedRangeSlider",function() {
		//init
		...
	});

# sliderchange EVENT

Fired when the values of slider have changed

	mplayer.on("sliderchange",function() {
		var values = mplayer.getValueSlider();
		...
	});

rangeslider-videojs-7.x's People

Contributors

acpmasquerade avatar akonsu avatar danielcebrian avatar ericonaldo avatar shantanu95 avatar

Forkers

mr8lu373

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.