PeerTube/shared/extra-utils/videos/live.ts

143 lines
3.6 KiB
TypeScript
Raw Normal View History

2020-10-30 15:09:00 +01:00
import * as ffmpeg from 'fluent-ffmpeg'
2020-11-03 15:33:30 +01:00
import { omit } from 'lodash'
import { LiveVideo, LiveVideoCreate, LiveVideoUpdate, VideoDetails, VideoState } from '@shared/models'
2020-10-30 15:09:00 +01:00
import { buildAbsoluteFixturePath, wait } from '../miscs/miscs'
import { makeGetRequest, makePutBodyRequest, makeUploadRequest } from '../requests/requests'
2020-11-02 15:43:44 +01:00
import { getVideoWithToken } from './videos'
2020-10-30 15:09:00 +01:00
function getLive (url: string, token: string, videoId: number | string, statusCodeExpected = 200) {
const path = '/api/v1/videos/live'
return makeGetRequest({
url,
token,
path: path + '/' + videoId,
statusCodeExpected
})
}
function updateLive (url: string, token: string, videoId: number | string, fields: LiveVideoUpdate, statusCodeExpected = 204) {
const path = '/api/v1/videos/live'
return makePutBodyRequest({
url,
token,
path: path + '/' + videoId,
fields,
statusCodeExpected
})
}
function createLive (url: string, token: string, fields: LiveVideoCreate, statusCodeExpected = 200) {
const path = '/api/v1/videos/live'
2020-11-02 15:43:44 +01:00
const attaches: any = {}
if (fields.thumbnailfile) attaches.thumbnailfile = fields.thumbnailfile
if (fields.previewfile) attaches.previewfile = fields.previewfile
const updatedFields = omit(fields, 'thumbnailfile', 'previewfile')
2020-10-30 15:09:00 +01:00
return makeUploadRequest({
url,
path,
token,
attaches,
2020-11-02 15:43:44 +01:00
fields: updatedFields,
2020-10-30 15:09:00 +01:00
statusCodeExpected
})
}
2020-11-03 15:33:30 +01:00
async function sendRTMPStreamInVideo (url: string, token: string, videoId: number | string, onErrorCb?: Function) {
const res = await getLive(url, token, videoId)
const videoLive = res.body as LiveVideo
return sendRTMPStream(videoLive.rtmpUrl, videoLive.streamKey, onErrorCb)
}
function sendRTMPStream (rtmpBaseUrl: string, streamKey: string, onErrorCb?: Function) {
2020-10-30 15:09:00 +01:00
const fixture = buildAbsoluteFixturePath('video_short.mp4')
const command = ffmpeg(fixture)
command.inputOption('-stream_loop -1')
command.inputOption('-re')
command.outputOption('-c copy')
command.outputOption('-f flv')
const rtmpUrl = rtmpBaseUrl + '/' + streamKey
command.output(rtmpUrl)
command.on('error', err => {
if (err?.message?.includes('Exiting normally')) return
2020-11-03 15:33:30 +01:00
if (onErrorCb) onErrorCb(err)
2020-10-30 15:09:00 +01:00
})
if (process.env.DEBUG) {
command.on('stderr', data => console.log(data))
}
command.run()
return command
}
2020-11-03 15:33:30 +01:00
function waitFfmpegUntilError (command: ffmpeg.FfmpegCommand, successAfterMS = 10000) {
return new Promise((res, rej) => {
command.on('error', err => {
return rej(err)
})
setTimeout(() => {
res()
}, successAfterMS)
})
}
async function testFfmpegStreamError (url: string, token: string, videoId: number | string, shouldHaveError: boolean) {
const command = await sendRTMPStreamInVideo(url, token, videoId)
let error: Error
try {
await waitFfmpegUntilError(command, 10000)
} catch (err) {
error = err
}
await stopFfmpeg(command)
if (shouldHaveError && !error) throw new Error('Ffmpeg did not have an error')
if (!shouldHaveError && error) throw error
}
2020-10-30 15:09:00 +01:00
async function stopFfmpeg (command: ffmpeg.FfmpegCommand) {
command.kill('SIGINT')
await wait(500)
}
async function waitUntilLiveStarts (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.state.id === VideoState.WAITING_FOR_LIVE)
}
// ---------------------------------------------------------------------------
export {
getLive,
updateLive,
waitUntilLiveStarts,
createLive,
2020-11-03 15:33:30 +01:00
testFfmpegStreamError,
2020-10-30 15:09:00 +01:00
stopFfmpeg,
2020-11-03 15:33:30 +01:00
sendRTMPStreamInVideo,
waitFfmpegUntilError,
2020-10-30 15:09:00 +01:00
sendRTMPStream
}