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:
Post a Comment