1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
| <!--
| * @Descripttion: xgplayer二次封装
| * @version: 1.1
| * @Author: sakuya
| * @Date: 2021年11月29日12:10:06
| * @LastEditors: sakuya
| * @LastEditTime: 2022年5月30日21:02:50
| -->
|
| <template>
| <div class="sc-video" ref="scVideo"></div>
| </template>
|
| <script>
| import Player from 'xgplayer'
| import HlsPlayer from 'xgplayer-hls'
|
| export default {
| props: {
| src: { type: String, required: true, default: "" },
| autoplay: { type: Boolean, default: false },
| controls: { type: Boolean, default: true },
| loop: { type: Boolean, default: false },
| isLive: { type: Boolean, default: false },
| options: { type: Object, default: () => {} }
| },
| data() {
| return {
| player: null
| }
| },
| watch:{
| src(val){
| if(this.player.hasStart){
| this.player.src = val
| }else{
| this.player.start(val)
| }
| }
| },
| mounted() {
| if(this.isLive){
| this.initHls()
| }else{
| this.init()
| }
| },
| methods: {
| init(){
| this.player = new Player({
| el: this.$refs.scVideo,
| url: this.src,
| autoplay: this.autoplay,
| loop: this.loop,
| controls: this.controls,
| fluid: true,
| lang: 'zh-cn',
| ...this.options
| })
| },
| initHls(){
| this.player = new HlsPlayer({
| el: this.$refs.scVideo,
| url: this.src,
| autoplay: this.autoplay,
| loop: this.loop,
| controls: this.controls,
| fluid: true,
| isLive: true,
| ignores: ['time','progress'],
| lang: 'zh-cn',
| ...this.options
| })
| }
| }
| }
| </script>
|
| <style scoped>
| .sc-video:deep(.danmu) > * {color: #fff;font-size:20px;font-weight:bold;text-shadow:1px 1px 0 #000,-1px -1px 0 #000,-1px 1px 0 #000,1px -1px 0 #000;}
| .sc-video:deep(.xgplayer-controls) {background-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));}
| .sc-video:deep(.xgplayer-progress-tip) {border:0;color: #fff;background: rgba(0,0,0,.5);line-height: 25px;padding: 0 10px;border-radius: 25px;}
| .sc-video:deep(.xgplayer-enter-spinner) {width: 50px;height: 50px;}
| </style>
|
|