I need to add the following module to my app. ngx_http_mp4_module This is in order to pseudo-stream flash videos with mediaelement.
I am not sure how to proceed with this. Any guidance would be great.
I need to add the following module to my app. ngx_http_mp4_module This is in order to pseudo-stream flash videos with mediaelement.
I am not sure how to proceed with this. Any guidance would be great.
I was struggling over the same thing, it turns out it was very easy to fix with a single apt-get command.
Easy way: (On ubuntu); Before:
Apt-get the nginx-extras
After
(then, 'nginx -s reload' to activate as normal)
Other way: Nginx Modules need to be included at compile time From: http://nginx.org/en/docs/http/ngx_http_mp4_module.html
This answer goes a long way to explain how to do it: https://serverfault.com/questions/342358/nginx-add-enable-mp4-module and also gave me the apt-get nginx-extras solution I was looking for.