mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix(xgplayer): onTimeupdate中AUTOPLAY_STARTED的触发增加判断为this.state === STATES.NOTALLOW; 2. startTime处理放在onLoadedData中,修复ios中在durationchange修改currentTime之后timeupdate不触发问题
This commit is contained in:
parent
cc80615efc
commit
849541d6d9
@ -1854,18 +1854,15 @@ class Player extends MediaProxy {
|
||||
this.waitTimer && Util.clearTimeout(this, this.waitTimer)
|
||||
}
|
||||
|
||||
onDurationchange () {
|
||||
onLoadeddata () {
|
||||
this.isError = false
|
||||
this.isSeeking = false
|
||||
if (this.__startTime > 0 && this.duration > 0) {
|
||||
this.currentTime = this.__startTime
|
||||
this.__startTime = -1
|
||||
}
|
||||
}
|
||||
|
||||
onLoadeddata () {
|
||||
this.isError = false
|
||||
this.isSeeking = false
|
||||
}
|
||||
|
||||
onLoadstart () {
|
||||
this.removeClass(STATE_CLASS.ERROR)
|
||||
this.isCanplay = false
|
||||
@ -1988,7 +1985,7 @@ class Player extends MediaProxy {
|
||||
}
|
||||
|
||||
// 兼容safari在调整为静音之后未调用play自动起播问题
|
||||
if (!this.paused && this.state < STATES.RUNNING && this.duration) {
|
||||
if (!this.paused && this.state === STATES.NOTALLOW && this.duration) {
|
||||
this.setState(STATES.RUNNING)
|
||||
this.emit(Events.AUTOPLAY_STARTED)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user