is-rtp
v2.0.0
Published
Check if a Buffer is a RTP/RTCP message.
Downloads
500
Maintainers
Readme
is-rtp
Check if a Buffer is a RTP/RTCP message. Used for demultiplex packets that are arriving on the same port. Follows RFC7983.
Usage
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
- Check if a Buffer is a DTLS message.is-turn
- Check if a Buffer is a TURN message.is-stun
- Check if a Buffer is a STUN message.
License
MIT, 2017 (c) Dmitry Tsvettsikh