gpt4 book ai didi

android - 使用 VideoView 实现无缝视频循环

转载 作者:IT老高 更新时间:2023-10-28 13:11:33 26 4
gpt4 key购买 nike

我有以下代码将视频作为原始资源,启动视频并循环播放,但我需要视频在剪辑结束时无缝循环,然后再次开始剪辑between 会导致瞬间闪烁,而我的应用程序确实无法做到这一点。

public class Example extends Activity {
VideoView vv;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

vv = (VideoView)findViewById(R.id.VideoView01);

//Video Loop
vv.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
public void onCompletion(MediaPlayer mp) {
vv.start(); //need to make transition seamless.
}
});

Uri uri = Uri.parse("android.resource://com.example/"
+ R.raw.video);

vv.setVideoURI(uri);
vv.requestFocus();
vv.start();
}
}

该剪辑只有 22 秒长,但它的创建是无缝的,因此可以毫无延迟地工作。

最佳答案

试试这个,它会 100% 工作


VideoView videoView;<---把这个写在方法外或者声明为最终变量。

videoView.setOnPreparedListener(new OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mp) {
mp.setLooping(true);
}
});

关于android - 使用 VideoView 实现无缝视频循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4746075/

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