#include "ngx_http_flv_live_module.h" #include "ngx_rtmp_bandwidth.h" static ngx_rtmp_play_pt next_play; static ngx_rtmp_close_stream_pt next_close_stream; static ngx_int_t ngx_http_flv_live_init(ngx_conf_t *cf); static void *ngx_http_flv_live_create_loc_conf(ngx_conf_...
Media streaming server based on nginx-rtmp-module, HTTP-FLV/RTMP/HLS/DASH suppoted. - nginx-http-flv-module/ngx_rtmp_bitop.h at master · soitun/nginx-http-flv-module
A media streaming server based on nginx-rtmp-module. In addtion to the features nginx-rtmp-module provides, HTTP-FLV, GOP cache, VHosts (one IP for multi domain names) and JSON style statistics are supported now. - nginx-http-flv-module/ngx_rtmp_streams.
[NGX_RTMP_PROTOCOL_HTTP + 1]; extern ngx_module_t ngx_http_flv_live_module; static ngx_command_t ngx_rtmp_gop_cache_commands[] = { { ngx_string("gop_cache"), NGX_RTMP_APP_CONF|NGX_CONF_TAKE1, ngx_conf_set_flag_slot, ...
(*create_conf)(ngx_cycle_t *cycle);// char *(*init_conf)(ngx_cycle_t *cycle, void *conf);//} ngx_core_module_t;void*ctx;// 模块支持的指令,数组形式,最后用空对象表示结束ngx_command_t*commands;// 模块的类型标识,相当于RTTI,如CORE/HTTP/STRM/MAIL等ngx_uint_t type;// 以下7个函数...
#include "ngx_rtmp_live_module.h" #include "ngx_rtmp_amf.h" static void ngx_rtmp_recv(ngx_event_t *rev); static void ngx_rtmp_send(ngx_event_t *rev); static void ngx_rtmp_ping(ngx_event_t *rev); ngx_uint_t ngx_rtmp_naccepted; ngx...
A media streaming server based on nginx-rtmp-module. In addtion to the features nginx-rtmp-module provides, HTTP-FLV, GOP cache, VHosts (one IP for multi domain names) and JSON style statistics are supported now. - nginx-http-flv-module/ngx_rtmp.h at 4b7
add h265(hevc) http-flv in nginx-http-flv-module. Contribute to yingchengpa/nginx-http-flv-module development by creating an account on GitHub.
#define NGX_HTTP_FLV_LIVE_REQUEST NGX_RTMP_MSG_MAX + 4 #define NGX_RTMP_MAX_EVENT NGX_RTMP_MSG_MAX + 5 /* RMTP control message types */ #define NGX_RTMP_USER_STREAM_BEGIN 0 #define NGX_RTMP_USER_STREAM_EOF 1 #define NGX_RTMP_USER_STREAM_DRY 2 ...
Media streaming server based on nginx-rtmp-module. In addtion to the features nginx-rtmp-module provides, HTTP-FLV, GOP cache and VHOST (one IP for multi domain names) are supported now. - lex000/nginx-http-flv-module