How to get RTSP Links Android

I got my answer ..thanx to this Element rsp = (Element)entry.getElementsByTagName(“media:content”).item(1); String anotherurl=rsp.getAttribute(“url”); In gdata api only we are getting this type of links : rtsp://v3.cache7.c.youtube.com/CiILENy73wIaGQlOCTh0GvUeYRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp These are playing in VideoView.

RTSP youtube link

I found this blog entry, maybe its a starting point. If you follow on of the <id> links you get another format where you should find the rtsp link. EDIT: after going through what WarrenFaith posted. PROPS TO HIM this is how you get a rtsp link. make a request http://gdata.youtube.com/feeds/mobile/videos/VIDEO_ID parse that data for … Read more

Video streaming using RTSP: Android

For rtsp streaming you can also try following servers: Darwin Streaming Server – linux package is available Windows Media Services – can be installed on Windows Server Trial VLC – standalone application For testing purposes of your application i would also recommend you to use existing mobile video services like: m.youtube.tv m.wp.tv You can extract … Read more

How can I display an RTSP video stream in a web page?

VLC also comes with an ActiveX plugin that can display the feed in a web page: http://wiki.videolan.org/ActiveX/HTML <OBJECT classid=”clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921″ codebase=”http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab” width=”640″ height=”480″ id=”vlc” events=”True”> <param name=”Src” value=”rtsp://cameraipaddress” /> <param name=”ShowDisplay” value=”True” /> <param name=”AutoLoop” value=”False” /> <param name=”AutoPlay” value=”True” /> <embed id=”vlcEmb” type=”application/x-google-vlc-plugin” version=”VideoLAN.VLCPlugin.2″ autoplay=”yes” loop=”no” width=”640″ height=”480″ target=”rtsp://cameraipaddress” ></embed> </OBJECT>