|
@@ -162,6 +162,12 @@ class VidPlayerControllerNoSharing extends ChangeNotifier
|
|
|
_setStatus(VidPlayStatus.pause);
|
|
|
}
|
|
|
|
|
|
+ /// 主动播放结束
|
|
|
+ void playOver() {
|
|
|
+ pause();
|
|
|
+ eventHandler.emit(this, VidPlayerPlayOverEvent());
|
|
|
+ }
|
|
|
+
|
|
|
/// Pause and view next frame
|
|
|
Future<bool> gotoNextFrame() {
|
|
|
pause();
|
|
@@ -374,7 +380,7 @@ class _PlayAssistant {
|
|
|
// print('play at ${DateTime.now()}');
|
|
|
owner.gotoFrame(owner.currentFrameIndex + 1);
|
|
|
if (owner.currentFrameIndex == owner.totalFramesCount - 1) {
|
|
|
- owner.pause();
|
|
|
+ owner.playOver();
|
|
|
}
|
|
|
});
|
|
|
}
|