Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dride/cordova-plugin-rtsp-vlc

PhoneGap/Cordova VLC RTSP Player Plugin
https://github.com/dride/cordova-plugin-rtsp-vlc

cordova rtsp vlc

Last synced: 26 days ago
JSON representation

PhoneGap/Cordova VLC RTSP Player Plugin

Awesome Lists containing this project

README

        

[![npm version](https://badge.fury.io/js/cordova-plugin-rtsp-vlc.svg)](https://badge.fury.io/js/cordova-plugin-rtsp-vlc)

# PhoneGap/Cordova RTSP player using VLC

## Installation

cordova plugin add cordova-plugin-rtsp-vlc

## Supported Platforms

- Android
- iOS

## Usage

```
window.VideoPlayerVLC.play(
url,
done => {},
error => {}
);
```

## Response

done: string - "onDestroyVlc"

## Example:

```
window.VideoPlayerVLC.play(
"rtsp://192.168.42.1/live.mov",
done => {},
error => {}
);
```

References:

https://github.com/disono/libVLC-Player by [@disono](https://github.com/disono)

https://github.com/pengyanb/com.pengyanb.vlcstreamplayer by [@pengyanb](https://github.com/pengyanb)