
Stream Media/Nginx
文章平均质量分 74
fanbird2008
这个作者很懒,什么都没留下…
展开
-
Nginx Intro - RTMP HLS
1. Nginx configuration#user nobody;worker_processes 1;master_process off;daemon off;error_log logs/error.log debug;error_log logs/error.log notice;error_log logs/error.log in原创 2016-11-27 17:42:41 · 591 阅读 · 0 评论 -
Nginx Intro - 实现反向代理负载均衡
http://www.2cto.com/os/201703/607584.htmlNginx实现反向代理负载均衡Nginx实现反向代理负载均衡,网络模型中,nginx属于第7层,根据域名或目录配置负载均衡(代理),十分灵活;而lvs只能针对IP。环境:DIR : 172.16.115.100(Nginx代理)RS1: 172.16.115转载 2017-03-08 14:29:24 · 497 阅读 · 0 评论 -
Nginx Intro - Build and Install With self-defined module
#!/bin/shcd nginx-1.11.6./configure --prefix=/opt/nginx \ --add-module=../nginx_mod_h264_streaming-master \ --add-module=../nginx-rtmp-module-master \ --with-http_flv_module --原创 2017-03-08 15:12:29 · 317 阅读 · 0 评论 -
高性能Web服务器Nginx的配置与部署研究(15)Upstream负载均衡模块
http://blog.youkuaiyun.com/poechant/article/details/7256184转载请注明来自“柳大的优快云博客”:http://blog.youkuaiyun.com/poechant更多文章请浏览优快云专栏《Nginx高性能Web服务器》或 服务器后端开发系列——《实战Nginx高性能Web服务器》Nginx 的 HttpUps转载 2017-03-09 15:04:07 · 321 阅读 · 0 评论 -
高性能Web服务器Nginx的配置与部署研究(13)应用模块之Memcached模块+Proxy_Cache双层缓存模式
http://blog.youkuaiyun.com/poechant/article/details/7179891本文来自:优快云博客专栏《Nginx高性能Web服务器》 及Poechant技术博客,转载请注明出处。通过《高性能Web服务器Nginx的配置与部署研究——(11)应用模块之Memcached模块的两大应用场景》一文,我们知道Nginx从Memcached读取转载 2017-03-09 15:26:32 · 330 阅读 · 0 评论 -
nginx+jwplayer配置flv/MP4点播系统, 视频拖动支持
http://www.cnblogs.com/lingdhox/p/4523885.html一 配置nginx1. 下载 nginx 最新版 http://nginx.org/2. 安装依赖库, 以ubuntu为例1apt-get install libpcre3 libpcre3-dev libs转载 2017-03-10 10:00:31 · 1446 阅读 · 0 评论 -
Nginx Intro - Nginx AIO
1. add ngx_eventfd to epollstatic voidngx_epoll_aio_init(ngx_cycle_t *cycle, ngx_epoll_conf_t *epcf){ int n; struct epoll_event ee;#if (NGX_HAVE_SYS_EVENTFD_H)转载 2017-02-24 11:10:03 · 337 阅读 · 0 评论 -
Nginx Intro - Debug
(1)修改nginx源代码目录下子目录/auto/cc中的conf文件,将ngx_compile_opt="-c"改为ngx_compile_opt="-c -g"(2)在编译的时候加上debug选项,nginx的安装脚本如下:./configure --user=www --group=www --prefix=/export/lx/servers/nginx-debug --add-转载 2016-11-30 10:25:46 · 410 阅读 · 0 评论 -
Nginx Intro - rtmp video stack infos
#0 ngx_rtmp_hls_video (s=0x1137530, h=0x1117a70, in=0x1185990) at ../nginx-rtmp-module-master/hls/ngx_rtmp_hls_module.c:1842#1 0x00000000004eb0f2 in ngx_rtmp_receive_message (s=s@entry=0x1137原创 2016-11-30 10:25:58 · 435 阅读 · 0 评论 -
RTMP Protocol Intro - Nginx + RTMP
http://blog.youkuaiyun.com/xiaguamanshu/article/details/5457290RTMP协议 RTMP协议封包 由一个包头和一个包体组成,包头可以是4种长度的任意一种:12, 8, 4, 1 byte(s).完整的RTMP包头应该是12bytes,包含了时间戳,AMFSize,AMFType,StreamID信息, 8字节的包头只纪录了时原创 2015-11-24 08:53:02 · 621 阅读 · 0 评论 -
JWPlayer Intro - Timed ID3Tag
{ "PRIV": { "com.apple.streaming.transportStreamTimestamp": 38114 }, "TRSN": "StreamS Streaming Encoder", "TRSO": "Hi-Fi Internet Stream", "title": "More Than Just The Two Of Us", "TIT2": "More Than J转载 2016-11-29 12:27:41 · 386 阅读 · 0 评论 -
HLS Intro - Apple HLS: technical in-depth
http://www.gpac-licensing.com/2014/12/08/apple-hls-technical-depth/Apple HLS: technical in-depthContentMaster, Variants and RenditionsVersion 1Version 2Version 3Version 4Version 5Versi转载 2016-12-05 20:13:41 · 563 阅读 · 0 评论 -
Nginx Intro - Modules
1. Ngx_module.hextern ngx_module_t *ngx_modules[];2. Ngx_modules.cThis file will be autogenerated by configure in objs directory.And other few files are also generated, including ngx_auto原创 2016-11-29 17:53:31 · 340 阅读 · 0 评论 -
Nginx Intro - ngx_epoll_add_event
http://blog.youkuaiyun.com/brainkick/article/details/9080789static ngx_int_t ngx_epoll_add_event(ngx_event_t *ev, ngx_int_t event, ngx_uint_t flags) { int op;转载 2017-02-23 18:26:07 · 360 阅读 · 0 评论 -
Nginx Intro - ngx_epoll_module
http://blog.youkuaiyun.com/xiajun07061225/article/details/9250341本文结合实际代码介绍事件驱动模块接口与epoll用法是如何结合起来发挥作用的。Nginx中ngx_epoll_module模块基于epoll实现了Nginx的事件驱动。模块定义(src/event/ngx_epoll_module.c):转载 2017-02-23 18:27:35 · 392 阅读 · 0 评论