gpt4 book ai didi

Android - m3u8 视频流

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:17:47 29 4
gpt4 key购买 nike

我正在我的应用程序中流式传输实时视频。我有一个 .m3u8 链接,它在 vlc 播放器中完美运行。但是当我在我的应用程序中播放这个流时,视频的可视化被破坏了(见截图)。有谁知道,这可能是什么原因造成的? damaged video

编辑:我意识到这只发生在 Android 8.1 上。

最佳答案

试试这个 library对于 .m3u8 ,这将解决您的问题:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.devbrackets.android.exomedia.ui.widget.VideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:useDefaultControls="true"/>

</RelativeLayout>

在Activity中写下代码

private VideoView videoView;

private void setupVideoView() {
// Make sure to use the correct VideoView import
videoView = (VideoView)findViewById(R.id.video_view);
videoView.setOnPreparedListener(this);

//For now we just picked an arbitrary item to play
videoView.setVideoURI(Uri.parse("https://archive.org/download/Popeye_forPresident/Popeye_forPresident_512kb.m3u8"));
}

@Override
public void onPrepared() {
//Starts the video playback as soon as it is ready
videoView.start();
}

关于Android - m3u8 视频流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50874505/

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