Sunday, August 8, 2021

Raspberry Pi Video Streaming Server





This video explains how to setup Raspberry Pi as Video streaming server using simple configuration and OBS studio

Steps to follow

sudo apt update
sudo apt upgrade

install Nginx web server:

sudo apt install nginx

Install RTMP module so Nginx can handle media stream:

sudo add-apt-repository universe
sudo apt install libnginx-mod-rtmp

Modify Nginx’s configuration so that it can support media stream.

sudo nano /etc/nginx/nginx.conf

Add the following code to the bottom of the config file:

rtmp {
        server {
                listen 1935;
                chunk_size 4096;

                application live {
                        live on;
                        record off;
                }
        }
}

Save the config file as shown in the video

Restart Nginx with this new configuration:

sudo systemctl restart nginx

Music: Paradise
Musician: @iksonmusic

No comments:

How to add Wireless capability to legacy printers using Raspberry Pi

  This video tutorial demonstrates how to easily add wireless print capablity to your wired legacy printers using your Raspberry Pi. We hav...