Go to file
2012-05-21 13:09:57 +04:00
doc implemented encrypted handshake 2012-05-03 02:28:21 +04:00
test implemented full relay support & updated README 2012-05-16 22:29:00 +04:00
AUTHORS improved frame timing & added meta files 2012-03-20 03:52:39 +04:00
config early relay implementation 2012-05-16 15:56:27 +04:00
LICENSE improved frame timing & added meta files 2012-03-20 03:52:39 +04:00
ngx_rtmp.c early relay implementation 2012-05-16 15:56:27 +04:00
ngx_rtmp.h implemented client handshake response digest 2012-05-21 00:42:45 +04:00
ngx_rtmp_access_module.c push is working 2012-05-16 18:04:35 +04:00
ngx_rtmp_amf.c object & mixed_array are now compatible 2012-04-14 00:34:43 +04:00
ngx_rtmp_amf.h added more flags & extended types to AMF 2012-03-30 19:07:14 +04:00
ngx_rtmp_bandwidth.c implemented http/xml/xsl RTMP stats 2012-05-07 15:41:03 +04:00
ngx_rtmp_bandwidth.h implemented http/xml/xsl RTMP stats 2012-05-07 15:41:03 +04:00
ngx_rtmp_cmd_module.c push is working 2012-05-16 18:04:35 +04:00
ngx_rtmp_cmd_module.h added transaction support to RTMP connect command 2012-04-15 22:47:50 +04:00
ngx_rtmp_codecs.c improved codec ids 2012-05-12 19:03:41 +04:00
ngx_rtmp_codecs.h improved codec ids 2012-05-12 19:03:41 +04:00
ngx_rtmp_core_module.c implemented http/xml/xsl RTMP stats 2012-05-07 15:41:03 +04:00
ngx_rtmp_handler.c fixed changing chunk size: input stream reset added 2012-05-12 15:13:56 +04:00
ngx_rtmp_handshake.c implemented client handshake response digest 2012-05-21 00:42:45 +04:00
ngx_rtmp_init.c early relay implementation 2012-05-16 15:56:27 +04:00
ngx_rtmp_live_module.c improved codec ids 2012-05-12 19:03:41 +04:00
ngx_rtmp_live_module.h added parsing data frame & added stream meta info to stat xml 2012-05-12 17:47:39 +04:00
ngx_rtmp_netcall_module.c implemented better checks for upstream connect result 2012-04-19 13:52:07 +04:00
ngx_rtmp_netcall_module.h added forcing detached netcalls when handler is NULL 2012-04-12 21:18:15 +04:00
ngx_rtmp_notify_module.c added forcing detached netcalls when handler is NULL 2012-04-12 21:18:15 +04:00
ngx_rtmp_receive.c user stream start is now sent only as reply to buffer length message 2012-04-17 15:16:59 +04:00
ngx_rtmp_record_module.c fixed delete_stream call chain breakup 2012-04-28 20:43:58 +04:00
ngx_rtmp_relay_module.c added more AMF handlers to relay for logging 2012-05-21 10:45:14 +04:00
ngx_rtmp_relay_module.h improved relay implementation 2012-05-18 14:25:30 +04:00
ngx_rtmp_send.c implemented shared output chains 2012-04-18 16:37:18 +04:00
ngx_rtmp_shared.c implemenmted several optimizations 2012-04-19 09:53:18 +04:00
ngx_rtmp_stat_module.c added parsing data frame & added stream meta info to stat xml 2012-05-12 17:47:39 +04:00
README removed deprecated directive max_buf 2012-05-18 16:58:44 +04:00
stat.xsl added support for empty stream names 2012-05-16 20:35:09 +04:00
TODO implemented http/xml/xsl RTMP stats 2012-05-07 15:41:03 +04:00

== nginx-rtmp-module ==

NGINX-based RTMP server

* Live streaming of video/audio

* Stream relay support for distributed
  streaming: push & pull models

* Recording published streams in FLV file

* H264 support

* HTTP callbacks on publish/play/record

* Advanced buffering techniques
  to keep memory allocations at a minimum
  level for faster streaming and low
  memory footprint

* Works with Flash RTMP clients as well as
  ffmpeg/rtmpdump/flvstreamer etc
  (see examples in test/ subdir)

* Statistics in XML/XSL in machine- & human-
  readable form


Build:

cd to NGINX source directory & run this:

./configure --add-module=<path-to-nginx-rtmp-module>
make
make install


Note the module does not share data between workers
and only works in one-worker mode. 


RTMP URL format:

rtmp://rtmp.example.com/<app>[/<name>]

<app> -  should match one of application {}
         blocks in config
<name> - interpreted by each application
         can be empty


Example nginx.conf:

rtmp {

    server {

        listen 1935;

        chunk_size 4000;

        # TV mode: one publisher, many subscribers
        application mytv {

            # enable live streaming
            live on;

            # record first 1K of stream
            record all;
            record_path /tmp/av;
            record_max_size 1K;

            # publish only from localhost
            allow publish 127.0.0.1;
            deny publish all;

            #allow play all;
        }

        application mypush {
            live on;

            # Every stream published here
            # is automatically pushed to 
            # these two machines
            push rtmp1.example.com;
            push rtmp2.example.com:1934;
        }

        application mypull {
            live on;

            # Pull all streams from remote machine
            # and play locally
            pull rtmp3.example.com;
        }

        # Many publishers, many subscribers
        # no checks, no recording
        application videochat {

            live on;

            # The following notifications receive all 
            # the session variables as well as 
            # particular call arguments in HTTP POST
            # request

            # Make HTTP request & use HTTP retcode
            # to decide whether to allow publishing
            # from this connection or not
            on_publish http://localhost:8080/publish;

            # Same with playing
            on_play http://localhost:8080/play;

            # record 10 video keyframes (no audio) every 2 minutes
            record keyframes;
            record_path /tmp/vc;
            record_max_frames 10;
            record_interval 2m;

            # Async notify about an flv recorded
            on_record_done http://localhost:8080/record_done;

        }

    }
}

# HTTP can be used for accessing RTMP stats
http {

    server {

        listen      8080;

        # This URL provides RTMP statistics in XML
        location /stat {
            rtmp_stat all;

            # Use this stylesheet to view XML as web page
            # in browser
            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 /path/to/stat.xsl/;
        }

    }
}