web-dev-qa-db-ja.com

Httpメディアストリーミングサーバー

RED5メディアサーバー(RTMP)を使用してビデオストリーミングアプリケーションを開発しました。 RTMPの代わりに、HTTPを介してライブビデオをストリーミングする必要があります。

オープンソースのHTTPメディアサーバーはありますか?

RTMPとHTTPの両方をサポートするオープンソースサーバーはありますか?

前もって感謝します。

7

主に、HTTPとRTMPは異なるプロトコルです。 HTTP内でRTMPを提供することはありません。 (ただし、トンネリングソリューションの場合はこれを行うことができます)。

HTTPストリーミングを行うにはいくつかの方法があります。 HLS、DASH、スムーズでプログレッシブなダウンロードなど。 iOS(iPad、iPhone、Apple TV)へのストリーミングを提供する必要がある場合は、HLSを使用する必要があります。

同様にarcyqwertyは言った。どのHTTPサーバーもHTTPストリーミングを提供できます。ただし、提供する前に、メディアファイルとマニフェストファイルを準備する必要があります。

HLS(HTTPライブストリーミング)について読むために非常に重要なリンクを次に示します。

オープンソースサーバーはどうですか。私はこれらを知っています:

または、私のようにGStreamerを使用してセグメント化し、マニフェストを作成することもできます。そして最後に、私はそれらにサービスを提供するためだけにNginxを使用します。

私はあなたを少し助けたと思います。

11
Fernando Silva

ファイル(Apache、nginx、IISなど)を提供できるHTTPサーバーはすべて、HTTPを介してメディアを「ストリーミング」できます。したがって、必要に応じて、RTMP用にRED5を保持し、同じファイルを提供するようにHTTPサーバーを設定できます。

プロトコルに関する情報については、 メディアストリーミングの基本-HTTPとRTMP を調べることをお勧めします。

単一製品のソリューションが必要な場合は、nginx-rtmpモジュールをnginxに追加することが必要な場合があります

https://github.com/arut/nginx-rtmp-module

2
arcyqwerty

私はこれを使用し、それは正しく動作します。 (Ubuntu 12.04 TLSサーバー)

ステップバイステップ:

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;
    #}
    }
}

設定ファイルを保存して:

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

次へ... 2つのディレクトリを作成します。

mkdir /var/flvs
mkdir /var/mp4s

Mp4ファイルをmp4sディレクトリにコピーする必要があります。例:sample.mp4

最終的に

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

試してください:

rtmp://your_server_ip/vod2/sample.mp4

(提案:VLCメディアプレーヤーを使用します)

またはhtmlコード

<html>
<head>
    <title>RTMP Video</title>
    <!-- flowplayer javascript component -->
    <script src="http://releases.flowplayer.org/js/flowplayer-3.2.12.min.js"></script>
</head>

<body>
<div id="player" style="width:644px;height:480;margin:0 auto;text-align:center">
    <img src="images/background.jpg" height="480" width="644" /></div>
<script>

$f("player", "http://releases.flowplayer.org/swf/flowplayer-3.2.16.swf", {
    clip: {
        url: 'sample.mp4',
        scaling: 'fit',
        provider: 'hddn'
    },

    plugins: {
        hddn: {
            url: "swf/flowplayer.rtmp-3.2.13.swf",

            // netConnectionUrl defines where the streams are found
            netConnectionUrl: 'rtmp://your_server_ip:1935/vod2/'

        }
    },
    canvas: {
        backgroundGradient: 'none'
    }
});
</script>
</body>
</html>
1