UNPKG

@mediafish/rtmp-server

Version:

A server that receives an RTMP live stream and populates a readable object stream of the published audio, video, and data messages

12 lines (9 loc) 235 B
import {EventEmitter} from 'node:events'; // import debug from 'debug'; // const print = debug('rtmp-server'); export default class RTMPConnection extends EventEmitter { constructor(path) { super(); this.path = path; } }