2020-11-04 08:16:57 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
|
|
|
|
import { expect } from 'chai'
|
2021-08-27 08:32:44 -04:00
|
|
|
import ffmpeg, { FfmpegCommand } from 'fluent-ffmpeg'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { pathExists, readdir } from 'fs-extra'
|
|
|
|
import { join } from 'path'
|
2021-07-13 03:43:59 -04:00
|
|
|
import { buildAbsoluteFixturePath, wait } from '../miscs'
|
2021-07-16 03:47:51 -04:00
|
|
|
import { PeerTubeServer } from '../server/server'
|
2020-11-03 09:33:30 -05:00
|
|
|
|
2021-08-06 04:39:40 -04: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 09:22:56 -05:00
|
|
|
const fixture = buildAbsoluteFixturePath(fixtureName)
|
2020-10-30 10:09:00 -04:00
|
|
|
|
|
|
|
const command = ffmpeg(fixture)
|
|
|
|
command.inputOption('-stream_loop -1')
|
|
|
|
command.inputOption('-re')
|
2021-08-06 04:39:40 -04:00
|
|
|
|
|
|
|
if (copyCodecs) {
|
2021-08-06 09:06:47 -04:00
|
|
|
command.outputOption('-c copy')
|
|
|
|
} else {
|
2021-08-06 04:39:40 -04:00
|
|
|
command.outputOption('-c:v libx264')
|
|
|
|
command.outputOption('-g 50')
|
|
|
|
command.outputOption('-keyint_min 2')
|
|
|
|
command.outputOption('-r 60')
|
|
|
|
}
|
|
|
|
|
2020-10-30 10:09:00 -04: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 08:16:57 -05:00
|
|
|
if (process.env.DEBUG) console.error(err)
|
2020-10-30 10:09:00 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
if (process.env.DEBUG) {
|
|
|
|
command.on('stderr', data => console.log(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
command.run()
|
|
|
|
|
|
|
|
return command
|
|
|
|
}
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
function waitFfmpegUntilError (command: FfmpegCommand, successAfterMS = 10000) {
|
2021-02-03 03:33:05 -05:00
|
|
|
return new Promise<void>((res, rej) => {
|
2020-11-03 09:33:30 -05:00
|
|
|
command.on('error', err => {
|
|
|
|
return rej(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
res()
|
|
|
|
}, successAfterMS)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-27 08:32:44 -04:00
|
|
|
async function testFfmpegStreamError (command: FfmpegCommand, shouldHaveError: boolean) {
|
2020-11-03 09:33:30 -05:00
|
|
|
let error: Error
|
|
|
|
|
|
|
|
try {
|
2021-04-15 04:47:58 -04:00
|
|
|
await waitFfmpegUntilError(command, 35000)
|
2020-11-03 09:33:30 -05: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 08:32:44 -04:00
|
|
|
async function stopFfmpeg (command: FfmpegCommand) {
|
2020-10-30 10:09:00 -04:00
|
|
|
command.kill('SIGINT')
|
|
|
|
|
|
|
|
await wait(500)
|
|
|
|
}
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
async function waitUntilLivePublishedOnAllServers (servers: PeerTubeServer[], videoId: string) {
|
2021-06-16 09:14:41 -04:00
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.live.waitUntilPublished({ videoId })
|
2021-06-16 09:14:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
async function waitUntilLiveSavedOnAllServers (servers: PeerTubeServer[], videoId: string) {
|
|
|
|
for (const server of servers) {
|
|
|
|
await server.live.waitUntilSaved({ videoId })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 05:20:00 -04:00
|
|
|
async function checkLiveCleanupAfterSave (server: PeerTubeServer, videoUUID: string, resolutions: number[] = []) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const basePath = server.servers.buildDirectory('streaming-playlists')
|
2020-11-04 08:16:57 -05:00
|
|
|
const hlsPath = join(basePath, 'hls', videoUUID)
|
|
|
|
|
|
|
|
if (resolutions.length === 0) {
|
|
|
|
const result = await pathExists(hlsPath)
|
|
|
|
expect(result).to.be.false
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const files = await readdir(hlsPath)
|
|
|
|
|
|
|
|
// fragmented file and playlist per resolution + master playlist + segments sha256 json file
|
|
|
|
expect(files).to.have.lengthOf(resolutions.length * 2 + 2)
|
|
|
|
|
|
|
|
for (const resolution of resolutions) {
|
2021-07-23 05:20:00 -04:00
|
|
|
const fragmentedFile = files.find(f => f.endsWith(`-${resolution}-fragmented.mp4`))
|
|
|
|
expect(fragmentedFile).to.exist
|
|
|
|
|
|
|
|
const playlistFile = files.find(f => f.endsWith(`${resolution}.m3u8`))
|
|
|
|
expect(playlistFile).to.exist
|
2020-11-04 08:16:57 -05:00
|
|
|
}
|
|
|
|
|
2021-07-23 05:20:00 -04:00
|
|
|
const masterPlaylistFile = files.find(f => f.endsWith('-master.m3u8'))
|
|
|
|
expect(masterPlaylistFile).to.exist
|
|
|
|
|
|
|
|
const shaFile = files.find(f => f.endsWith('-segments-sha256.json'))
|
|
|
|
expect(shaFile).to.exist
|
2020-11-04 08:16:57 -05:00
|
|
|
}
|
|
|
|
|
2020-10-30 10:09:00 -04:00
|
|
|
export {
|
2021-07-08 04:18:40 -04:00
|
|
|
sendRTMPStream,
|
2020-11-03 09:33:30 -05:00
|
|
|
waitFfmpegUntilError,
|
2021-07-08 04:18:40 -04:00
|
|
|
testFfmpegStreamError,
|
|
|
|
stopFfmpeg,
|
2021-06-16 09:14:41 -04:00
|
|
|
waitUntilLivePublishedOnAllServers,
|
2021-08-17 02:26:20 -04:00
|
|
|
waitUntilLiveSavedOnAllServers,
|
2021-07-23 05:20:00 -04:00
|
|
|
checkLiveCleanupAfterSave
|
2020-10-30 10:09:00 -04:00
|
|
|
}
|