/** * Options for the video playback using the `play` function. */ export interface VideoOptions { /** * Set the initial volume of the video playback, where 0.0 is 0% volume and 1.0 is 100%. * For example: for a volume of 30% set the value to 0.3. */ volume?: number; /** * There are to options for the scaling mode. SCALE_TO_FIT which is default and SCALE_TO_FIT_WITH_CROPPING. * These strings are the only ones which can be passed as option. */ scalingMode?: number; } /** * @name VideoPlayer * @description * A Codova plugin that simply allows you to immediately play a video in fullscreen mode. * * Requires Cordova plugin: `com.moust.cordova.videoplayer`. For more info, please see the [VideoPlayer plugin docs](https://github.com/moust/cordova-plugin-videoplayer). * * @usage * ```typescript * import { VideoPlayer } from 'ionic-native'; * * * // Playing a video. * VideoPlayer.play("file:///android_asset/www/movie.mp4").then(() => { * console.log('video completed'); * }).catch(err => { * console.log(err); * }); * * ``` * @interfaces * VideoOptions */ export declare class VideoPlayer { /** * Plays the video from the passed url. * @param fileUrl {string} File url to the video. * @param options {VideoOptions?} Optional video playback settings. See options above. * @returns {Promise} Resolves promise when the video was played successfully. */ static play(fileUrl: string, options?: VideoOptions): Promise; /** * Stops the video playback immediatly. */ static close(): void; }