html - Stream audio and video data in network in html5 -


how achieve streaming of audio , video data , pass on network. gone through article here, did not in depth. want have chat application in html5

there below question

  1. how stream audio , video data
  2. how pass particular ip address.
  3. get data , pass video , audio control

if want serve stream, need server doing so, either downloading , installing, or coding on own.

streams work in 1 direction, there no responding or "retrieve back". streaming same downloading, slight differences, depending on service , use case.

most streams downstreams, there upstreams. did hear bufferstreams in php, java, whatever? it's same: data -> direction -> cursor. streams work on many protocols, via different network layers, example:

  • network/subnet broadcast, peer 2 peer, http, dlna, ftp streams, ...

the basic nature of stream nothing more data beeing sent audience.

you need decide:

  • which protocol want use streaming
  • which server software
  • which media / source / live or selectable start/end
  • which clients

the popular http streaming server shoutcast nullsoft (winamp).

there dlna afaik not http based.

to provide more information, need more specific regarding basic requirements , decisions.


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -