Merge pull request #9 from langyuxiansheng/dev_v1.2.0

修复播放源切换bug和功能升级
This commit is contained in:
langyuxiansheng 2020-05-29 10:48:36 +08:00 committed by GitHub
commit 0c277b3ef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 21 deletions

View File

@ -35,7 +35,7 @@ components:{ VueAliplayerV2: VueAliplayerV2.Player }
<template>
<div id="app">
<template v-if="show">
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" id="player-1194076936807170050" :options="options" />
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options" />
</template>
<p class="remove-text" v-else>播放器已销毁!</p>
<div class="player-btns">
@ -44,6 +44,8 @@ components:{ VueAliplayerV2: VueAliplayerV2.Player }
<span @click="replay()">重播</span>
<span @click="getCurrentTime()">播放时刻</span>
<span @click="show = !show">{{ show ? '销毁' : '重载' }}</span>
<span @click="options.isLive = !options.isLive">{{ options.isLive ? '切换普通模式' : '切换直播模式' }}</span>
<span @click="getStatus()">获取播放器状态</span>
</div>
<div class="source-box">
<span class="source-label">选择播放源(支持动态切换):</span>
@ -51,6 +53,7 @@ components:{ VueAliplayerV2: VueAliplayerV2.Player }
<option value="//player.alicdn.com/video/aliyunmedia.mp4">播放源1</option>
<option value="//yunqivedio.alicdn.com/user-upload/nXPDX8AASx.mp4">播放源2</option>
<option value="//tbm-auth.alicdn.com/e7qHgLdugbzzKh2eW0J/kXTgBkjvNXcERYxh2PA@@hd_hq.mp4?auth_key=1584519814-0-0-fc98b2738f331ff015f7bf5c62394888">播放源3</option>
<option value="//ivi.bupt.edu.cn/hls/cctv1.m3u8">直播播放源4</option>
</select>
</div>
<div class="source-box">
@ -375,6 +378,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
## 更新日志
> v1.2.0 修复播放源(MP4/m3u8)之间切换无法正常播放的bug,增加options配置项动态响应功能,优化部分播放器的逻辑, 感谢"liyoro"网友的反馈和建议.
> v1.1.9 修复播放源(修复prop:source类型验证报错), 感谢"hugo2017"和“nullF”网友的反馈.
> v1.1.8 修复播放源(增加source属性类型错误),修复获取播放器状态 getStatus()方法报错, 感谢"kongjigu"网友的反馈.

View File

@ -10,6 +10,7 @@
<span @click="replay()">重播</span>
<span @click="getCurrentTime()">播放时刻</span>
<span @click="show = !show">{{ show ? '销毁' : '重载' }}</span>
<span @click="options.isLive = !options.isLive">{{ options.isLive ? '切换普通模式' : '切换直播模式' }}</span>
<span @click="getStatus()">获取播放器状态</span>
</div>
<div class="source-box">
@ -18,6 +19,7 @@
<option value="//player.alicdn.com/video/aliyunmedia.mp4">播放源1</option>
<option value="//yunqivedio.alicdn.com/user-upload/nXPDX8AASx.mp4">播放源2</option>
<option value="//tbm-auth.alicdn.com/e7qHgLdugbzzKh2eW0J/kXTgBkjvNXcERYxh2PA@@hd_hq.mp4?auth_key=1584519814-0-0-fc98b2738f331ff015f7bf5c62394888">播放源3</option>
<option value="//ivi.bupt.edu.cn/hls/cctv1.m3u8">直播播放源4</option>
</select>
</div>
<div class="source-box">
@ -33,9 +35,12 @@ export default {
data(){
return {
options: {
source:'//player.alicdn.com/video/aliyunmedia.mp4'
// source:'//player.alicdn.com/video/aliyunmedia.mp4',
isLive: true, //
// format: 'm3u8' //
},
source: '//player.alicdn.com/video/aliyunmedia.mp4',
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',
show: true
}
},
@ -55,7 +60,8 @@ export default {
},
getCurrentTime(){
this.$refs.VueAliplayerV2.getCurrentTime();
// this.$refs.VueAliplayerV2.getCurrentTime();
this.source = 'http://ivi.bupt.edu.cn/hls/cctv1.m3u8';
},
getStatus(){

View File

@ -1,6 +1,6 @@
{
"name": "vue-aliplayer-v2",
"version": "1.1.9",
"version": "1.2.0",
"author": "yxs",
"description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的播放器.",
"main":"lib/vue-aliplayer-v2.umd.min.js",

View File

@ -125,8 +125,15 @@ export default {
};
},
watch:{
source(url){ //
this.loadByUrl(url);
source(){ //
this.init();
},
options:{ //,
handler(){
this.init();
},
deep:true
}
},
mounted () {
@ -192,21 +199,13 @@ export default {
}
if(this.source) this.config.source = this.source; //
this.config.id = this.id;
// this.player = new Aliplayer(this.config, function(player) {
// // console.log('',player);
// });
if(!this.player){
// console.log(this.config);
this.player = Aliplayer(this.config);
for(const ev in this.events){
this.player && this.player.on(this.events[ev],(e)=>{
// console.log(`object ${this.events[ev]}`,e);
this.$emit(this.events[ev],e);
});
}
} else {
this.player && this.player.replay(); //
// console.log(`this.player && this.player.replay()`,'');
this.player && this.player.dispose(); //
this.player = Aliplayer(this.config);
for(const ev in this.events){
this.player && this.player.on(this.events[ev],(e)=>{
// console.log(`object ${this.events[ev]}`,e);
this.$emit(this.events[ev],e);
});
}
//off
//player.off('ready',handleReady);