Skip to content

v1_EN_SampleIngest

winlin edited this page Nov 17, 2014 · 35 revisions

Ingest deploy example

SRS启动后,自动启动Ingest开始采集file/stream/device,并将流推送到SRS。详细规则参考:Ingest,本文列出了具体的部署的实例。

假设服务器的IP是:192.168.1.170

Step 1, get SRS. For detail, read GIT

git clone https://github.com/winlinvip/simple-rtmp-server
cd simple-rtmp-server/trunk

Or update the exists code:

git pull

Step 2, build SRS. For detail, read Build

./configure --disable-all --with-ssl --with-ffmpeg --with-ingest && make

第三步,编写SRS配置文件。详细参考Ingest

将以下内容保存为文件,譬如conf/ingest.conf,服务器启动时指定该配置文件(srs的conf文件夹有该文件)。

# conf/ingest.conf
listen              1935;
max_connections     1000;
vhost __defaultVhost__ {
    ingest livestream {
        enabled      on;
        input {
            type    file;
            url     ./doc/source.200kbps.768x320.flv;
        }
        ffmpeg      ./objs/ffmpeg/bin/ffmpeg;
        engine {
            enabled          off;
            output          rtmp://127.0.0.1:[port]/live?vhost=[vhost]/livestream;
        }
    }
}

第三步,启动SRS。详细参考Ingest

./objs/srs -c conf/ingest.conf

涉及的流包括:

  • 采集的流:rtmp://192.168.1.170:1935/live/livestream

第五步,观看RTMP流。详细参考Ingest

RTMP url is: rtmp://192.168.1.170:1935/live/livestream

User can use vlc to play the RTMP stream.

Or, use online SRS player: http://winlinvip.github.io/srs.release/trunk/research/players/srs_player.html?vhost=defaultVhost&autostart=true&server=192.168.1.170&app=live&stream=livestream&port=1935

Note: Please replace all ip 192.168.1.170 to your server ip.

Winlin 2014.4

Welcome to SRS wiki!

SRS 5.0 wiki

Please select your language:

SRS 4.0 wiki

Please select your language:

SRS 3.0 wiki

Please select your language:

SRS 2.0 wiki

Please select your language:

SRS 1.0 wiki

Please select your language:

Clone this wiki locally