rtmp2

0.0.2 • Public • Published

RTMP-Server

A Node.js implementation of RTMP Server

  • Supports only RTMP protocol.
  • Supports only H.264 video and AAC audio.

Install

npm install --save rtmp2

Usage

const RTMP = require('rtmp2');
 
const rtmpServer = RTMP.createServer();
 
rtmpServer.on('client', client => {
  client.on('command', command => {
  //  console.log(command.cmd, command);
  });
 
  client.on('connect', () => {
     console.log('connect', client.app);
  });
  
  client.on('play', ({ streamName }) => {
    console.log('PLAY', streamName);
  });
  
  client.on('publish', ({ streamName }) => {
    console.log('PUBLISH', streamName);
  });
  
  client.on('stop', () => {
    console.log('client disconnected');
  });
});
 
rtmpServer.listen(1935);

You can now publish streams to rtmp://localhost:1935/live and use any unique stream key.

The stream will then be available at rtmp://localhost:1935/<your stream key>.

License

This project is under MIT license.

Readme

Keywords

Package Sidebar

Install

npm i rtmp2

Weekly Downloads

2

Version

0.0.2

License

MIT

Unpacked Size

80.2 kB

Total Files

12

Last publish

Collaborators

  • song940