video streaming - how to play sdp file in android? -


i using following code play video .3gp format , works fine facing problem while playing .sdp url.

intent intent = new intent();             intent.setaction(intent.action_view);             intent.setdata(uri.parse("rtsp://stream.the.sk/live/musicbox/musicbox-3m.3gp"));             startactivity(intent); 

i need play rtsp://ss1c6.idc.mundu.tv:554/prf0/cid_29.sdp format not work. please me. tried play vlc , mx player.

try code in oncreate function. work think.

videoview view=new videoview(this); setcontentview(view); view.setmediacontroller(mediacontroller);  view.setvideouri(uri.parse("rtsp://ss1c6.idc.mundu.tv:554/prf0/cid_29.sdp")); view.start(); 

Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -