@saooti/octopus-sdk 36.0.42 → 36.0.43
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/package.json +1 -1
- package/src/components/misc/player/Player.vue +4 -1
- package/src/components/misc/player/PlayerCompact.vue +1 -0
- package/src/components/misc/player/PlayerLarge.vue +1 -0
- package/src/components/misc/player/PlayerProgressBar.vue +0 -1
- package/src/stores/ParamSdkStore.ts +10 -10
package/package.json
CHANGED
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
:percent-live-progress="percentLiveProgress"
|
|
27
27
|
:duration-live-position="durationLivePosition"
|
|
28
28
|
:listen-time="listenTime"
|
|
29
|
+
:hlsReady="hlsReady"
|
|
29
30
|
@stopPlayer="stopPlayer"
|
|
30
31
|
@changePlayerLargeVersion="playerUpdateLargeVersion(true)"
|
|
31
32
|
/>
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
:percent-live-progress="percentLiveProgress"
|
|
39
40
|
:duration-live-position="durationLivePosition"
|
|
40
41
|
:listen-time="listenTime"
|
|
42
|
+
:hlsReady="hlsReady"
|
|
41
43
|
@stopPlayer="stopPlayer"
|
|
42
44
|
@changePlayerLargeVersion="playerUpdateLargeVersion(false)"
|
|
43
45
|
/>
|
|
@@ -74,7 +76,8 @@ export default defineComponent({
|
|
|
74
76
|
durationLivePosition: 0 as number,
|
|
75
77
|
displayAlertBar: false as boolean,
|
|
76
78
|
comments: [] as Array<CommentPodcast>,
|
|
77
|
-
audioUrlToPlay: "" as string
|
|
79
|
+
audioUrlToPlay: "" as string,
|
|
80
|
+
hlsReady: false as boolean,
|
|
78
81
|
};
|
|
79
82
|
},
|
|
80
83
|
computed: {
|
|
@@ -106,6 +106,7 @@ export default defineComponent({
|
|
|
106
106
|
percentLiveProgress: { default: 0 , type: Number},
|
|
107
107
|
durationLivePosition: { default: 0 , type: Number},
|
|
108
108
|
listenTime: { default: 0 , type: Number},
|
|
109
|
+
hlsReady: { default: false , type: Boolean},
|
|
109
110
|
},
|
|
110
111
|
|
|
111
112
|
emits: ['stopPlayer', 'update:notListenTime', 'changePlayerLargeVersion'],
|
|
@@ -115,6 +115,7 @@ export default defineComponent({
|
|
|
115
115
|
percentLiveProgress: { default: 0 , type: Number},
|
|
116
116
|
durationLivePosition: { default: 0 , type: Number},
|
|
117
117
|
listenTime: { default: 0 , type: Number},
|
|
118
|
+
hlsReady: { default: false , type: Boolean},
|
|
118
119
|
},
|
|
119
120
|
|
|
120
121
|
emits: ['stopPlayer', 'update:notListenTime', 'changePlayerLargeVersion'],
|
|
@@ -30,7 +30,6 @@ export default defineComponent({
|
|
|
30
30
|
},
|
|
31
31
|
props: {
|
|
32
32
|
classProgress:{ default: "", type: String},
|
|
33
|
-
hlsReady: { default: false, type: Boolean},
|
|
34
33
|
showTimeline: { default: false, type: Boolean},
|
|
35
34
|
comments: { default: ()=>[], type: Array as ()=>Array<CommentPodcast>},
|
|
36
35
|
displayAlertBar: { default: false, type: Boolean},
|
|
@@ -12,7 +12,7 @@ const state:ParamStore = {
|
|
|
12
12
|
isPlaylist: false,
|
|
13
13
|
isProduction: false,
|
|
14
14
|
isContribution: true,
|
|
15
|
-
ApiUri: 'https://api.
|
|
15
|
+
ApiUri: 'https://api.preprod.saooti.org/',
|
|
16
16
|
podcastmaker: false,
|
|
17
17
|
buttonPlus: true,
|
|
18
18
|
allCategories: [],
|
|
@@ -26,8 +26,8 @@ const state:ParamStore = {
|
|
|
26
26
|
SharePlayer: true,
|
|
27
27
|
ShareButtons: true,
|
|
28
28
|
ShareDistribution: true,
|
|
29
|
-
MiniplayerUri: 'https://playerbeta.
|
|
30
|
-
hlsUri: 'https://hls.
|
|
29
|
+
MiniplayerUri: 'https://playerbeta.preprod.saooti.org/',
|
|
30
|
+
hlsUri: 'https://hls.live.preprod.saooti.org/',
|
|
31
31
|
mainRubrique: 0,
|
|
32
32
|
resourceUrl: undefined,
|
|
33
33
|
podcastItemShowEmission: false,
|
|
@@ -79,13 +79,13 @@ const state:ParamStore = {
|
|
|
79
79
|
userName: '',
|
|
80
80
|
},
|
|
81
81
|
octopusApi: {
|
|
82
|
-
url: 'https://api.
|
|
83
|
-
commentsUrl: 'https://comments.
|
|
84
|
-
imageUrl:'https://imageproxy.
|
|
85
|
-
studioUrl: 'https://studio.
|
|
86
|
-
playerUrl: 'https://playerbeta.
|
|
87
|
-
speechToTextUrl:'https://speech2text.
|
|
88
|
-
recoUrl: 'https://reco.
|
|
82
|
+
url: 'https://api.preprod.saooti.org/',
|
|
83
|
+
commentsUrl: 'https://comments.preprod.saooti.org/',
|
|
84
|
+
imageUrl:'https://imageproxy.preprod.saooti.org/',
|
|
85
|
+
studioUrl: 'https://studio.preprod.saooti.org/',
|
|
86
|
+
playerUrl: 'https://playerbeta.preprod.saooti.org/',
|
|
87
|
+
speechToTextUrl:'https://speech2text.preprod.saooti.org/',
|
|
88
|
+
recoUrl: 'https://reco.preprod.saooti.org/',
|
|
89
89
|
organisationId: undefined,
|
|
90
90
|
rubriqueIdFilter: undefined,
|
|
91
91
|
},
|