in reply to Re^7: [OT] Re: (OT) HTML video tag is not working in cgi
in thread (OT) HTML video tag is not working in cgi
This is why it works and what Corion already said. The video serves because the context is the file:/// tree. But once you serve the HTML through any kind of webserver, the path to the video will not exist in that context. Probably one of these will work but it depends on the type and configuration of the webserver you are using–
<source src="video.mp4" type="video/mp4"> <source src="c/video.mp4" type="video/mp4"> ...etc...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: [OT] Re: (OT) HTML video tag is not working in cgi
by awanti (Acolyte) on Jan 28, 2016 at 17:54 UTC | |
by Your Mother (Archbishop) on Jan 28, 2016 at 18:03 UTC |