i have nginx 1.9 version installed, and enabled mp4 ngx_http_mp4 modules,and i configured the setting below.
location /video/ {
mp4;
mp4_buffer_size 1m;
mp4_max_buffer_size 5m;
mp4_limit_rate on;
mp4_limit_rate_after 30s;
}
but when i use jwplayer to play the mp4 file and checking it using live-http-header, when i jump to different time: the data shows without start parameter. eg."GET /data/mytest.mp4 HTTP/1.1", which i supposed it should be "GET /data/15099.mp4?start=xxx HTTP/1.1" so is my ngx_http_mp4 working or not.