1.4.5 • Published 4 years ago

rtsp-client v1.4.5

Weekly downloads
19
License
MIT
Repository
github
Last release
4 years ago

RTSP client library

Minimal rtsp signaling protocol only client library.

Install

npm i --save rtsp-client

Usage

	const RTSPClient = require('rtsp-client');

Example

	//Create client
	const client = new RTSPClient();

	//Connect to url
	await client.connect("rtsp://server.url");

	//Get options
	const options = await client.options();

	//Describe
	const describe = await client.describe();

	//Dump SDP
	console.log(describe.body.plain);

Author

Sergio Garcia Murillo @ Medooze

License

MIT

1.4.5

4 years ago

1.4.4

4 years ago

1.4.3

4 years ago

1.4.2

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago