使用 MediaPlayer 在 Android 上未显示视频流(MPEG4 视频)?

发布于 2024-09-27 07:46:22 字数 316 浏览 3 评论 0原文

有一个在线流,大小为 512Kb MPEG4,在线总大小为 312mb,如果我在查看文档后正确地播放电影,我只是简单地说:

MediaPlayer mp = new MediaPlayer();
Try{
  mp.setDataSource("http://site.com/movie.mp4");
}
Try {
  mp.prepare();
}
mp.start();

按下按钮后几秒钟后触发播放按下按钮后它会播放音频但不显示视频,为什么不呢?我是否必须使用表面视图或其他东西来进行流的视觉播放(android 文档似乎对我没有多大帮助)?

There is an online stream that is 512Kb MPEG4 and total size of 312mb online and if I'm correct after looking over docs in order to play the movie I just simply put:

MediaPlayer mp = new MediaPlayer();
Try{
  mp.setDataSource("http://site.com/movie.mp4");
}
Try {
  mp.prepare();
}
mp.start();

It is triggered to play after a button press which after a few seconds after pressing the button it plays the audio BUT doesn't show the video, why not? Do I have to use a surface view or something for visual playback of the stream (the android docs don't seem to help me much)?

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

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

发布评论

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

评论(1

赠意 2024-10-04 07:46:22

首先,是的,您需要一个 SurfaceView 来使用 MediaPlayer 播放视频。或者,使用 VideoView 并跳过 MediaPlayer

其次,如果您尝试在模拟器中播放此内容,这是典型的行为。除非您拥有超快的硬件,否则视频播放将无法在模拟器上正常运行。我建议使用实际的 Android 设备来开发视频播放器。

First, yes, you need a SurfaceView to play back video with a MediaPlayer. Or, use a VideoView and skip the MediaPlayer.

Second, if you are trying to play this back in the emulator, this is typical behavior. Video playback will not work well on the emulator unless you have crazy-fast hardware. I recommend that video player development be done with actual Android devices.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文