Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-08 Thread tunist
i did explore that possibility for several days, but did not achieve success. part of the problem is that the videos have dynamic privacy settings applied to them and so PHP is used to decide which videos the present user can view and which ones they cannot view. i looked at using various directive

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-08 Thread tunist
thanks again for assisting. i have resolved this now since i realised that the php file i use to stream the files did not support partial content ;) i thought that nginx had some kind of built in 'magical' support for that which meant that my application didn't need to handle it. however, that is n

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-07 Thread Alt
Hello, If I understand well, you are streaming video files from PHP? Here PHP will kill your performance and you really should avoid that and stream directly from nginx. Best Regards Posted at Nginx Forum: http://forum.nginx.org/read.php?2,260615,260861#msg-260861 _

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-07 Thread Francis Daly
On Fri, Aug 07, 2015 at 07:12:27AM -0400, tunist wrote: Hi there, > so in the interest of balance, i just cut some parts out. Yes, that's usually a sensible thing to do. It just makes reading the content a week later, a bit odd. > "Right now, it looks to me as if your config says that a request

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-07 Thread tunist
aha! yes, the cause of the problem was the lack of range handling in the PHP page i am using for streaming the files. i forgot that that is a requirement of the process! i have added the videostream class to the page and so far the streaming is working well in my tests :) Posted at Nginx Forum: h

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-07 Thread tunist
oh, so it seems likely that i need to add extra logic into the PHP page that handles the video stream to support range requests - as detailed here: http://codesamplez.com/programming/php-html5-video-streaming-tutorial Posted at Nginx Forum: http://forum.nginx.org/read.php?2,260615,260852#msg-2608

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-07 Thread tunist
oh, so it seems likely that i need to add extra logic into the PHP page that handles the video stream to support range requests - as detailed here: http://codesamplez.com/programming/php-html5-video-streaming-tutorial Posted at Nginx Forum: http://forum.nginx.org/read.php?2,260615,260853#msg-2608

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-07 Thread tunist
yes, i removed some of the original question since it was shown to not be relevant to the issue. i appreciate that maybe it would be best to write 'EDIT:' when i edit there, but then the question might become huge.. so in the interest of balance, i just cut some parts out. "Right now, it looks to

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-06 Thread Francis Daly
On Fri, Aug 07, 2015 at 01:18:48AM +0100, Francis Daly wrote: > On Thu, Aug 06, 2015 at 07:26:34PM -0400, tunist wrote: Hi there, > Also, you seem to be testing with "curl -I -r", and being surprised at > a HTTP 200 response. nginx returns HTTP 200 to HEAD requests for files. That last sentence

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-06 Thread Francis Daly
On Thu, Aug 06, 2015 at 07:26:34PM -0400, tunist wrote: Hi there, > i have now updated the serverfault question to include the nginx config > files. It looks like the question at http://serverfault.com/questions/710304/ has been changed so most current comments now look broken. That's one downs

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-06 Thread tunist
i have now updated the serverfault question to include the nginx config files. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,260615,260835#msg-260835 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-06 Thread tunist
i mentioned the possibility of a bug since i have already exhausted all options presented to me via numerous channels of research and support. i will post my server/site's full config to serverfault shorly. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,260615,260833#msg-260833 ___

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-06 Thread Maxim Dounin
Hello! On Thu, Aug 06, 2015 at 09:16:38AM -0400, tunist wrote: > i have now created question on this topic on serverfault and on > stackexchange's video site - but have not found the solution to the problem. > i have looked into all the answers i have received so far and none have made > any diff

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-06 Thread tunist
i have now created question on this topic on serverfault and on stackexchange's video site - but have not found the solution to the problem. i have looked into all the answers i have received so far and none have made any difference to the fact that my server is not reliably serving video. all my M

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-02 Thread tunist
i thought i had solved this by adding the header for accept-ranges - since when i did that i could then seek in firefox on windows 7. however, after testing further i found that the results are inconsistent and ultimately it is still somewhat broken. i have added more details to this to a new quest

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-02 Thread Lucas Rolff
Be aware it doesn't work either in Chrome on mac :-) tunist 2 Aug 2015 13:16 oh, so the solution here was to add: add_header Accept-Ranges bytes; to the site's config file. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,260615,260702#msg-260702 ___

Re: mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-08-02 Thread tunist
oh, so the solution here was to add: add_header Accept-Ranges bytes; to the site's config file. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,260615,260702#msg-260702 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/li

mp4 streaming/seeking works from firefox (fedora) and not from firefox (windows) (nginx 1.9.3)

2015-07-29 Thread tunist
greetings! i am seeing an unexplained malfunction here with nginx when serving videos. flv and mp4 files have different symptoms. mp4 streams correctly when i view the file in firefox 39 in fedora 22, but in windows 7 (firefox 39) the file cannot be 'seeked' and must be played linearly. after spea

Re: nginx-1.9.3

2015-07-14 Thread Kevin Worthington
Hello Nginx users, Now available: Nginx 1.9.3 for Windows http://goo.gl/qn44F5 (32-bit and 64-bit versions) These versions are to support legacy users who are already using Cygwin based builds of Nginx. Officially supported native Windows binaries are at nginx.org. Announcements are also

nginx-1.9.3

2015-07-14 Thread Maxim Dounin
Changes with nginx 1.9.3 14 Jul 2015 *) Change: duplicate "http", "mail", and "stream" blocks are now disallowed. *) Feature: connection limiting in the stream module. *) Feature: data rate limiting in the