0
這是我的代碼,當我運行該應用程序,它會顯示「對不起這個視頻不能播放」。RTSP流在Android
public class rtspActivity extends Activity {
Button btn;
VideoView v;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_rtsp);
v=(VideoView)findViewById(R.id.vv);
v.setVideoURI(Uri.parse("rtsp://server.intelcast.tv:554/live/haditvfour1"));
}
}
@ShreyaShah在這個問題上,沒有Logcat會在那裏。 –
請提及您正在測試的設備。幾個月前[我無法在Samsung Galaxy S2上運行此代碼](http://stackoverflow.com/questions/11715702/cannot-play-rtsp-video-in-videoview-in-samsung-galaxy-s2) !所有其他設備,甚至是仿真器都可以運行它。 – 0605002
我登入索尼愛立信xperia x10 –