Clone
17
v3_CN_NgExec
winlin edited this page 2022-01-06 11:57:15 +08:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

HOME > CN > Exec

Exec

Note: 如果觉得Github的Wiki访问太慢可以访问 Gitee 镜像。

NGINX RTMP EXEC

NGINX-RTMP支持的EXEC方式参考nginx execSRS只支持常用的几种。下面是exec的支持情况

  1. exec/exec_publish: 当发布流时调用,支持。
  2. exec_pull: 不支持。
  3. exec_play: 不支持。
  4. exec_record_done: 不支持。

Config

SRS EXEC的配置参考conf/exec.conf,如下:

vhost __defaultVhost__ {
    # the exec used to fork process when got some event.
    exec {
        # whether enable the exec.
        # default: off.
        enabled     off;
        # when publish stream, exec the process with variables:
        #       [vhost] the input stream vhost.
        #       [port] the intput stream port.
        #       [app] the input stream app.
        #       [stream] the input stream name.
        #       [engine] the tanscode engine name.
        # other variables for exec only:
        #       [url] the rtmp url which trigger the publish.
        #       [tcUrl] the client request tcUrl.
        #       [swfUrl] the client request swfUrl.
        #       [pageUrl] the client request pageUrl.
        # @remark empty to ignore this exec.
        publish     ./objs/ffmpeg/bin/ffmpeg -f flv -i [url] -c copy -y ./[stream].flv;
    }
}

Winlin 2015.08