# rtsp-client **Repository Path**: cocoaroger/rtsp-client ## Basic Information - **Project Name**: rtsp-client - **Description**: rtsp-client - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-03-07 - **Last Updated**: 2023-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # RTSP client library Minimal rtsp signaling protocol only client library. ## Install ``` npm i --save rtsp-client ``` ## Usage ```javascript const RTSPClient = require('rtsp-client'); ``` ## Example ```javascript //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