rtsp-client

1.4.5 • Public • Published

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

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i rtsp-client

    Weekly Downloads

    11

    Version

    1.4.5

    License

    MIT

    Unpacked Size

    43.5 kB

    Total Files

    21

    Last publish

    Collaborators

    • bryan-lester-dolby
    • mildsunrise
    • murillo128
    • sgarcia