如何使用java android jdk播放外部视频?

发布于 2024-10-11 19:39:01 字数 211 浏览 2 评论 0原文

这里是一个有关如何播放视频的示例,

但它将视频作为资源嵌入apk的,

如何播放外部视频,例如sdcard的/download目录下的test.mp4

Here's an example on how to play video,

but it embeds the video as resource of the apk,

how to play an external video ,e.g. the test.mp4 under the /download directory of sdcard?

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

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

发布评论

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

评论(4

对风讲故事 2024-10-18 19:39:01
path = "/sdcard/android.mp4";
mVideoView.setVideoPath(path);
mVideoView.setMediaController(new MediaController(this));
mVideoView.start();  

在此路径中,您还可以设置您的路径,例如

“/sdcard/download/android.mp4”

path = "/sdcard/android.mp4";
mVideoView.setVideoPath(path);
mVideoView.setMediaController(new MediaController(this));
mVideoView.start();  

In this path, you can also set your path, e.g.

"/sdcard/download/android.mp4"

离去的眼神 2024-10-18 19:39:01
    Videoview mVideoView =  (Videoview) findViewByID(R.id.<your_videoview_id>)
    file = "/sdcard/download/android.mp4";  
    mVideoView.setVideoPath(file);
    mVideoView.setMediaController(new MediaController(this));
    mVideoView.start();

希望这会起作用。
检查并回复。

    Videoview mVideoView =  (Videoview) findViewByID(R.id.<your_videoview_id>)
    file = "/sdcard/download/android.mp4";  
    mVideoView.setVideoPath(file);
    mVideoView.setMediaController(new MediaController(this));
    mVideoView.start();

Hope this will work.
Check and reply.

锦上情书 2024-10-18 19:39:01

要从 Android 中的 SD 卡打开文件,您可以使用 android.os.Environment 中定义的 getExternalStorageDirectory() 方法。请务必首先检查系统上是否有可用的 SD 卡。您可以使用从 getExternalStorageDir 方法返回的 File 对象(它是一个目录)来获取实际文件,并且从该新文件对象(实际文件)中,您可以使用实际文件的 uri 调用 MediaPlayer.create 。考虑:

文件目录 = Environment.getExternalStorageDir();
File file = File(dir, "filename.mp4");
MediaPlayer 播放器 = MediaPlayer.create(context, file.toURI();

To open a file from say, the sdcard in android you use the getExternalStorageDirectory() method that is defined in android.os.Environment. Be sure to also check that an sdcard is available on the system first. You use the File object (it is a directory) returned from the getExternalStorageDir method to get the actual file and from that new file object (the actual file) you can call MediaPlayer.create with the uri of the actual file. Consider:

File dir = Environment.getExternalStorageDir();
File file = File(dir, "filename.mp4");
MediaPlayer player = MediaPlayer.create(context, file.toURI();

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