我已经在 TextureView 上使用 MediaPlayer 成功播放了一个视频,现在我正在尝试编程,以便视频在某个帧通过后自动更改。但是,在满足一定条件后,我无法更新视频。它卡在第一个视频(满足条件之前的最后一帧)。
第一个视频通过特定帧后,如何加载新视频并开始播放?这就是我所拥有的,我使用 CountDownTimer 来获取最准确的当前时间。
public class PreviewVideo extends AppCompatActivity implements TextureView.SurfaceTextureListener {
TextureView textureView;
MediaPlayer videoMedia;
Boolean pastFrame=false;
int currentTime;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_preview_video);
textureView = (TextureView) findViewById(R.id.previewVideo);
textureView.setSurfaceTextureListener(this);
}
@Override
public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) {
surf=new Surface(surface);
videoMedia=new MediaPlayer();
videoMedia.setSurface(surf);
try{
if (!pastFrame){
videoMedia.setDataSource(this,firstUri);
}
else {
videoMedia.setDataSource(this,secondUri);
}
videoMedia.prepare();
playListeners();
} catch(IOException e){e.printStackTrace(); }
}
private void playListeners() {
count=new CountDownTimer(videoMedia.getDuration()*10, 1){
@Override
public void onTick(long l)
{
currentTime=videoMedia.getCurrentPosition();
if (currentTime>=setFrame && pastFrame==false){
textureView.setSurfaceTextureListener(this);//Do I call this again??
pastFrame=true;
}
@Override
public void onFinish(){
}
}.start();
}
}