mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00

Sorry for the very big commit that may lead to git log issues and merge conflicts, but it's a major step forward: * Server can be faster at startup because imports() are async and we can easily lazy import big modules * Angular doesn't seem to support ES import (with .js extension), so we had to correctly organize peertube into a monorepo: * Use yarn workspace feature * Use typescript reference projects for dependencies * Shared projects have been moved into "packages", each one is now a node module (with a dedicated package.json/tsconfig.json) * server/tools have been moved into apps/ and is now a dedicated app bundled and published on NPM so users don't have to build peertube cli tools manually * server/tests have been moved into packages/ so we don't compile them every time we want to run the server * Use isolatedModule option: * Had to move from const enum to const (https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums) * Had to explictely specify "type" imports when used in decorators * Prefer tsx (that uses esbuild under the hood) instead of ts-node to load typescript files (tests with mocha or scripts): * To reduce test complexity as esbuild doesn't support decorator metadata, we only test server files that do not import server models * We still build tests files into js files for a faster CI * Remove unmaintained peertube CLI import script * Removed some barrels to speed up execution (less imports)
129 lines
3.6 KiB
TypeScript
129 lines
3.6 KiB
TypeScript
import { wait } from '@peertube/peertube-core-utils'
|
|
import { VideoDetails, VideoInclude, VideoPrivacy } from '@peertube/peertube-models'
|
|
import { buildAbsoluteFixturePath } from '@peertube/peertube-node-utils'
|
|
import ffmpeg, { FfmpegCommand } from 'fluent-ffmpeg'
|
|
import truncate from 'lodash-es/truncate.js'
|
|
import { PeerTubeServer } from '../server/server.js'
|
|
|
|
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
|
|
|
|
const fixture = buildAbsoluteFixturePath(fixtureName)
|
|
|
|
const command = ffmpeg(fixture)
|
|
command.inputOption('-stream_loop -1')
|
|
command.inputOption('-re')
|
|
|
|
if (copyCodecs) {
|
|
command.outputOption('-c copy')
|
|
} else {
|
|
command.outputOption('-c:v libx264')
|
|
command.outputOption('-g 120')
|
|
command.outputOption('-x264-params "no-scenecut=1"')
|
|
command.outputOption('-r 60')
|
|
}
|
|
|
|
command.outputOption('-f flv')
|
|
|
|
const rtmpUrl = rtmpBaseUrl + '/' + streamKey
|
|
command.output(rtmpUrl)
|
|
|
|
command.on('error', err => {
|
|
if (err?.message?.includes('Exiting normally')) return
|
|
|
|
if (process.env.DEBUG) console.error(err)
|
|
})
|
|
|
|
if (process.env.DEBUG) {
|
|
command.on('stderr', data => console.log(data))
|
|
command.on('stdout', data => console.log(data))
|
|
}
|
|
|
|
command.run()
|
|
|
|
return command
|
|
}
|
|
|
|
function waitFfmpegUntilError (command: FfmpegCommand, successAfterMS = 10000) {
|
|
return new Promise<void>((res, rej) => {
|
|
command.on('error', err => {
|
|
return rej(err)
|
|
})
|
|
|
|
setTimeout(() => {
|
|
res()
|
|
}, successAfterMS)
|
|
})
|
|
}
|
|
|
|
async function testFfmpegStreamError (command: FfmpegCommand, shouldHaveError: boolean) {
|
|
let error: Error
|
|
|
|
try {
|
|
await waitFfmpegUntilError(command, 45000)
|
|
} catch (err) {
|
|
error = err
|
|
}
|
|
|
|
await stopFfmpeg(command)
|
|
|
|
if (shouldHaveError && !error) throw new Error('Ffmpeg did not have an error')
|
|
if (!shouldHaveError && error) throw error
|
|
}
|
|
|
|
async function stopFfmpeg (command: FfmpegCommand) {
|
|
command.kill('SIGINT')
|
|
|
|
await wait(500)
|
|
}
|
|
|
|
async function waitUntilLivePublishedOnAllServers (servers: PeerTubeServer[], videoId: string) {
|
|
for (const server of servers) {
|
|
await server.live.waitUntilPublished({ videoId })
|
|
}
|
|
}
|
|
|
|
async function waitUntilLiveWaitingOnAllServers (servers: PeerTubeServer[], videoId: string) {
|
|
for (const server of servers) {
|
|
await server.live.waitUntilWaiting({ videoId })
|
|
}
|
|
}
|
|
|
|
async function waitUntilLiveReplacedByReplayOnAllServers (servers: PeerTubeServer[], videoId: string) {
|
|
for (const server of servers) {
|
|
await server.live.waitUntilReplacedByReplay({ videoId })
|
|
}
|
|
}
|
|
|
|
async function findExternalSavedVideo (server: PeerTubeServer, liveDetails: VideoDetails) {
|
|
const include = VideoInclude.BLACKLISTED
|
|
const privacyOneOf = [ VideoPrivacy.INTERNAL, VideoPrivacy.PRIVATE, VideoPrivacy.PUBLIC, VideoPrivacy.UNLISTED ]
|
|
|
|
const { data } = await server.videos.list({ token: server.accessToken, sort: '-publishedAt', include, privacyOneOf })
|
|
|
|
const videoNameSuffix = ` - ${new Date(liveDetails.publishedAt).toLocaleString()}`
|
|
const truncatedVideoName = truncate(liveDetails.name, {
|
|
length: 120 - videoNameSuffix.length
|
|
})
|
|
const toFind = truncatedVideoName + videoNameSuffix
|
|
|
|
return data.find(v => v.name === toFind)
|
|
}
|
|
|
|
export {
|
|
sendRTMPStream,
|
|
waitFfmpegUntilError,
|
|
testFfmpegStreamError,
|
|
stopFfmpeg,
|
|
|
|
waitUntilLivePublishedOnAllServers,
|
|
waitUntilLiveReplacedByReplayOnAllServers,
|
|
waitUntilLiveWaitingOnAllServers,
|
|
|
|
findExternalSavedVideo
|
|
}
|