Case study using html5 stream-api

I would like to know if anyone managed to use the HTML5 api stream ? How can i use it? Is this a serverless solution? If not, where is the stream sent?

(I found this blog post that shows the first html5 conference application with a custom website. It is really interesting, but not useful, as it is not standerized).

Thanks,

Sincerely.

+4
source share
1 answer

The stream API is part of the HTMLDeviceElement API. This is not yet implemented in any released browser (January 2011).

The stream is served by a client computer. This is theoretically a โ€œserverlessโ€ solution, because it means that the client-side API can expose client devices (webcams, USB devices, etc.). You can use JavaScript to send the stream to the server if you want.

Since there are no released implementations (with the exception of WebKit nightly codes, it seems), this specification is really not ready for use.

You can always try the nightly build of WebKit and see if your demo works for you. Since this has not yet been released, I do not expect something to work very well. I tried to run last night (WebKit-r74232) and it seems that HTMLDeviceElement is not currently enabled.

+2
source

Source: https://habr.com/ru/post/1333949/


All Articles