@saooti/octopus-sdk 39.2.2 → 39.2.4
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
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
/>
|
|
8
8
|
<div class="video-wrapper">
|
|
9
9
|
<PlayerVideoDigiteka v-if="!playerLive" :video-id="videoId" />
|
|
10
|
-
<PlayerVideoHls v-else :hls-url="
|
|
10
|
+
<PlayerVideoHls v-else :hls-url="hlsVideoUrl" />
|
|
11
11
|
</div>
|
|
12
12
|
</template>
|
|
13
13
|
</teleport>
|
|
@@ -36,7 +36,7 @@ export default defineComponent({
|
|
|
36
36
|
computed: {
|
|
37
37
|
...mapState(useApiStore, ["hlsUrl"]),
|
|
38
38
|
...mapState(usePlayerStore, ["playerVideo", "playerLive", "playerPodcast"]),
|
|
39
|
-
|
|
39
|
+
hlsVideoUrl(): string {
|
|
40
40
|
if (!this.playerLive) {
|
|
41
41
|
return "";
|
|
42
42
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<template v-if="isLiveReadyToRecord">
|
|
20
20
|
<PlayerVideoHls
|
|
21
21
|
v-if="recordingLive"
|
|
22
|
-
:hls-url="
|
|
22
|
+
:hls-url="hlsVideoUrl"
|
|
23
23
|
:responsive="true"
|
|
24
24
|
/>
|
|
25
25
|
<div
|
|
@@ -182,7 +182,7 @@ export default defineComponent({
|
|
|
182
182
|
"PENDING" === this.podcastConference.status)
|
|
183
183
|
);
|
|
184
184
|
},
|
|
185
|
-
|
|
185
|
+
hlsVideoUrl(): string {
|
|
186
186
|
if (!this.recordingLive || !this.podcastConference) {
|
|
187
187
|
return "";
|
|
188
188
|
}
|
package/src/locale/fr.ts
CHANGED
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"All productors": "Tous les producteurs",
|
|
52
52
|
"All emissions": "Toutes les émissions",
|
|
53
53
|
"Filter by keyword : ": "Rechercher : ",
|
|
54
|
-
"Look for participant name": "Rechercher un intervenant
|
|
55
|
-
"Look for productor name": "Rechercher un producteur
|
|
56
|
-
"Look for emission name": "Rechercher une émission
|
|
57
|
-
"Look for podcast name": "Rechercher un épisode
|
|
54
|
+
"Look for participant name": "Rechercher un intervenant",
|
|
55
|
+
"Look for productor name": "Rechercher un producteur",
|
|
56
|
+
"Look for emission name": "Rechercher une émission",
|
|
57
|
+
"Look for podcast name": "Rechercher un épisode",
|
|
58
58
|
"Type string to filter by organisation": "Filtrer les producteurs par nom",
|
|
59
59
|
"Type string to filter by emission": "Filtrer les émissions par titre",
|
|
60
60
|
"Type string to filter by podcast": "Filtrer les épisodes par titre",
|
|
@@ -222,7 +222,7 @@ export default {
|
|
|
222
222
|
Playlists: "Playlists",
|
|
223
223
|
Playlist: "Playlist",
|
|
224
224
|
"All playlists": "Toutes les playlists",
|
|
225
|
-
"Look for playlist name": "Rechercher une playlist
|
|
225
|
+
"Look for playlist name": "Rechercher une playlist",
|
|
226
226
|
"Number playlists": "{nb} playlists",
|
|
227
227
|
"Empty playlist": "Playlist vide",
|
|
228
228
|
"Playlist doesn't exist": "La playlist demandée n'existe pas",
|