-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(streaming-media): add streaming media support (#486)
- Loading branch information
Showing
2 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import {Plugin, Cordova} from './plugin'; | ||
/** | ||
* @name StreamingMedia | ||
* @description | ||
* This plugin allows you to stream audio and video in a fullscreen, native player on iOS and Android. | ||
* | ||
* @usage | ||
* ``` | ||
* import {StreamingMedia} from 'ionic-native'; | ||
* | ||
* let options: VideoOptions = { | ||
* successCallback: () => { console.log('Video played') }, | ||
* errorCallback: (e) => { console.log('Error streaming') }, | ||
* orientation: 'landscape' | ||
* }; | ||
* | ||
* StreamingMedia.('https://path/to/video/stream', options); | ||
* | ||
* ``` | ||
*/ | ||
@Plugin({ | ||
plugin: 'cordova-plugin-streaming-media', | ||
pluginRef: 'plugins.streamingMedia', | ||
repo: 'https://github.com/nchutchind/cordova-plugin-streaming-media', | ||
platforms: ['Android', 'iOS'] | ||
}) | ||
export class StreamingMedia { | ||
/** | ||
* Streams a video | ||
* @param videoUrl {string} The URL of the video | ||
* @param options {VideoOptions} Options | ||
*/ | ||
@Cordova({sync: true}) | ||
static playVideo(videoUrl: string, options?: VideoOptions): void { } | ||
|
||
/** | ||
* Streams an audio | ||
* @param audioUrl {string} The URL of the audio stream | ||
* @param options {AudioOptions} Options | ||
*/ | ||
@Cordova({sync: true}) | ||
static playAudio(audioUrl: string, options?: AudioOptions): void { } | ||
|
||
/** | ||
* Stops streaming audio | ||
*/ | ||
@Cordova({sync: true}) | ||
static stopAudio(): void { } | ||
|
||
/** | ||
* Pauses streaming audio | ||
*/ | ||
@Cordova({sync: true, platforms: ['iOS']}) | ||
static pauseAudio(): void { } | ||
|
||
/** | ||
* Resumes streaming audio | ||
*/ | ||
@Cordova({sync: true, platforms: ['iOS']}) | ||
static resumeAudio(): void { } | ||
|
||
} | ||
|
||
export interface VideoOptions { | ||
successCallback?: Function; | ||
errorCallback?: Function; | ||
orientation?: string; | ||
} | ||
|
||
export interface AudioOptions { | ||
bgColor?: string; | ||
bgImage?: string; | ||
bgImageScale?: string; | ||
initFullscreen?: boolean; | ||
successCallback?: Function; | ||
errorCallback?: Function; | ||
} |