import { CONFIG, registerConfigChangedHandler } from '@server/initializers/config'
import { VIDEO_LIVE } from '@server/initializers/constants'
import { sequelizeTypescript } from '@server/initializers/database'
+import { RunnerJobModel } from '@server/models/runner/runner-job'
import { UserModel } from '@server/models/user/user'
import { VideoModel } from '@server/models/video/video'
import { VideoLiveModel } from '@server/models/video/video-live'
import { LiveQuotaStore } from './live-quota-store'
import { cleanupAndDestroyPermanentLive, getLiveSegmentTime } from './live-utils'
import { MuxingSession } from './shared'
-import { RunnerJobModel } from '@server/models/runner/runner-job'
const NodeRtmpSession = require('node-media-server/src/node_rtmp_session')
const context = require('node-media-server/src/node_core_ctx')
events.on('donePublish', sessionId => {
logger.info('Live session ended.', { sessionId, ...lTags(sessionId) })
+
+ // Force session aborting, so we kill ffmpeg even if it still has data to process (slow CPU)
+ setTimeout(() => this.abortSession(sessionId), 2000)
})
registerConfigChangedHandler(() => {
let video4UUID: string
before(async function () {
- this.timeout(10000)
-
{
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'Video 3' } })
video3UUID = uuid
})
it('Should blacklist video 3 and keep it federated', async function () {
- this.timeout(10000)
-
await command.add({ videoId: video3UUID, reason: 'super reason', unfederate: false })
await waitJobs(servers)
})
it('Should unfederate the video', async function () {
- this.timeout(10000)
-
await command.add({ videoId: video4UUID, reason: 'super reason', unfederate: true })
await waitJobs(servers)
})
it('Should have the video unfederated even after an Update AP message', async function () {
- this.timeout(10000)
-
await servers[0].videos.update({ id: video4UUID, attributes: { description: 'super description' } })
await waitJobs(servers)
})
it('Should remove the video from blacklist and refederate the video', async function () {
- this.timeout(10000)
-
await command.remove({ videoId: video4UUID })
await waitJobs(servers)