How to Stream RTMP in a Webpage Hosted in a Shared Hosting Environment

Hello,

I have nginx server running and configured as this

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

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

And it is working perfectly. I am able to stream the video on my VLC player. But is there any way I can embed(RTMP) it into my website? If you have a sample CODE for this, it would be great with files.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.