Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nodertc/is-rtp

Check if a Buffer is a RTP/RTCP message.
https://github.com/nodertc/is-rtp

js node nodejs nodertc rtp webrtc

Last synced: 3 months ago
JSON representation

Check if a Buffer is a RTP/RTCP message.

Awesome Lists containing this project

README

        

# is-rtp

[![Build Status](https://travis-ci.org/nodertc/is-rtp.svg?branch=master)](https://travis-ci.org/nodertc/is-rtp)
[![npm](https://img.shields.io/npm/v/is-rtp.svg)](https://npmjs.org/package/is-rtp)
[![node](https://img.shields.io/node/v/is-rtp.svg)](https://npmjs.org/package/is-rtp)
[![license](https://img.shields.io/npm/l/is-rtp.svg)](https://npmjs.org/package/is-rtp)
[![downloads](https://img.shields.io/npm/dm/is-rtp.svg)](https://npmjs.org/package/is-rtp)

Check if a Buffer is a [RTP/RTCP](https://tools.ietf.org/html/rfc3550) message. Used for demultiplex packets that are arriving on the same port. Follows [RFC7983](https://tools.ietf.org/html/rfc7983#section-7).

## Usage

```js
const dgram = require('dgram')
const is_rtp = require('is-rtp')

const socket = dgram.createSocket('udp4')

socket.on('message', (packet) => {
if (is_rtp(packet)) {
// handle RTP...
}
})

socket.bind(0)
```

## Related projects

* [`is-dtls`](https://github.com/nodertc/is-dtls) - Check if a Buffer is a [DTLS](https://tools.ietf.org/html/rfc4347) message.
* [`is-turn`](https://github.com/nodertc/is-turn) - Check if a Buffer is a [TURN](https://tools.ietf.org/html/rfc5766) message.
* [`is-stun`](https://github.com/nodertc/is-stun) - Check if a Buffer is a [STUN](https://tools.ietf.org/html/rfc5389) message.

## License

MIT, 2017 (c) Dmitry Tsvettsikh