gpt4 book ai didi

android - 如何在 exo 播放器的媒体源列表中设置特定索引?

转载 作者:行者123 更新时间:2023-12-05 00:16:39 25 4
gpt4 key购买 nike

您好,我安装了 ExoPlayer V2 并且我有大小为 10 的数组列表(例如 10 首歌曲)但是当启动 ExoPlayer 时,音频媒体播放器总是启动第一首歌曲指定索引或位置(我需要开始第5首歌曲)

for (ModelRadio sample : modelRadios) {
MediaSource mediaSource = new ExtractorMediaSource.Factory(dataSourceFactory).createMediaSource(Uri.parse(sample.get_radio_url()));
concatenatingMediaSource.addMediaSource(mediaSource);
}

player.seekTo(5); // i don't know this method will work or not?
player.prepare(concatenatingMediaSource);
player.setPlayWhenReady(true);

最佳答案

我从github上得到了答案

import com.google.android.exoplayer2.C;
player.seekTo(5, C.INDEX_UNSET);
player.prepare(concatenatingMediaSource, false, false);
player.setPlayWhenReady(true);

关于android - 如何在 exo 播放器的媒体源列表中设置特定索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56111776/

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