Nginx http_mp4_module seam installed but dont workNginx compiled --with-http_spdy_module yet raise errors...
How could an airship be repaired midflight?
Deletion of copy-ctor & copy-assignment - public, private or protected?
Do native speakers use "ultima" and "proxima" frequently in spoken English?
Using Past-Perfect interchangeably with the Past Continuous
Generic TVP tradeoffs?
Writing in a Christian voice
Unfrosted light bulb
Can other pieces capture a threatening piece and prevent a checkmate?
Can a medieval gyroplane be built?
Why is indicated airspeed rather than ground speed used during the takeoff roll?
Why is there so much iron?
Probably overheated black color SMD pads
Practical application of matrices and determinants
How does 取材で訪れた integrate into this sentence?
How to get the n-th line after a grepped one?
Have the tides ever turned twice on any open problem?
Is it possible to stack the damage done by the Absorb Elements spell?
Worshiping one God at a time?
Are dual Irish/British citizens bound by the 90/180 day rule when travelling in the EU after Brexit?
How are passwords stolen from companies if they only store hashes?
If "dar" means "to give", what does "daros" mean?
Is there a term for accumulated dirt on the outside of your hands and feet?
Light propagating through a sound wave
How is the partial sum of a geometric sequence calculated?
Nginx http_mp4_module seam installed but dont work
Nginx compiled --with-http_spdy_module yet raise errors complains ngx_http_spdy_moduleNginx and openSSL conf to use newest TLS protocolsIs this much (40x) nginx slowdown under HTTPS to be expected?Specify nginx's ssl_certificate in location{} blocknginx-extras ok for production server?nginx proxy pass on nginx 1.1.19is it normal for NGINX to accumulate connections in writing state?Log rotation on NginX in Configuration filenginx configuration troubleunknown directive “stream” in /etc/nginx/nginx.conf:86
I try to use the http_mp4_module on my Ubuntu server but that didnt seem to work at all.
When i check nginx -V i get :
nginx version: nginx/1.1.19
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_module --with-http_dav_module --with-http_flv_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_mp4_module --with-http_perl_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_stub_status_module --with-http_ssl_module --with-http_sub_module --with-http_xslt_module --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-auth-pam --add-module=/build/buildd/nginx-1.1.19/debian/modules/chunkin-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/headers-more-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-development-kit --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-echo --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-http-push --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-lua --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-progress --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upstream-fair --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-dav-ext-module
--with-http_mp4_module
and --with-http_flv_module
are there, I also add on sites-available/domaine.conf
location ~ .mp4$ {
mp4;
mp4_buffer_size 4M;
mp4_max_buffer_size 10M;
}
location ~ .flv$ {
flv;
}
and Nginx restarted witout error, everything seem ok but when i check my urls myvideo.mp4?start=60 return a 404 error (what i think is normal) and video.mp4?starttime=60 return the video but whatever the starttime number is i get the full video from the begining, did i miss something ?
ubuntu nginx
bumped to the homepage by Community♦ 34 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I try to use the http_mp4_module on my Ubuntu server but that didnt seem to work at all.
When i check nginx -V i get :
nginx version: nginx/1.1.19
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_module --with-http_dav_module --with-http_flv_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_mp4_module --with-http_perl_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_stub_status_module --with-http_ssl_module --with-http_sub_module --with-http_xslt_module --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-auth-pam --add-module=/build/buildd/nginx-1.1.19/debian/modules/chunkin-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/headers-more-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-development-kit --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-echo --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-http-push --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-lua --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-progress --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upstream-fair --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-dav-ext-module
--with-http_mp4_module
and --with-http_flv_module
are there, I also add on sites-available/domaine.conf
location ~ .mp4$ {
mp4;
mp4_buffer_size 4M;
mp4_max_buffer_size 10M;
}
location ~ .flv$ {
flv;
}
and Nginx restarted witout error, everything seem ok but when i check my urls myvideo.mp4?start=60 return a 404 error (what i think is normal) and video.mp4?starttime=60 return the video but whatever the starttime number is i get the full video from the begining, did i miss something ?
ubuntu nginx
bumped to the homepage by Community♦ 34 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I try to use the http_mp4_module on my Ubuntu server but that didnt seem to work at all.
When i check nginx -V i get :
nginx version: nginx/1.1.19
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_module --with-http_dav_module --with-http_flv_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_mp4_module --with-http_perl_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_stub_status_module --with-http_ssl_module --with-http_sub_module --with-http_xslt_module --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-auth-pam --add-module=/build/buildd/nginx-1.1.19/debian/modules/chunkin-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/headers-more-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-development-kit --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-echo --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-http-push --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-lua --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-progress --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upstream-fair --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-dav-ext-module
--with-http_mp4_module
and --with-http_flv_module
are there, I also add on sites-available/domaine.conf
location ~ .mp4$ {
mp4;
mp4_buffer_size 4M;
mp4_max_buffer_size 10M;
}
location ~ .flv$ {
flv;
}
and Nginx restarted witout error, everything seem ok but when i check my urls myvideo.mp4?start=60 return a 404 error (what i think is normal) and video.mp4?starttime=60 return the video but whatever the starttime number is i get the full video from the begining, did i miss something ?
ubuntu nginx
I try to use the http_mp4_module on my Ubuntu server but that didnt seem to work at all.
When i check nginx -V i get :
nginx version: nginx/1.1.19
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_module --with-http_dav_module --with-http_flv_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_mp4_module --with-http_perl_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_stub_status_module --with-http_ssl_module --with-http_sub_module --with-http_xslt_module --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-auth-pam --add-module=/build/buildd/nginx-1.1.19/debian/modules/chunkin-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/headers-more-nginx-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-development-kit --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-echo --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-http-push --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-lua --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-module --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upload-progress --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-upstream-fair --add-module=/build/buildd/nginx-1.1.19/debian/modules/nginx-dav-ext-module
--with-http_mp4_module
and --with-http_flv_module
are there, I also add on sites-available/domaine.conf
location ~ .mp4$ {
mp4;
mp4_buffer_size 4M;
mp4_max_buffer_size 10M;
}
location ~ .flv$ {
flv;
}
and Nginx restarted witout error, everything seem ok but when i check my urls myvideo.mp4?start=60 return a 404 error (what i think is normal) and video.mp4?starttime=60 return the video but whatever the starttime number is i get the full video from the begining, did i miss something ?
ubuntu nginx
ubuntu nginx
asked Nov 12 '13 at 16:14
TaholaTahola
1032
1032
bumped to the homepage by Community♦ 34 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 34 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You should request video.mp4?start=60
, not video.mp4?starttime=60
.
A quote from the docs:
The pseudo-streaming works in alliance with a compatible Flash players. A player sends an HTTP request to the server with a start time specified in the query string argument (named simply start and specified in seconds), and the server responds with the stream such that its start position corresponds to the requested time, for example:
http://example.com/elephants_dream.mp4?start=238.88
p.s. Please also note, that you're using obsolete and unsupported version of nginx from development branch. Upgrade to the latest stable or mainstream is strongly advised.
Thanks you bbut as i say i get a 404 error with ?start and i dont get any with ?starttime maybe my nginx version work with the starttime request. Also i see some website usingstartparam: "starttime"
in jwplayer.
– Tahola
Nov 12 '13 at 21:44
The 404 error has nothing to do with query parameters. You can requestvideo.mp4?qwertyuiop
and still get the video.
– VBart
Nov 12 '13 at 22:17
maybe my nginx version work with the starttime request All nginx versions from nginx.org don't work withstarttime
. But with 3rd party patches and modules you can experience any strange and undocumented behaviour.
– VBart
Nov 12 '13 at 22:22
Are you sure thatmyvideo.mp4
exists in requested directory, and your request actually is caught bylocation ~ .mp4$
? Check your configuration. I'm sure 404 doesn't related to mp4 module at all.
– VBart
Nov 12 '13 at 22:25
Just turn on debug log and look what happens.
– VBart
Nov 12 '13 at 22:30
|
show 1 more comment
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f554480%2fnginx-http-mp4-module-seam-installed-but-dont-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should request video.mp4?start=60
, not video.mp4?starttime=60
.
A quote from the docs:
The pseudo-streaming works in alliance with a compatible Flash players. A player sends an HTTP request to the server with a start time specified in the query string argument (named simply start and specified in seconds), and the server responds with the stream such that its start position corresponds to the requested time, for example:
http://example.com/elephants_dream.mp4?start=238.88
p.s. Please also note, that you're using obsolete and unsupported version of nginx from development branch. Upgrade to the latest stable or mainstream is strongly advised.
Thanks you bbut as i say i get a 404 error with ?start and i dont get any with ?starttime maybe my nginx version work with the starttime request. Also i see some website usingstartparam: "starttime"
in jwplayer.
– Tahola
Nov 12 '13 at 21:44
The 404 error has nothing to do with query parameters. You can requestvideo.mp4?qwertyuiop
and still get the video.
– VBart
Nov 12 '13 at 22:17
maybe my nginx version work with the starttime request All nginx versions from nginx.org don't work withstarttime
. But with 3rd party patches and modules you can experience any strange and undocumented behaviour.
– VBart
Nov 12 '13 at 22:22
Are you sure thatmyvideo.mp4
exists in requested directory, and your request actually is caught bylocation ~ .mp4$
? Check your configuration. I'm sure 404 doesn't related to mp4 module at all.
– VBart
Nov 12 '13 at 22:25
Just turn on debug log and look what happens.
– VBart
Nov 12 '13 at 22:30
|
show 1 more comment
You should request video.mp4?start=60
, not video.mp4?starttime=60
.
A quote from the docs:
The pseudo-streaming works in alliance with a compatible Flash players. A player sends an HTTP request to the server with a start time specified in the query string argument (named simply start and specified in seconds), and the server responds with the stream such that its start position corresponds to the requested time, for example:
http://example.com/elephants_dream.mp4?start=238.88
p.s. Please also note, that you're using obsolete and unsupported version of nginx from development branch. Upgrade to the latest stable or mainstream is strongly advised.
Thanks you bbut as i say i get a 404 error with ?start and i dont get any with ?starttime maybe my nginx version work with the starttime request. Also i see some website usingstartparam: "starttime"
in jwplayer.
– Tahola
Nov 12 '13 at 21:44
The 404 error has nothing to do with query parameters. You can requestvideo.mp4?qwertyuiop
and still get the video.
– VBart
Nov 12 '13 at 22:17
maybe my nginx version work with the starttime request All nginx versions from nginx.org don't work withstarttime
. But with 3rd party patches and modules you can experience any strange and undocumented behaviour.
– VBart
Nov 12 '13 at 22:22
Are you sure thatmyvideo.mp4
exists in requested directory, and your request actually is caught bylocation ~ .mp4$
? Check your configuration. I'm sure 404 doesn't related to mp4 module at all.
– VBart
Nov 12 '13 at 22:25
Just turn on debug log and look what happens.
– VBart
Nov 12 '13 at 22:30
|
show 1 more comment
You should request video.mp4?start=60
, not video.mp4?starttime=60
.
A quote from the docs:
The pseudo-streaming works in alliance with a compatible Flash players. A player sends an HTTP request to the server with a start time specified in the query string argument (named simply start and specified in seconds), and the server responds with the stream such that its start position corresponds to the requested time, for example:
http://example.com/elephants_dream.mp4?start=238.88
p.s. Please also note, that you're using obsolete and unsupported version of nginx from development branch. Upgrade to the latest stable or mainstream is strongly advised.
You should request video.mp4?start=60
, not video.mp4?starttime=60
.
A quote from the docs:
The pseudo-streaming works in alliance with a compatible Flash players. A player sends an HTTP request to the server with a start time specified in the query string argument (named simply start and specified in seconds), and the server responds with the stream such that its start position corresponds to the requested time, for example:
http://example.com/elephants_dream.mp4?start=238.88
p.s. Please also note, that you're using obsolete and unsupported version of nginx from development branch. Upgrade to the latest stable or mainstream is strongly advised.
edited Nov 12 '13 at 21:00
answered Nov 12 '13 at 20:51
VBartVBart
6,72121724
6,72121724
Thanks you bbut as i say i get a 404 error with ?start and i dont get any with ?starttime maybe my nginx version work with the starttime request. Also i see some website usingstartparam: "starttime"
in jwplayer.
– Tahola
Nov 12 '13 at 21:44
The 404 error has nothing to do with query parameters. You can requestvideo.mp4?qwertyuiop
and still get the video.
– VBart
Nov 12 '13 at 22:17
maybe my nginx version work with the starttime request All nginx versions from nginx.org don't work withstarttime
. But with 3rd party patches and modules you can experience any strange and undocumented behaviour.
– VBart
Nov 12 '13 at 22:22
Are you sure thatmyvideo.mp4
exists in requested directory, and your request actually is caught bylocation ~ .mp4$
? Check your configuration. I'm sure 404 doesn't related to mp4 module at all.
– VBart
Nov 12 '13 at 22:25
Just turn on debug log and look what happens.
– VBart
Nov 12 '13 at 22:30
|
show 1 more comment
Thanks you bbut as i say i get a 404 error with ?start and i dont get any with ?starttime maybe my nginx version work with the starttime request. Also i see some website usingstartparam: "starttime"
in jwplayer.
– Tahola
Nov 12 '13 at 21:44
The 404 error has nothing to do with query parameters. You can requestvideo.mp4?qwertyuiop
and still get the video.
– VBart
Nov 12 '13 at 22:17
maybe my nginx version work with the starttime request All nginx versions from nginx.org don't work withstarttime
. But with 3rd party patches and modules you can experience any strange and undocumented behaviour.
– VBart
Nov 12 '13 at 22:22
Are you sure thatmyvideo.mp4
exists in requested directory, and your request actually is caught bylocation ~ .mp4$
? Check your configuration. I'm sure 404 doesn't related to mp4 module at all.
– VBart
Nov 12 '13 at 22:25
Just turn on debug log and look what happens.
– VBart
Nov 12 '13 at 22:30
Thanks you bbut as i say i get a 404 error with ?start and i dont get any with ?starttime maybe my nginx version work with the starttime request. Also i see some website using
startparam: "starttime"
in jwplayer.– Tahola
Nov 12 '13 at 21:44
Thanks you bbut as i say i get a 404 error with ?start and i dont get any with ?starttime maybe my nginx version work with the starttime request. Also i see some website using
startparam: "starttime"
in jwplayer.– Tahola
Nov 12 '13 at 21:44
The 404 error has nothing to do with query parameters. You can request
video.mp4?qwertyuiop
and still get the video.– VBart
Nov 12 '13 at 22:17
The 404 error has nothing to do with query parameters. You can request
video.mp4?qwertyuiop
and still get the video.– VBart
Nov 12 '13 at 22:17
maybe my nginx version work with the starttime request All nginx versions from nginx.org don't work with
starttime
. But with 3rd party patches and modules you can experience any strange and undocumented behaviour.– VBart
Nov 12 '13 at 22:22
maybe my nginx version work with the starttime request All nginx versions from nginx.org don't work with
starttime
. But with 3rd party patches and modules you can experience any strange and undocumented behaviour.– VBart
Nov 12 '13 at 22:22
Are you sure that
myvideo.mp4
exists in requested directory, and your request actually is caught by location ~ .mp4$
? Check your configuration. I'm sure 404 doesn't related to mp4 module at all.– VBart
Nov 12 '13 at 22:25
Are you sure that
myvideo.mp4
exists in requested directory, and your request actually is caught by location ~ .mp4$
? Check your configuration. I'm sure 404 doesn't related to mp4 module at all.– VBart
Nov 12 '13 at 22:25
Just turn on debug log and look what happens.
– VBart
Nov 12 '13 at 22:30
Just turn on debug log and look what happens.
– VBart
Nov 12 '13 at 22:30
|
show 1 more comment
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f554480%2fnginx-http-mp4-module-seam-installed-but-dont-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown