2021-08-27 14:32:44 +02:00
|
|
|
import ffmpeg, { FfmpegCommand } from 'fluent-ffmpeg'
|
2021-12-17 11:58:15 +01:00
|
|
|
import { buildAbsoluteFixturePath, wait } from '@shared/core-utils'
|
2021-07-16 09:47:51 +02:00
|
|
|
import { PeerTubeServer } from '../server/server'
|
2020-11-03 15:33:30 +01:00
|
|
|
|
2021-08-06 10:39:40 +02:00
|
|
|
function sendRTMPStream (options: {
|
|
|
|
rtmpBaseUrl: string
|
|
|
|
streamKey: string
|
|
|
|
fixtureName?: string // default video_short.mp4
|
|
|
|
copyCodecs?: boolean // default false
|
|
|
|
}) {
|
|
|
|
const { rtmpBaseUrl, streamKey, fixtureName = 'video_short.mp4', copyCodecs = false } = options
|
|
|
|
|
2020-11-24 15:22:56 +01:00
|
|
|
const fixture = buildAbsoluteFixturePath(fixtureName)
|
2020-10-30 15:09:00 +01:00
|
|
|
|
|
|
|
const command = ffmpeg(fixture)
|
|
|
|
command.inputOption('-stream_loop -1')
|
|
|
|
command.inputOption('-re')
|
2021-08-06 10:39:40 +02:00
|
|
|
|
|
|
|
if (copyCodecs) {
|
2021-08-06 15:06:47 +02:00
|
|
|
command.outputOption('-c copy')
|
|
|
|
} else {
|
2021-08-06 10:39:40 +02:00
|
|
|
command.outputOption('-c:v libx264')
|
|
|
|
command.outputOption('-g 50')
|
|
|
|
command.outputOption('-keyint_min 2')
|
|
|
|
command.outputOption('-r 60')
|
|
|
|
}
|
|
|
|
|
2020-10-30 15:09:00 +01:00
|
|
|
command.outputOption('-f flv')
|
|
|
|
|
|
|
|
const rtmpUrl = rtmpBaseUrl + '/' + streamKey
|
|
|
|
command.output(rtmpUrl)
|
|
|
|
|
|
|
|
command.on('error', err => {
|
|
|
|
if (err?.message?.includes('Exiting normally')) return
|
|
|
|
|
2020-11-04 14:16:57 +01:00
|
|
|
if (process.env.DEBUG) console.error(err)
|
2020-10-30 15:09:00 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
if (process.env.DEBUG) {
|
|
|
|
command.on('stderr', data => console.log(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
command.run()
|
|
|
|
|
|
|
|
return command
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
function waitFfmpegUntilError (command: FfmpegCommand, successAfterMS = 10000) {
|
2021-02-03 09:33:05 +01:00
|
|
|
return new Promise<void>((res, rej) => {
|
2020-11-03 15:33:30 +01:00
|
|
|
command.on('error', err => {
|
|
|
|
return rej(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
res()
|
|
|
|
}, successAfterMS)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
async function testFfmpegStreamError (command: FfmpegCommand, shouldHaveError: boolean) {
|
2020-11-03 15:33:30 +01:00
|
|
|
let error: Error
|
|
|
|
|
|
|
|
try {
|
2021-04-15 10:47:58 +02:00
|
|
|
await waitFfmpegUntilError(command, 35000)
|
2020-11-03 15:33:30 +01:00
|
|
|
} catch (err) {
|
|
|
|
error = err
|
|
|
|
}
|
|
|
|
|
|
|
|
await stopFfmpeg(command)
|
|
|
|
|
|
|
|
if (shouldHaveError && !error) throw new Error('Ffmpeg did not have an error')
|
|
|
|
if (!shouldHaveError && error) throw error
|
|
|
|
}
|
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
async function stopFfmpeg (command: FfmpegCommand) {
|
2020-10-30 15:09:00 +01:00
|
|
|
command.kill('SIGINT')
|
|
|
|
|
|
|
|
await wait(500)
|
|
|
|
}
|
|
|
|
|
2021-07-16 09:47:51 +02:00
|
|
|
async function waitUntilLivePublishedOnAllServers (servers: PeerTubeServer[], videoId: string) {
|
2021-06-16 15:14:41 +02:00
|
|
|
for (const server of servers) {
|
2021-07-16 09:04:35 +02:00
|
|
|
await server.live.waitUntilPublished({ videoId })
|
2021-06-16 15:14:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 08:26:20 +02:00
|
|
|
async function waitUntilLiveSavedOnAllServers (servers: PeerTubeServer[], videoId: string) {
|
|
|
|
for (const server of servers) {
|
|
|
|
await server.live.waitUntilSaved({ videoId })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-30 15:09:00 +01:00
|
|
|
export {
|
2021-07-08 10:18:40 +02:00
|
|
|
sendRTMPStream,
|
2020-11-03 15:33:30 +01:00
|
|
|
waitFfmpegUntilError,
|
2021-07-08 10:18:40 +02:00
|
|
|
testFfmpegStreamError,
|
|
|
|
stopFfmpeg,
|
2021-06-16 15:14:41 +02:00
|
|
|
waitUntilLivePublishedOnAllServers,
|
2021-12-17 11:58:15 +01:00
|
|
|
waitUntilLiveSavedOnAllServers
|
2020-10-30 15:09:00 +01:00
|
|
|
}
|