I am trying to build a client on android that will receive RTP streams and play it. I have searched on stackoverflow and Google, and found that MediaPlayer class can be used for this. But the MediaPlayer is used when a URL or a file is used as data source. In my scenario, my streaming server send RTP streams on a particular port of my client. So, is there any way to play MediaPlayer to play this stream without writing it into a file.
|
feedback
|
|
Have you tried it out? Your 'data source' for MediaPLayer is your rtsp link - rtsp://127.0.0.0:550/mystream.3gp I have done this with a VideoView, MediaPlayer is jsut an abstraction of this, so it shouldn't be too different. The MedaiPlayer will parse the rtsp url and start the Android RTSPEngine which will communicate with the RTP Server an establish the relevants ports to transfer the data. | |||
|
feedback
|