Http Media Streaming Server

后端 未结 3 2004
野趣味
野趣味 2021-02-02 03:22

I have developed video streaming application with RED5 media server(RTMP). Instead of RTMP need to stream live video through HTTP.

Any open source HTTP media server??

3条回答
  •  旧巷少年郎
    2021-02-02 04:10

    I use this and it works properly. (Ubuntu 12.04 TLS server)

    Step by step:

    sudo apt-get install build-essential libpcre3 libpcre3-dev libssl-dev
    wget http://nginx.org/download/nginx-1.6.0.tar.gz
    wget https://github.com/arut/nginx-rtmp-module/archive/master.zip
    tar -zxvf nginx-1.6.0.tar.gz
    unzip master.zip
    cd nginx-1.6.0
    
    ./configure --with-http_ssl_module --add-module=../nginx-rtmp-module-master --with-http_flv_module --with-http_mp4_module
    make
    sudo make install
    
    sudo /usr/local/nginx/sbin/nginx -s stop
    sudo /usr/local/nginx/sbin/nginx
    

    NGINX Config: (/usr/local/nginx/conf/nginx.conf)

    #user  nobody;
    worker_processes  1;
    
    #error_log  logs/error.log;
    #error_log  logs/error.log  notice;
    #error_log  logs/error.log  info;
    
    #pid        logs/nginx.pid;
    
    
    events {
        worker_connections  1024;
    }
    
    rtmp {
        server {
        listen 1935;
        chunk_size 4000;
        # video on demand for flv files
        application vod {
            play /var/flvs;
        }
    
        # video on demand for mp4 files
            application vod2 {
            play /var/mp4s;
            }
        }
    }
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
    
        #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
        #                  '$status $body_bytes_sent "$http_referer" '
        #                  '"$http_user_agent" "$http_x_forwarded_for"';
    
        #access_log  logs/access.log  main;
    
        sendfile        on;
        #tcp_nopush     on;
    
        #keepalive_timeout  0;
        keepalive_timeout  65;
    
        gzip  on;
    
        server {
            listen       80;
            server_name  192.168.52.16;
            #charset koi8-r;
            #access_log  logs/host.access.log  main;
    
            # This URL provides RTMP statistics in XML
            location /stat {
                rtmp_stat all;
                rtmp_stat_stylesheet stat.xsl;
            }
    
            location /stat.xsl {
                # XML stylesheet to view RTMP stats.
                # Copy stat.xsl wherever you want
                # and put the full directory path here
                root /var/www/;
            }
    
        location /hls {
            # Serve HLS fragments
            types {
                application/vnd.apple.mpegurl m3u8;
                video/mp2t ts;
            }
            alias /tmp/app;
            expires -1;
        }
    
    #   location /hds {
    #       f4f;    # Use the HDS handler to manage requests
    #           # serve content from the following location
    #       alias /var/www/video;
    #   }
    
        location /video {
            mp4;
            flv;
            mp4_buffer_size     4M;
            mp4_max_buffer_size 10M;
        }
    
        location / {
            root   html;
            index  index.html index.htm;
        }
    
        error_page  404              /404.html;
    
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
    
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}
    
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
        }
    }
    

    Save the config file and:

    sudo /usr/local/nginx/sbin/nginx -s stop
    sudo /usr/local/nginx/sbin/nginx
    

    Next... Create two directories:

    mkdir /var/flvs
    mkdir /var/mp4s
    

    You need copy an mp4 file to the mp4s directory. For example: sample.mp4

    Finaly

    sudo /usr/local/nginx/sbin/nginx -s stop
    sudo /usr/local/nginx/sbin/nginx
    

    Try:

    rtmp://your_server_ip/vod2/sample.mp4
    

    (suggest: you use the VLC media player)

    or html code

    
    
        RTMP Video
        
        
    
    
    
    

提交回复
热议问题