我尝试使用默认媒体播放器在我的Android应用中打开this stream,但我的所有媒体播放器都出错(例如MX播放器和VLC播放器)。
守则是:
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://iutv.iut.ac.ir:5657/tv2.flv");
intent.setType("video/*");
startActivity(intent)
错误是:
VLC encountered an error with this media.
Please try refreshing the media library
但是当我在chrome web浏览器上输入链接时,它可以正确打开MX Player和VLC Player的链接
答案 0 :(得分:1)
这对我有用
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("http://iutv.iut.ac.ir:5657/tv2"), "video/*");
startActivity(intent);
但如果您的问题仍然存在,请查看此处: