私は、rtsp リンクを使用して、このストリームを Android デバイスでローカルおよびリモートで再生するために行った IP カメラを持っています。Android 4.0.x (galaxy tab 10) では正常に動作しますが、android 4.1.x (galaxy note II) ではローカルでのみ動作します。これは私のクラスです
public class Test extends Activity {
VideoView vw;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.class_videosurf);
vw = (VideoView) findViewById(R.id.videoview);
//local works fine with all android versions
//SrcPath = "rtsp://192.168.1.10/nphMpeg4/g726-640x480";
//remote works only with android 4.0.x
SrcPath = "rtsp://xx.xx.xx.xx/nphMpeg4/g726-640x480";
vw.setVideoPath(SrcPath);
vw.requestFocus();
vw.start();
}
}