从 Android 上的 Axis 摄像头获取 rtsp 流
我正在尝试将来自 Axis 摄像头的 rtsp 流显示到媒体播放器对象中,代码如下:
public class Rtsp extends Activity {
String PATH_TO_STREAM = "rtsp://192.168.131.21/mpeg4/1/media.3gp";
private VideoView video;
private MediaController ctlr;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
video=(VideoView)findViewById(R.id.video);
ctlr=new MediaController(this);
ctlr.setAnchorView(video);
Uri videoUri = Uri.parse(PATH_TO_STREAM);
video.setMediaController(ctlr);
video.setVideoURI(videoUri);
video.start();
}}
我可以使用 VLC 正确进行流式传输,但使用 Android 时出现此错误:
02-10 11:58:07.071: ERROR/PlayerDriver(31): Command PLAYER_PREPARE completed with an error or info PVMFErrResourceConfiguration
02-10 11:58:07.101: ERROR/MediaPlayer(432): error (1, -16)
02-10 11:58:07.101: ERROR/MediaPlayer(432): Error (1,-16)
02-10 11:58:07.101: DEBUG/VideoView(432): Error: 1,-16
02-10 11:58:07.121: WARN/PlayerDriver(31): PVMFInfoErrorHandlingComplete
02-10 11:58:07.711: WARN/InputManagerService(60): Starting input on non-focused client com.android.internal.view.IInputMethodClient$Stub$Proxy@43bfce30 (uid=10007 pid=106)
02-10 11:58:12.902: DEBUG/dalvikvm(106): GC freed 2635 objects / 150552 bytes in 314ms
有任何提示吗?谢谢
I'm trying to show rtsp stream from an Axis camera into a mediaplayer object, here the code:
public class Rtsp extends Activity {
String PATH_TO_STREAM = "rtsp://192.168.131.21/mpeg4/1/media.3gp";
private VideoView video;
private MediaController ctlr;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
video=(VideoView)findViewById(R.id.video);
ctlr=new MediaController(this);
ctlr.setAnchorView(video);
Uri videoUri = Uri.parse(PATH_TO_STREAM);
video.setMediaController(ctlr);
video.setVideoURI(videoUri);
video.start();
}}
I can correctly stream with the VLC but I get this error with Android:
02-10 11:58:07.071: ERROR/PlayerDriver(31): Command PLAYER_PREPARE completed with an error or info PVMFErrResourceConfiguration
02-10 11:58:07.101: ERROR/MediaPlayer(432): error (1, -16)
02-10 11:58:07.101: ERROR/MediaPlayer(432): Error (1,-16)
02-10 11:58:07.101: DEBUG/VideoView(432): Error: 1,-16
02-10 11:58:07.121: WARN/PlayerDriver(31): PVMFInfoErrorHandlingComplete
02-10 11:58:07.711: WARN/InputManagerService(60): Starting input on non-focused client com.android.internal.view.IInputMethodClient$Stub$Proxy@43bfce30 (uid=10007 pid=106)
02-10 11:58:12.902: DEBUG/dalvikvm(106): GC freed 2635 objects / 150552 bytes in 314ms
Any hint? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
video.start();
之前调用video.requestFocus();
。我想这会让你的代码运行。Call
video.requestFocus();
beforevideo.start();
. I guess it will make your code run.