devotox / ember-cli-videojs-record

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ember Observer Score Build Status Coverage Status NPM Version NPM Downloads Dependency Status DevDependency Status Greenkeeper

ember-cli-videojs-record

Simple Wrapper around VideoJS Record.

This provides a service that can be used to record, play, and export video, audio, screenshare as a webm file, blob, or base64 string.

DEMO

Installation

ember install ember-cli-videojs-record

Usage

import Route from '@ember/routing/route';

export default Route.extend({
	actions: {
		onFinished(player, media) {
			console.log(player, media); // eslint-disable-line
		}
	}
});
{{videojs-record
  pip=pip
  audio=audio
  video=video
  image=image
  screen=screen
  animation=animation
  maxLength=maxLength
  onFinished=(route-action "onFinished")
}}

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

About

License:MIT License


Languages

Language:JavaScript 81.8%Language:HTML 17.1%Language:CSS 1.1%