feat(video-player): 增强视频播放器错误处理并添加倍速提示
- 添加视频错误自动恢复机制,支持跳过损坏区间继续播放 - 增加倍速播放提示功能,2秒后自动消失 - 扩展默认倍速选项,新增0.75x和1.25x选项 - 优化错误处理流程,增加重试计数和详细日志 - 移除调试用的console.log语句
This commit is contained in:
@@ -110,6 +110,11 @@
|
||||
type: Array,
|
||||
default: () => []
|
||||
},
|
||||
//是否显示倍速提示
|
||||
showRateTips: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//循环播放
|
||||
loop: {
|
||||
type: Boolean,
|
||||
@@ -260,7 +265,6 @@
|
||||
created() {
|
||||
//获取当前运行的平台
|
||||
this.updateHeight()
|
||||
console.log('倍速列表是否是ios YINGBING' + JSON.stringify(this.playbackRates))
|
||||
},
|
||||
methods: {
|
||||
//接收消息
|
||||
|
||||
Reference in New Issue
Block a user