rtmp-server
v0.2.0
Published
A Node.js implementation of RTMP Server
Downloads
53
Readme
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 rtmp-server
Usage
const RtmpServer = require('rtmp-server');
const rtmpServer = new RtmpServer();
rtmpServer.on('error', err => {
throw err;
});
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);