Re: [patch]nginx mp4 module about "keyframe aligning"

2014-08-04 Thread Harold.Miao
ok, I see. I just use this module to cut big file manually and transfer it into hls. Thank you! Maxim Dounin 于2014年8月4日星期一写道: > Hello! > > On Mon, Aug 04, 2014 at 07:37:11PM +0800, Harold.Miao wrote: > > > hi > > > > to get a precise start time for a key frame

Re: [patch]nginx mp4 module about "keyframe aligning"

2014-08-04 Thread Harold.Miao
hi to get a precise start time for a key frame ? It is very very difficulty to caller. in addition, most people use this module to do a integer cut ,like 0s-10s 10s-20s 30s-40s... Maxim Dounin 于2014年8月4日星期一写道: > Hello! > > On Mon, Aug 04, 2014 at 05:41:26PM +0800, Harold.M

[patch]nginx mp4 module about "keyframe aligning"

2014-08-04 Thread Harold.Miao
hi all I use mp4 module to cut big mp4 file into little mp4 file , I found a peoblem about "keyframe aligning" so I do a patch to solve this problem pach is here : https://gist.github.com/oikomi/6194ef2ee8a5c5a55375 -- Best Regards, Harold Miao __

Re: Nginx + boringSSL

2014-07-21 Thread Harold.Miao
Looks interesting :) Alex Hunsaker 于2014年7月14日星期一写道: > I've started playing around with boringssl with nginx. > > Mostly everything works except OCSP. Seems like either openssl 1.0.2 > which boringssl was forked from does not have it, or the boringssl > folk ripped it out. I have not investigated

Re: nginx -s reload problem

2014-07-21 Thread Harold.Miao
Do you have any good suggestions? Thanks in advance! Roman Arutyunyan 于2014年7月21日星期一写道: > Reload will not work properly with rtmp since rtmp connections are long > unlike http. > > > On Mon, Jun 16, 2014 at 11:19 AM, Harold.Miao > wrote: > >> hi all >> >>

nginx -s reload problem

2014-06-16 Thread Harold.Miao
hi all I use a endless rtmp stream /usr/local/nginx/wsgi/ffmpeg -i haha.mp4 -c:v libx264 -b:v 500k -c:a copy -f flv rtmp://172.16.205.50:1936/publish/you as you known, if I use nginx -s reload , then I got a lot of "nginx: worker process is shutting down" pplive 15355 13642 0 14:56 ?

[rewrite] replace the __ to %

2014-02-11 Thread Harold.Miao
hi all , I have a problem about rewrite location ~ (\.ts)$ { } req: http://127.0.0.1/__ce__a3__c7__e9__b5__fd__d5__bd(1080P__bb__ad__d6__ca).ts I need to replace __ to % : http://127.0.0.1/%ce%a3%c7%e9%b5%fd%d5%bd(1080P%bb%ad%d6%ca).ts How to design the "rewrite" cmd? THX -- Best Rega