api.video browser to RTMP
@api.video/browser-to-rtmp-server
@api.video/browser-to-rtmp-client
api.video is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.
Table of contents
Project description
This project aims to make easy streaming a video from your browser to a RTMP server. Any MediaSource can be used (webcam, screencast, …).
The project is composed of three npm workspaces:
- server (npm package: @api.video/browser-to-rtmp-server): typescript package to include in a nodejs application that uses ffmpeg in order to stream to a RTMP server
- client (npm package: @api.video/browser-to-rtmp-client): JS library to include in a website that will stream a MediaSource to the server using socket.io
- example: a very simple sample app to demonstrate how to use the server & the client
Getting started
Server-side part
First make sure that ffmpeg
is properly installed on your server.
Then add the dependancy to your nodejs project:
npm install --save @api.video/browser-to-rtmp-server
You can finally instanciate the server:
import http from 'http';
import BrowserToRtmpServer from '@api.video/browser-to-rtmp-server';
const server = http.createServer();
const browserToRtmpClient = new BrowserToRtmpServer(server, {
cors: {
origin: "*",
methods: ["GET", "POST"],
credentials: true
}
});
server.listen(1234);
Client-side part
<html>
<head>
...
<script src="https://unpkg.com/@api.video/browser-to-rtmp-client" defer></script>
</head>
<body>
<script>
navigator.mediaDevices.getUserMedia({
audio: true,
video: true
}).then((stream) => {
const client = new BrowserToRtmpClient(stream, {
host: "localhost",
rtmpUrl: "rtmp://0.0.0.0:1935/s/abcd",
port: 1234
});
client.start();
});
</script>
</body>
</html>
Documentation
How it works
Unfortunately, the browser cannot communicate directly with an RTMP server (due to network restrictions inherent in web browsers).
To overcome this problem, we added a layer between the browser and the RTMP server. It is a nodejs server that has the task of transforming a websocket video stream from the browser to an RTMP stream.
This mechanism is summarized in the following diagram:
The server part
Instanciation
The BrowserToRtmpServer
constructor takes 2 parameters:
- an instance of
http.Server
(the server that will handle the WebSocket connections) - a
BrowserToRtmpServerOptions
(an object that contains the options of the instance to create)
Leaving it up to the developer to provide an http server provides great flexibility. You can for example decide to use https instead of http with a code like this:
import fs from "fs";
import https from "https";
import BrowserToRtmpServer from '@api.video/browser-to-rtmp-server';
const httpsServer = https.createServer({
key: fs.readFileSync("/tmp/key.pem"),
cert: fs.readFileSync("/tmp/cert.pem")
});
const options = { };
const browserToRtmpServer = new BrowserToRtmpServer(httpsServer, options);
httpsServer.listen(3000);
Options
The BrowserToRtmpServerOptions has the following attributes:
{
serverLogs?: {
minLevel?: 'silly' | 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal';
}
clientLogs?: {
sendErrorDetails?: boolean,
sendFfmpegOutput?: boolean,
}
maxFfmpegInstances?: number;
rtmpUrlRegexp?: RegExp;
socketio?: Partial<ServerOptions>,
hooks?: {
start?: (socket: Socket<ClientToServerEvents, ServerToClientEvents, InterServerEvents, SocketData>, event: FfmpegConfig) => FfmpegConfig;
}
}
Overriding the livestream settings sent by the client
All settings sent from the client when starting the livestream can be overwritten server-side using the hooks.start
hook. For instance, the client can omit prividing the RTMP endpoint, leaving the server part filling it:
const browserToRtmpServer = new BrowserToRtmpServer(server, {
hooks: {
start: (socket, config) => {
const rtmpEndpoint = "rtmp://0.0.0.0:1234/s/abcd"
return {
...config,
rtmp: rtmpEndpoint
}
}
}
});
Methods
getConnections()
Retrieve the list of all active connections. It returns a list of ConnectionStatus
:
{
uuid: string;
remoteAddress: string;
ffmpeg?: {
status: 'RUNNING' | 'ENDED' | 'ENDING' | 'CREATED';
framesSent: number;
lastFrameSentTime?: number;
pid?: number;
options: {
framerate?: number;
audioSampleRate?: number;
rtmp?: string;
audioBitsPerSecond?: number;
videoBitsPerSecond?: number;
}
}
}
Events
You can listen to events that emitted are by using the on(eventName: string)
method.
connection
event
The connection
event is sent each time a new connection arrives. It contains the connection status associated to the connection.
Example:
browserToRtmpServer.on("connection", (c) => {
console.log(`New connection uuid: ${c.uuid}`);
});
ffmpegOutput
event
This event is sent each time one of the ffmpeg instances write something to its output stream. It contains the uuid of the connection and the output message itself.
Example:
browserToRtmpServer.on("ffmpegOutput", (uuid, message) => {
console.log(`Ffmpeg output for connection ${uuid}: ${message}`);
});
error
event
This event is sent each time a error occurs for a given connection. It contains the uuid of the connection and the error.
Example:
browserToRtmpServer.on("error", (uuid, error) => {
console.log(`Error for connection ${uuid}: ${message}`);
});
Security considerations
- We strongly recommend that you use https rather than http when instantiating the http server provided to the BrowserToRtmpServer
- You should always pay attention to the RTMP termination url when it is sent from the client. Use
rtmpUrlRegexp
, or generate the url from the server with the start hook, as explained before.
The client part
Instanciation
The BrowserToRtmpServer
constructor takes 2 parameters:
- a MediaStream (you get it using
navigator.mediaDevices.getDisplayMedia()
or navigator.mediaDevices.getUserMedia()
) - a
BrowserToRtmpClientOptions
(an object that contains the options of the instance to create)
Options
The BrowserToRtmpClientOptions has the following attributes:
type BrowserToRtmpClientOptions = {
host: string;
port?: number;
framerate?: number;
rtmp?: string;
audioBitsPerSecond?: number;
videoBitsPerSecond?: number;
audioSampleRate?: number;
}
Events
You can listen to events that emitted are by using the on(eventName: string)
method.
error
event
The error
event is sent each time an error occured. It contains the error itself.
Example:
browserToRtmpClient.on("error", (error) => {
console.log(`An error occured: ${error}`);
});
destroyed
event
The destroyed
event is sent when the ffmpeg instance associated to the connection is destroyed.
Example:
browserToRtmpClient.on("destroyed", (error) => {
console.log(`Instance destroyed`);
});
ffmpegOutput
event
This event is sent each time the ffmpeg instance write something to its output stream. The event is sent only if the clientLogs.sendFfmpegOutput
param is true on the server side.
Example:
browserToRtmpClient.on("ffmpegOutput", (message) => {
console.log(`Ffmpeg output: ${message}`);
});
Methods
start()
Start the stream.
pause()
Pause the stream.
stop()
Stop the stream.