Search code examples
androidstreaminglive

android live streaming of tv


I am developing app in which I have to implement live tv streaming. I am trying in internet but I am not getting good solutions . please help me to solve this.. Thanks in advance...


Solution

  • Android already supports many video codecs (such as H264) and a variety of streaming mechanisms (such as RTSP and plain HTTP).

    The simplest streaming setup would involve using any off-the-shelf encoder/server to produce such a stream (such as H264 over RTSP) on a PC, and then point the Android web browser to that address, which will launch the built-in media player to play the stream.

    This wouldn't even require you to write a single line of code!