Cara membuat Server Streaming Video menggunakan Nginx-RTMP

STEP 1

rtmp {
server {
listen 1935;
chunk_size 4096;
allow publish 127.0.0.1;
deny publish all;

            application live {
                    live on;
                    record off;
            }
    }

}

STEP 2

sumber : https://www.youtube.com/watch?v=PhbVScnEGug

https://www.digitalocean.com/community/tutorials/how-to-set-up-a-video-streaming-server-using-nginx-rtmp-on-ubuntu-20-04

Leave a Reply

Your email address will not be published. Required fields are marked *