Skip to content

lorenzoaspesi/krtp

 
 

Repository files navigation

KRTP

Travis branch GitHub stars npm version npm license npm js-standard-style

Introduction

RealTime Protocol implementation based on RFC 3550 in NodeJS.

Example

const RTPSession = require('..').RTPSession

const s = new RTPSession(1373)

s.on('message', (msg) => {
  console.log(msg)
  s.close()
})

s.sendSR('192.168.73.2').catch(err => {
  console.log(err)
})
s.send(Buffer.from('Hello world'))

About

Node.js implementation of rtp, rtcp protocols. RFC 3550

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%