Re: HTML video seek problem in django

2018-01-19 Thread Jason
After a bit more digging, there's a thread on the django-developers google group: https://groups.google.com/forum/#!searchin/django-developers/http$20range$20header%7Csort:date/django-developers/NZ1qTkZ6vok/0T7YXSdrizgJ Apparently that patch developer never followed up. -- You received this

Re: HTML video seek problem in django

2018-01-19 Thread Jason
Nice find! Wonder why that author never made a PR to the django project? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups

Re: HTML video seek problem in django

2018-01-18 Thread Manjunatha
Hi Jason, Thanks for your suggestion. I found a solution for the Video seek problem in django. Make some changes in *django/views/static.py. * *follow this link* : https://github.com/satchamo/django/commit/2ce75c5c4bee2a858c0214d136bfcd351fcde11d#diff-272f1bbef1bc0bce0b959da83acb366d Regards, M

Re: HTML video seek problem in django

2018-01-11 Thread Jason
An alternative is to use the django extensions runserverplus which uses the Werkzeug debugger. As you can see in this post on django-developers

Re: HTML video seek problem in django

2018-01-11 Thread Manjunatha
Hi Kasper Laudrup, Thank you very much for your advice. Regards, Manjunatha On Thursday, 11 January 2018 16:19:19 UTC+5:30, Kasper Laudrup wrote: > > Hi Manjunatha, > > On 2018-01-11 12:33, Manjunatha wrote: > > I am using *django python* framework. Currently I am working on > > localhost 12

Re: HTML video seek problem in django

2018-01-11 Thread Kasper Laudrup
Hi Manjunatha, On 2018-01-11 12:33, Manjunatha wrote: I am using *django python* framework. Currently I am working on localhost 127.0.0.1:8000. There is no forum for django. Is there any suggestion from your side to solve this problem. So the problem is only showing up during development?

Re: HTML video seek problem in django

2018-01-11 Thread Manjunatha
Hi Kasper, I am using *django python* framework. Currently I am working on localhost 127.0.0.1:8000. There is no forum for django. Is there any suggestion from your side to solve this problem. Thanks, Manjunatha On Thursday, 11 January 2018 15:52:15 UTC+5:30, Kasper Laudrup wrote: > > Hi Manju

Re: HTML video seek problem in django

2018-01-11 Thread Kasper Laudrup
Hi Manjunatha, On 2018-01-11 11:47, Manjunatha wrote: Hi Kasper, No. The server gives *200 OK *status code. But I can't see partial content server. Please help me to change status code 200 to 206. You should look into the documentation for the web server you are using. If the web server g

Re: HTML video seek problem in django

2018-01-11 Thread Manjunatha
Hi Kasper, No. The server gives *200 OK *status code. But I can't see partial content server. Please help me to change status code 200 to 206. Thanks, Manjunatha On Thursday, 11 January 2018 15:02:16 UTC+5:30, Kasper Laudrup wrote: > > Hi Manjunatha, > > On 2018-01-11 05:34, Manjunatha wrote

Re: HTML video seek problem in django

2018-01-11 Thread Kasper Laudrup
Hi Manjunatha, On 2018-01-11 05:34, Manjunatha wrote: I have attached one image please go through that, actually in my case status code returns 200. Please help me out. Does your server understand "partial content requests" as descriped in the Stackoverflow post you posted a screenshot of?

Re: HTML video seek problem in django

2018-01-10 Thread Manjunatha
Hi Julio Biason*,* I have not added any javascript, I downloaded the video from youtube and put it in inside Django folder. In the HTML tag I gave the path of the link. The video is playing but not forward and backward feature. It's only in *Chrome* browser. *Regards,* *Manjunatha,* On Wed

Re: HTML video seek problem in django

2018-01-10 Thread Julio Biason
Hi Manjunatha, Django just serves the content, it doesn't handle how it will be played. It could be a problem with your player, or some JS error -- in other words, nothing to do with Django itself. On Wed, Jan 10, 2018 at 8:03 AM, Manjunatha L Naik wrote: > Hii, > > > > When load video from Dja