gpt4 book ai didi

android - 如何使用 vitamio 从原始文件夹运行视频?

转载 作者:行者123 更新时间:2023-11-29 17:58:17 27 4
gpt4 key购买 nike

我正在尝试播放原始文件夹中的 mp4 视频。它在原生视频播放器中运行良好,但当我尝试使用 vitamio 播放它时,它对我不起作用。有什么方法可以使用 vitamio 库从 android 中的原始文件夹运行 mp4 视频吗??

我使用此代码从原始文件夹运行视频。

VideoView view = (VideoView)findViewById(R.id.videoView);
String path = "android.resource://" + getPackageName() + "/" + R.raw.video_file;
view.setVideoURI(Uri.parse(path));
view.start();

最佳答案

请尝试此代码。

mVideoView.setVideoPath("your path");
mVideoView.setMediaController(new MediaController(
LibraryVideo.this));
mVideoView.requestFocus();

mVideoView
.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mediaPlayer) {
Log.e("StartVideo", "OnPrepare");
mVideoView.start();
}
});

video_view.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<io.vov.vitamio.widget.CenterLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<io.vov.vitamio.widget.VideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</io.vov.vitamio.widget.CenterLayout>

</LinearLayout>

关于android - 如何使用 vitamio 从原始文件夹运行视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17670182/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com