Reputation: 269
I wants to read live streaming data using Javascript or HTML5. Is it possible in Javascript or HTML5?
Upvotes: 1
Views: 446
Reputation: 32831
JavaScript with HTML5. It's called the EventSource API. It's still a draft, but already supported by modern browsers.
Upvotes: 2
Reputation: 128945
You can use WebSockets for that. But live video and audio is not supported in HTML5 yet.
Upvotes: 1