Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dride/cordova-plugin-rtsp-vlc
- Owner: dride
- License: mit
- Created: 2018-03-26T11:23:57.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-13T11:26:31.000Z (7 months ago)
- Last Synced: 2024-12-05T19:23:40.520Z (about 1 month ago)
- Topics: cordova, rtsp, vlc
- Language: Java
- Homepage: https://dride.io
- Size: 219 KB
- Stars: 25
- Watchers: 7
- Forks: 21
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)