user1037552
user1037552

Reputation: 269

How to read live streaming data

I wants to read live streaming data using Javascript or HTML5. Is it possible in Javascript or HTML5?

Upvotes: 1

Views: 446

Answers (2)

Maurice Perry
Maurice Perry

Reputation: 32831

JavaScript with HTML5. It's called the EventSource API. It's still a draft, but already supported by modern browsers.

Upvotes: 2

Jonas
Jonas

Reputation: 128945

You can use WebSockets for that. But live video and audio is not supported in HTML5 yet.

Upvotes: 1

Related Questions