如何播放在线文件服务器上存储的视频?

发布于 2025-01-07 19:31:49 字数 281 浏览 0 评论 0原文

我必须在我的 Android 应用程序中播放视频。该文件存储在在线文件服务器

链接上:http://view.vzaar.com/923037/video

我无法使用 VideoView 播放此文件。我还尝试将此文件加载到 WebView 中,但 WebView 打开 Web 浏览器,然后文件开始播放。

有没有办法直接在我的应用程序中播放此类文件,而无需下载到设备中?

I have to play a video in my android app. The file is stored on a online file server

link is : http://view.vzaar.com/923037/video

I am unable to play this file using VideoView. I also tried to load this file into WebView but the WebView opens Web Browser and then the file starts playing.

Is there any way to play these kind of file directly into my app without downloading into device?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瑶笙 2025-01-14 19:31:49

对于您的 VideoView,问题在于 setVideoPath 方法。您需要使用 setVideoURI 来指定流媒体源:

VideoView mVideoView = (VideoView) findViewById(R.id.vdoTest);
mVideoView.setMediaController(new MediaController(this));
String viewSource ="http://view.vzaar.com/923037/video";
mVideoView.setVideoURI(Uri.parse(viewSource));

如果视频编码正确,这应该可以工作:(AAC+H.264,基线)

For your VideoView, the prpoblem is with setVideoPath method. You need to use setVideoURI instead to specify a streaming source:

VideoView mVideoView = (VideoView) findViewById(R.id.vdoTest);
mVideoView.setMediaController(new MediaController(this));
String viewSource ="http://view.vzaar.com/923037/video";
mVideoView.setVideoURI(Uri.parse(viewSource));

This should work, provided the video is encoded correctly: (AAC+H.264, baseline)

月亮是我掰弯的 2025-01-14 19:31:49

编写此 html 代码并将其加载到 webview 中:

<html><body><embed src="http://view.vzaar.com/923037/video" width="100%" height="100%"></embed></body></html>

write this html code and load it in webview:

<html><body><embed src="http://view.vzaar.com/923037/video" width="100%" height="100%"></embed></body></html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文