2016年3月8日 星期二

nginx mp4 module


  • 因為預設沒有載入,所以需要自行增加compile option
    --with-http_mp4_module
    
  • nginx conf
## type 1
location /video/ {
    mp4;
    mp4_buffer_size       4M;
    mp4_max_buffer_size   10M;
    mp4_limit_rate        on;
    mp4_limit_rate_after  30s;
}

## type 2
location ~ .mp4$ {
mp4;
mp4_buffer_size 4M;
mp4_max_buffer_size 10M;
}
  • ref:

沒有留言:

張貼留言