aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils
diff options
context:
space:
mode:
Diffstat (limited to 'shared/extra-utils')
-rw-r--r--shared/extra-utils/videos/live.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/shared/extra-utils/videos/live.ts b/shared/extra-utils/videos/live.ts
index 346134969..522beb8bc 100644
--- a/shared/extra-utils/videos/live.ts
+++ b/shared/extra-utils/videos/live.ts
@@ -177,10 +177,20 @@ async function checkLiveCleanup (server: ServerInfo, videoUUID: string, resoluti
177 expect(files).to.contain('segments-sha256.json') 177 expect(files).to.contain('segments-sha256.json')
178} 178}
179 179
180async function getPlaylistsCount (server: ServerInfo, videoUUID: string) {
181 const basePath = buildServerDirectory(server, 'streaming-playlists')
182 const hlsPath = join(basePath, 'hls', videoUUID)
183
184 const files = await readdir(hlsPath)
185
186 return files.filter(f => f.endsWith('.m3u8')).length
187}
188
180// --------------------------------------------------------------------------- 189// ---------------------------------------------------------------------------
181 190
182export { 191export {
183 getLive, 192 getLive,
193 getPlaylistsCount,
184 waitUntilLivePublished, 194 waitUntilLivePublished,
185 updateLive, 195 updateLive,
186 waitUntilLiveStarts, 196 waitUntilLiveStarts,