3.1.0 • Published 10 months ago

cordova-plugin-rtsp-vlc v3.1.0

Weekly downloads
7
License
Apache-2.0
Repository
github
Last release
10 months ago

npm version

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/pengyanb/com.pengyanb.vlcstreamplayer by @pengyanb