更新版本号

This commit is contained in:
zhouliujun 2022-05-12 14:20:44 +08:00
parent d7495c1469
commit 31441d7773
4 changed files with 102 additions and 99 deletions

View File

@ -219,6 +219,13 @@ components: {
```javascript
props:{
forbidFastForward: { //禁止拖拽快进
required: false,
type: [Boolean],
default: false
},
options: { //配置项 (options.source 不支持动态切换,需要动态切换请直接使用source)
required: false,
type: [Object],
@ -455,10 +462,11 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
## 更新日志
> v1.3.0
> v1.3.0 修复部分已知bug,增加forbidFastForward 属性,感谢 "william-xue"网友的功能提交.
- sdk 版本更新,默认 SDK 版本由 2.9.3 更新为 2.9.7
- sdk 版本更新,默认 SDK 版本由 2.9.3 更新为 2.9.20
- 默认注释更新
- 增加禁止用户拖拽快进的属性选项 forbidFastForward [Boolean] 默认 false
> v1.2.9 修正部分默认属性, 感谢"Schean17"网友的反馈与建议.

View File

@ -13,7 +13,7 @@
<p class="remove-text" v-if="!show">播放器已销毁!</p>
<div class="player-btns">
<template v-if="!isShowMultiple && show">
<span @click="play()">播放</span>
<span @click="pause()">暂停</span>
<span @click="replay()">重播</span>
@ -58,7 +58,7 @@
// import VueAliplayerV2 from '../packages';
export default {
// components:{ VueAliplayerV2 },
data(){
data () {
return {
options: {
// source:'//player.alicdn.com/video/aliyunmedia.mp4',
@ -105,42 +105,42 @@ export default {
source: '//player.alicdn.com/video/aliyunmedia.mp4',
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',
show: true,
forbidFastForward:false,
forbidFastForward: false,
isShowMultiple: false,
}
},
methods:{
methods: {
play(){
play () {
this.$refs.VueAliplayerV2.play()
},
pause(){
pause () {
this.$refs.VueAliplayerV2.pause();
},
replay(){
replay () {
this.$refs.VueAliplayerV2.replay();
},
handlerForbidFastForward(){
handlerForbidFastForward () {
this.forbidFastForward = true
},
getCurrentTime(){
getCurrentTime () {
// this.$refs.VueAliplayerV2.getCurrentTime();
this.source = 'http://ivi.bupt.edu.cn/hls/cctv1.m3u8';
},
getStatus(){
const status = this.$refs.VueAliplayerV2.getStatus();
console.log(`getStatus:`, status);
alert(`getStatus:${status}`);
getStatus () {
const status = this.$refs.VueAliplayerV2.getStatus();
console.log(`getStatus:`, status);
alert(`getStatus:${status}`);
},
showMultiple(){
showMultiple () {
this.isShowMultiple = !this.isShowMultiple;
}
}
@ -151,19 +151,19 @@ export default {
margin: 0;
padding: 0;
}
.remove-text{
.remove-text {
text-align: center;
padding: 20px;
font-size: 24px;
}
.show-multiple{
.show-multiple {
display: flex;
.multiple-player{
.multiple-player {
width: calc(100% / 4);
margin: 20px;
}
}
.player-btns{
.player-btns {
width: 100%;
display: flex;
justify-content: center;
@ -183,18 +183,18 @@ export default {
cursor: pointer;
}
}
.source-box{
.source-box {
padding: 5px 10px;
margin-bottom: 10px;
.source-label{
.source-label {
margin-right: 20px;
font-size: 16px;
display: block;
}
#source{
#source {
margin-top: 10px;
}
.source-input{
.source-input {
margin-top: 10px;
padding: 5px 10px;
width: 80%;

View File

@ -1,6 +1,6 @@
{
"name": "vue-aliplayer-v2",
"version": "1.3.0",
"version": "1.3.1",
"author": "yxs",
"description": "感谢每一位支持开源的朋友. 这是一个基于Alipayer 开发并封装成vue组件的集成播放器.可播放rtmp,m3u8,mp4....视频.除支持直播流与点播的基础功能外,也支持视频的加密播放、清晰度切换、直播时移等业务场景",
"main": "lib/vue-aliplayer-v2.umd.min.js",

View File

@ -5,7 +5,7 @@
export default {
name: 'VueAliplayerV2',
props: {
forbidFastForward:{
forbidFastForward: { //
required: false,
type: [Boolean],
default: false
@ -20,22 +20,22 @@ export default {
type: [String],
default: null
},
cssLink:{ //css
cssLink: { //css
required: false,
type: [String],
default: `https://g.alicdn.com/de/prismplayer/2.9.7/skins/default/aliplayer-min.css`
default: `https://g.alicdn.com/de/prismplayer/2.9.20/skins/default/aliplayer-min.css`
},
scriptSrc:{ //js
scriptSrc: { //js
required: false,
type: [String],
default: `https://g.alicdn.com/de/prismplayer/2.9.7/aliplayer-min.js`
default: `https://g.alicdn.com/de/prismplayer/2.9.20/aliplayer-min.js`
}
},
data () {
return {
player: null, //
playerId: `player-${Math.random().toString(36).substr(2).toLocaleUpperCase()}`,
config:{
config: {
id: null, //ID
width: '100%',
autoplay: true,
@ -43,7 +43,7 @@ export default {
//,
// source: 'rtmp://182.145.195.238:1935/hls/1194076936807170050',
},
events:[
events: [
/**
* 播放器视频初始化按钮渲染完毕
* 播放器UI初始设置需要此事件后触发避免UI被初始化所覆盖
@ -125,49 +125,49 @@ export default {
],
};
},
watch:{
source(){ //
watch: {
source () { //
this.init();
},
forbidFastForward(){
forbidFastForward () {
this.init();
},
options:{ //,
handler(){
options: { //,
handler () {
this.init();
},
deep: true
}
},
mounted () {
this.$nextTick(()=>{
this.$nextTick(() => {
this.init();
});
},
updated(){
updated () {
//
this.$nextTick(()=>{
this.$nextTick(() => {
this.init();
});
},
methods: {
handlerFastForward(){
handlerFastForward () {
},
/**
* 创建script和css
* 加载Alipayer的SDK
*/
init(){
init () {
const linkID = 'app__aliplayer-min-css';
const scriptID = 'app__aliplayer-min-js';
const head = document.getElementsByTagName('head');
const html = document.getElementsByTagName('html');
let scriptTag = document.getElementById(scriptID);
let linkIDTag = document.getElementById(linkID);
if(!linkIDTag) {
if (!linkIDTag) {
// console.log('linkIDTag');
const link = document.createElement('link');
link.type = 'text/css';
@ -177,7 +177,7 @@ export default {
// link.className = linkID;
head[0].appendChild(link);
}
if(!scriptTag) {
if (!scriptTag) {
// console.log('scriptTag');
scriptTag = document.createElement('script');
scriptTag.type = "text/javascript";
@ -198,46 +198,41 @@ export default {
* 创建播放器
* @description SDK文档地址:https://help.aliyun.com/document_detail/125572.html?spm=a2c4g.11186623.6.1084.131d1c4cJT7o5Z
*/
initPlayer(){
if(typeof window.Aliplayer != 'undefined') {
initPlayer () {
if (typeof window.Aliplayer != 'undefined') {
const options = this.deepCloneObject(this.options);
if(options){
if (options) {
for (const key in options) {
this.config[key] = options[key];
}
}
if(this.source) this.config.source = this.source; //
if (this.source) this.config.source = this.source; //
this.config.id = this.playerId; //id
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)=>{
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);
this.$emit(this.events[ev], e);
});
}
if(this.forbidFastForward){
let last = 0,max_time=0;
this.player.on('timeupdate',function(){
let current = this.getCurrentTime();
if(current - last > 2) {
//
if (this.forbidFastForward) {
let last = 0, max_time = 0;
this.player.on('timeupdate', function () {
let current = this.getCurrentTime();
if (current - last > 2) {
this.seek(last);
} else {
last = current;
if(last >= max_time){
max_time=last;
if (last >= max_time) {
max_time = last;
}
}
})
}
});
}
//off
//player.off('ready',handleReady);
@ -247,14 +242,14 @@ export default {
/**
* @return player 实例
*/
getPlayer(){
getPlayer () {
return this.player;
},
/**
* 播放视频
*/
play(){
play () {
// console.log(``);
this.player && this.player.play();
},
@ -262,7 +257,7 @@ export default {
/**
* 暂停视频
*/
pause(){
pause () {
// console.log(``);
this.player && this.player.pause();
},
@ -270,7 +265,7 @@ export default {
/**
* 重播视频
*/
replay(){
replay () {
// console.log(``);
this.player && this.player.replay();
},
@ -280,7 +275,7 @@ export default {
* @param time
* @return player
*/
seek(time){
seek (time) {
// console.log(`time${time}`);
this.player && this.player.seek(time);
},
@ -289,7 +284,7 @@ export default {
* 获取当前的播放时刻返回的单位为秒
* @return player
*/
getCurrentTime(){
getCurrentTime () {
// console.log(`${this.player && this.player.getCurrentTime()}`);
return this.player && this.player.getCurrentTime();
},
@ -298,7 +293,7 @@ export default {
* 获取视频总时长返回的单位为秒这个需要在视频加载完成以后才可以获取到可以在play事件后获取
* @return player
*/
getDuration(){
getDuration () {
// console.log(`${this.player && this.player.getDuration()}`);
return this.player && this.player.getDuration();
},
@ -307,7 +302,7 @@ export default {
* 获取当前的音量返回值为0-1的实数ios和部分android会失效
* @return player
*/
getVolume(){
getVolume () {
// console.log(`${this.player && this.player.getVolume()}`);
return this.player && this.player.getVolume();
},
@ -316,7 +311,7 @@ export default {
* 设置音量vol为0-1的实数ios和部分android会失效
* @return player
*/
setVolume(v){
setVolume (v) {
// console.log(`vol${v}`);
this.player && this.player.setVolume(v);
},
@ -326,7 +321,7 @@ export default {
* 暂不支持直播rtmp流切换
* @return player
*/
loadByUrl(url, time){
loadByUrl (url, time) {
// console.log(`url${url}time${time}`);
this.player && this.player.loadByUrl(url, time);
},
@ -336,7 +331,7 @@ export default {
* @param vid 视频id
* @param 播放凭证
*/
replayByVidAndPlayAuth(vid, playauth){
replayByVidAndPlayAuth (vid, playauth) {
// console.log(`replayByVidAndPlayAuth vid${vid}playauth${playauth}`);
this.player && this.player.replayByVidAndPlayAuth(vid, playauth);
},
@ -347,7 +342,7 @@ export default {
* @param 播放凭证
* @description 仅MPS用户时使用 仅MPS用户时使用 参数顺序为vidaccIdaccSecretstsTokenauthInfodomainRegion
*/
replayByVidAndAuthInfo(vid, accId, accSecret, stsToken, authInfo, domainRegion){
replayByVidAndAuthInfo (vid, accId, accSecret, stsToken, authInfo, domainRegion) {
// console.log(`replayByVidAndAuthInfo vidaccIdaccSecretstsTokenauthInfodomainRegion`,vid, accId, accSecret, stsToken, authInfo, domainRegion);
this.player && this.player.replayByVidAndAuthInfo(vid, accId, accSecret, stsToken, authInfo, domainRegion);
},
@ -358,7 +353,7 @@ export default {
* @param h 宽度
* @description chrome浏览器下flash播放器分别不能小于397x297
*/
setPlayerSize(w, h){
setPlayerSize (w, h) {
// console.log(` :${w},:${h}`);
this.player && this.player.setPlayerSize(w, h);
},
@ -370,7 +365,7 @@ export default {
* @param h 宽度
* @description {namespeedButtonaligntrx10y23}
*/
setSpeed(speed){
setSpeed (speed) {
// console.log(`:${speed}`);
this.player && this.player.setSpeed(speed);
},
@ -381,7 +376,7 @@ export default {
* @param height 高度
* @param rate 截图质量
*/
setSanpshotProperties(width, height, rate){
setSanpshotProperties (width, height, rate) {
// console.log(`:`,width, height, rate);
this.player && this.player.setSanpshotProperties(width, height, rate);
},
@ -389,7 +384,7 @@ export default {
/**
* 播放器全屏仅H5支持
*/
requestFullScreen(){
requestFullScreen () {
// console.log(`H5`);
this.player && this.player.fullscreenService && this.player.fullscreenService.requestFullScreen();
},
@ -397,7 +392,7 @@ export default {
/**
* 播放器退出全屏iOS调用无效仅H5支持
*/
cancelFullScreen(){
cancelFullScreen () {
// console.log(`H5`);
this.player && this.player.fullscreenService && this.player.fullscreenService.cancelFullScreen();
},
@ -405,7 +400,7 @@ export default {
/**
* 获取播放器全屏状态仅H5支持
*/
getIsFullScreen(){
getIsFullScreen () {
// console.log(`H5`,this.player && this.player.fullscreenService && this.player && this.player.fullscreenService.getIsFullScreen());
return this.player && this.player.fullscreenService && this.player.fullscreenService.getIsFullScreen();
},
@ -414,7 +409,7 @@ export default {
* 获取播放器状态包含的值,
* @returns init ready loading play pause playing waiting error ended
*/
getStatus(){
getStatus () {
// console.log(``,this.player && this.player.fullscreenService && this.player && this.player.fullscreenService.getStatus());
return this.player && this.player.getStatus();
},
@ -425,7 +420,7 @@ export default {
* @param endTime 结束时间
* @description 例子player.liveShiftSerivce.setLiveTimeRange(2018/01/04 20:00:00)
*/
setLiveTimeRange(beginTime, endTime){
setLiveTimeRange (beginTime, endTime) {
// console.log(`:${beginTime},:${endTime}使`);
this.player && this.player.liveShiftSerivce && this.player.liveShiftSerivce.setLiveTimeRange(beginTime, endTime);
},
@ -435,7 +430,7 @@ export default {
* @param rotate 旋转角度
* @description 例如: setRotate(90)详情参见旋转和镜像
*/
setRotate(rotate){
setRotate (rotate) {
// console.log(`:${rotate}`);
this.player && this.player.setRotate(rotate);
},
@ -444,7 +439,7 @@ export default {
* 获取旋转角度详情参见旋转和镜像
* @return rotate 旋转角度
*/
getRotate(){
getRotate () {
// console.log(`:${this.player && this.player.getRotate()}`);
return this.player && this.player.getRotate();
},
@ -454,7 +449,7 @@ export default {
* @param image 镜像类型 可选值为horizon,vertical
* @description 例如: setImage(horizon)详情参见旋转和镜像
*/
setImage(image){
setImage (image) {
// console.log(`:${image}`);
this.player && this.player.setImage(image);
},
@ -462,7 +457,7 @@ export default {
/**
* 播放器销毁
*/
dispose(){
dispose () {
// console.log(``);
this.player && this.player.dispose();
},
@ -471,7 +466,7 @@ export default {
* 设置封面
* @param cover 封面地址
*/
setCover(cover){
setCover (cover) {
// console.log(`:${cover}`);
this.player && this.player.setCover(cover);
},
@ -480,7 +475,7 @@ export default {
* 设置封面
* @param markers 设置打点数据
*/
setProgressMarkers(markers){
setProgressMarkers (markers) {
// console.log(`markers:${markers}`);
this.player && this.player.setProgressMarkers(markers);
},
@ -489,7 +484,7 @@ export default {
* 设置试看时间单位为秒详情参见
* @param time 试看时间
*/
setPreviewTime(time){
setPreviewTime (time) {
// console.log(`:${time}`);
this.player && this.player.setPreviewTime(time);
},
@ -498,7 +493,7 @@ export default {
* 获取试看时间
* @return rotate 旋转角度
*/
getPreviewTime(){
getPreviewTime () {
// console.log(`:${this.player && this.player.getPreviewTime()}`);
return this.player && this.player.getPreviewTime();
},
@ -506,7 +501,7 @@ export default {
/**
* 是否试看
*/
isPreview(){
isPreview () {
// console.log(``);
this.player && this.player.isPreview();
},
@ -515,8 +510,8 @@ export default {
* @param ev 事件名
* @param handle 回调方法
*/
off(ev,handle){
this.player && this.player.off(ev,handle);
off (ev, handle) {
this.player && this.player.off(ev, handle);
},
@ -543,7 +538,7 @@ export default {
}
},
beforeDestroy(){ //
beforeDestroy () { //
this.dispose(); //(,,bug)
// const head = document.querySelector('head');
// const cssNodes = document.querySelectorAll(`link.app__aliplayer-min-css`);