X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fextra-utils%2Fvideos%2Flive.ts;h=df73700081cd8be3adbbf18caa9d380fc2788fe7;hb=5e7b5fc864e7598615dadc8130fae9d0f0f92241;hp=cbcfc09e4d268ff5b42052f05bf5ba086673a081;hpb=0d8de2756fdc43be61a82a96c17d12ee52ba0143;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/extra-utils/videos/live.ts b/shared/extra-utils/videos/live.ts index cbcfc09e4..df7370008 100644 --- a/shared/extra-utils/videos/live.ts +++ b/shared/extra-utils/videos/live.ts @@ -98,7 +98,7 @@ function sendRTMPStream (rtmpBaseUrl: string, streamKey: string, fixtureName = ' } function waitFfmpegUntilError (command: ffmpeg.FfmpegCommand, successAfterMS = 10000) { - return new Promise((res, rej) => { + return new Promise((res, rej) => { command.on('error', err => { return rej(err) }) @@ -119,7 +119,7 @@ async function testFfmpegStreamError (command: ffmpeg.FfmpegCommand, shouldHaveE let error: Error try { - await waitFfmpegUntilError(command, 15000) + await waitFfmpegUntilError(command, 25000) } catch (err) { error = err } @@ -140,6 +140,10 @@ function waitUntilLivePublished (url: string, token: string, videoId: number | s return waitUntilLiveState(url, token, videoId, VideoState.PUBLISHED) } +function waitUntilLiveWaiting (url: string, token: string, videoId: number | string) { + return waitUntilLiveState(url, token, videoId, VideoState.WAITING_FOR_LIVE) +} + function waitUntilLiveEnded (url: string, token: string, videoId: number | string) { return waitUntilLiveState(url, token, videoId, VideoState.LIVE_ENDED) } @@ -160,6 +164,17 @@ async function waitUntilLiveState (url: string, token: string, videoId: number | } while (video.state.id !== state) } +async function waitUntilLiveSaved (url: string, token: string, videoId: number | string) { + let video: VideoDetails + + do { + const res = await getVideoWithToken(url, token, videoId) + video = res.body + + await wait(500) + } while (video.isLive === true && video.state.id !== VideoState.PUBLISHED) +} + async function checkLiveCleanup (server: ServerInfo, videoUUID: string, resolutions: number[] = []) { const basePath = buildServerDirectory(server, 'streaming-playlists') const hlsPath = join(basePath, 'hls', videoUUID) @@ -199,6 +214,7 @@ async function getPlaylistsCount (server: ServerInfo, videoUUID: string) { export { getLive, getPlaylistsCount, + waitUntilLiveSaved, waitUntilLivePublished, updateLive, createLive, @@ -206,6 +222,7 @@ export { checkLiveCleanup, waitUntilLiveSegmentGeneration, stopFfmpeg, + waitUntilLiveWaiting, sendRTMPStreamInVideo, waitUntilLiveEnded, waitFfmpegUntilError,