@saooti/octopus-sdk 31.0.53 → 31.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +1 -1
- package/src/components/mixins/player/playerLive.ts +29 -19
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -14,6 +14,7 @@ export const playerLive = defineComponent({
|
|
|
14
14
|
lastSend: 0 as number,
|
|
15
15
|
hlsReady: false as boolean,
|
|
16
16
|
downloadId: null as string|null,
|
|
17
|
+
audioElement: null as HTMLAudioElement|null
|
|
17
18
|
};
|
|
18
19
|
},
|
|
19
20
|
computed: {
|
|
@@ -33,14 +34,36 @@ export const playerLive = defineComponent({
|
|
|
33
34
|
this.live.conferenceId +
|
|
34
35
|
'/index.m3u8';
|
|
35
36
|
try {
|
|
36
|
-
|
|
37
|
+
this.audioElement = (document.getElementById('audio-player') as HTMLAudioElement);
|
|
38
|
+
if (this.audioElement && this.audioElement.canPlayType('application/vnd.apple.mpegurl')) {
|
|
39
|
+
this.audioElement.src = hlsStreamUrl;
|
|
40
|
+
await this.initLiveDownloadId();
|
|
41
|
+
await (this.audioElement as HTMLAudioElement).play();
|
|
42
|
+
this.onPlay();
|
|
43
|
+
}else{
|
|
44
|
+
await this.initHls(hlsStreamUrl);
|
|
45
|
+
}
|
|
37
46
|
} catch (error) {
|
|
38
|
-
console.log(error);
|
|
39
47
|
setTimeout(() => {
|
|
40
48
|
this.playLive();
|
|
41
49
|
}, 1000);
|
|
42
50
|
}
|
|
43
51
|
},
|
|
52
|
+
async initLiveDownloadId(){
|
|
53
|
+
if(!this.live){ return;}
|
|
54
|
+
let downloadId = null;
|
|
55
|
+
try {
|
|
56
|
+
downloadId = await octopusApi.putDataPublic<string | null>(0, 'podcast/prepare/live/'+this.live.livePodcastId, undefined);
|
|
57
|
+
await octopusApi.fetchDataPublicWithParams<string | null>(0,'podcast/download/live/' + this.live.livePodcastId+".m3u8",{
|
|
58
|
+
'downloadId': null!==downloadId ? downloadId : undefined,
|
|
59
|
+
'origin':'octopus',
|
|
60
|
+
'distributorId':this.$store.state.authentication.organisationId
|
|
61
|
+
});
|
|
62
|
+
this.setDownloadId(downloadId);
|
|
63
|
+
} catch (error) {
|
|
64
|
+
console.log('ERROR downloadId');
|
|
65
|
+
}
|
|
66
|
+
},
|
|
44
67
|
async initHls(hlsStreamUrl: string): Promise<void> {
|
|
45
68
|
return new Promise<void>(async(resolve, reject) => {
|
|
46
69
|
if(null === Hls){
|
|
@@ -55,7 +78,7 @@ export const playerLive = defineComponent({
|
|
|
55
78
|
if (!Hls.isSupported()) {
|
|
56
79
|
reject('Hls is not supported ! ');
|
|
57
80
|
}
|
|
58
|
-
|
|
81
|
+
const hls = new Hls();
|
|
59
82
|
/* if(this.$store.state.authentication.isAuthenticated && this.$store.state.oAuthParam.accessToken){
|
|
60
83
|
hls = new Hls({xhrSetup:
|
|
61
84
|
(xhr: XMLHttpRequest) => {
|
|
@@ -65,23 +88,10 @@ export const playerLive = defineComponent({
|
|
|
65
88
|
);
|
|
66
89
|
} */
|
|
67
90
|
hls.on(Hls.Events.MANIFEST_PARSED, async () => {
|
|
68
|
-
|
|
69
|
-
let downloadId = null;
|
|
70
|
-
try {
|
|
71
|
-
downloadId = await octopusApi.putDataPublic<string | null>(0, 'podcast/prepare/live/'+this.live.livePodcastId, undefined);
|
|
72
|
-
await octopusApi.fetchDataPublicWithParams<string | null>(0,'podcast/download/live/' + this.live.livePodcastId+".m3u8",{
|
|
73
|
-
'downloadId': null!==downloadId ? downloadId : undefined,
|
|
74
|
-
'origin':'octopus',
|
|
75
|
-
'distributorId':this.$store.state.authentication.organisationId
|
|
76
|
-
});
|
|
77
|
-
this.setDownloadId(downloadId);
|
|
78
|
-
} catch (error) {
|
|
79
|
-
console.log('ERROR downloadId');
|
|
80
|
-
}
|
|
91
|
+
await this.initLiveDownloadId();
|
|
81
92
|
this.hlsReady = true;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
await (audio as HTMLAudioElement).play();
|
|
93
|
+
hls.attachMedia((this.audioElement as HTMLAudioElement));
|
|
94
|
+
await (this.audioElement as HTMLAudioElement).play();
|
|
85
95
|
this.onPlay();
|
|
86
96
|
resolve();
|
|
87
97
|
});
|