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
Post a Comment