如何在 android 中使用 .mov 格式的 url 播放在线视频?
how to play online video using uri with .mov formate in android?
- 我想使用 .mov 格式的视频 URL 在 android phone 上播放视频,但无法播放 videoview
中的视频
- 我用这个库
单击此处 https://github.com/rtoshiro/FullscreenVideoView
Uri videoUri = Uri.parse("https://***");
try {
videoLayout.setVideoURI(videoUri);
} catch (IOException e) {
e.printStackTrace();
}
我有一个由 google 开发的媒体播放器,支持所有类型的视频和音频格式,包括 youtube url 并支持 http:// 和 https:// 输入 url
这里是 link
https://google.github.io/ExoPlayer/
- 我想使用 .mov 格式的视频 URL 在 android phone 上播放视频,但无法播放 videoview 中的视频
- 我用这个库 单击此处 https://github.com/rtoshiro/FullscreenVideoView
Uri videoUri = Uri.parse("https://***");
try { videoLayout.setVideoURI(videoUri); } catch (IOException e) { e.printStackTrace(); }
我有一个由 google 开发的媒体播放器,支持所有类型的视频和音频格式,包括 youtube url 并支持 http:// 和 https:// 输入 url
这里是 link
https://google.github.io/ExoPlayer/