我已经成功流网络摄像机使用RTSP使用此代码的Android手机上:
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
VideoView video= (VideoView) findViewById(R.id.videoview);
String viewSource = "rtsp://192.168.1.........";
video.setVideoURI(Uri.parse(viewSource));
video.setMediaController(new MediaController(this));
video.requestFocus();
video.start();
}
}
我的问题是,是否有可能操纵在Android上使用boofcv这是使用IP摄像机videoview? 因为boofcv样品它使用的是内置摄像头的Android手机上。 如果有人是那种在这里可以帮我请。