mandaputtra / rtmp-client

RTMP client

Repository from Github https://github.commandaputtra/rtmp-clientRepository from Github https://github.commandaputtra/rtmp-client

npm version

About

RTMP client.

Usage

Install using npm:

$ npm install rtmp-client

NetConnection

const { NetConnection } = require('rtmp-client');

const nc = new NetConnection();
nc.onStatus = function (info) {
	if (info.code === 'NetConnection.Connect.Success') {
		nc.call('foo', {
			'onResult': console.log.bind(console),
			'onStatus': console.error.bind(console),
		}, 'bar');
	}
};
nc.rpcName = async function (...args) {
	console.log('server called rpcName', ...args);
};
nc.connect('rtmp://127.0.0.1:1935/app/instance');

Documentation: netconnection-class.html

SharedObject

Since there was nothing in the RTMP spec about the messages, I've documented them in SharedObject.md

const so = SharedObject.get('foo', false, nc);
so.onStatus = (info) => {
	console.log(info);
};
so.onSync = (list) => {
	console.log('shared object changes', list);
};

Documentation: sharedobject-class.html

Client

The Client class used behind NetConnection is also exported but undocumented.

Check the source code in Client.js if you need to use it for example to create an RTMP server.

const { Client } = require('rtmp-client');

Implementation status

  • NetConnection
  • SharedObject
    • basic functionality
    • lock()/mark()/unlock() (non-proxied)
    • send()/handlerName()
  • Stream
  • NetStream

About

RTMP client

License:ISC License


Languages

Language:JavaScript 100.0%