cordova-plugin-video-player

1.0.1 • Public • Published

Video Player plugin for Cordova/PhoneGap

A Codova plugin that simply allows you to immediately play a video in fullscreen mode.

Installation

This plugin use the Cordova CLI's plugin command. To install it to your application, simply execute the following (and replace variables).

cordova plugin add com.moust.cordova.videoplayer

Using

Just call the play method with a video file path as argument. The video player will close itself when the video will be completed.

VideoPlayer.play(path, [options], [completeCallback], [errorCallback]);

Stop and close a video currently playing without waiting the end.

VideoPlayer.close();

The plugin is able to play file-path or http/rtsp URL.

You can optionally add options parameters like volume and calling mode. You can also add an success callback function to handle completed playback. You can also add an error callback function to handle unexpected playback errors.

Example

VideoPlayer.play("file:///android_asset/www/movie.mp4");
VideoPlayer.play(
    "file:///android_asset/www/movie.mp4",
    {
        volume: 0.5,
        scalingMode: VideoPlayer.SCALING_MODE.SCALE_TO_FIT_WITH_CROPPING
    },
    function () {
        console.log("video completed");
    },
    function (err) {
        console.log(err);
    }
);

Options

Licence MIT

Copyright 2013 Quentin Aupetit

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i cordova-plugin-video-player

Weekly Downloads

14

Version

1.0.1

License

MIT

Last publish

Collaborators

  • moust