2020-09-17 03:20:52 -04:00
|
|
|
|
2020-12-04 09:29:18 -05:00
|
|
|
import * as Bluebird from 'bluebird'
|
2020-09-17 03:20:52 -04:00
|
|
|
import * as chokidar from 'chokidar'
|
|
|
|
import { FfmpegCommand } from 'fluent-ffmpeg'
|
2020-12-04 09:29:18 -05:00
|
|
|
import { appendFile, ensureDir, readFile, stat } from 'fs-extra'
|
2021-01-27 04:51:03 -05:00
|
|
|
import { createServer, Server } from 'net'
|
2020-11-30 09:59:22 -05:00
|
|
|
import { basename, join } from 'path'
|
2020-11-06 10:43:43 -05:00
|
|
|
import { isTestInstance } from '@server/helpers/core-utils'
|
2020-11-23 10:23:52 -05:00
|
|
|
import { getLiveMuxingCommand, getLiveTranscodingCommand } from '@server/helpers/ffmpeg-utils'
|
2020-11-20 11:16:55 -05:00
|
|
|
import { computeResolutionsToTranscode, getVideoFileFPS, getVideoFileResolution } from '@server/helpers/ffprobe-utils'
|
2020-09-17 03:20:52 -04:00
|
|
|
import { logger } from '@server/helpers/logger'
|
|
|
|
import { CONFIG, registerConfigChangedHandler } from '@server/initializers/config'
|
2020-11-06 10:42:23 -05:00
|
|
|
import { MEMOIZE_TTL, P2P_MEDIA_LOADER_PEER_VERSION, VIDEO_LIVE, VIEW_LIFETIME, WEBSERVER } from '@server/initializers/constants'
|
2020-09-25 10:19:35 -04:00
|
|
|
import { UserModel } from '@server/models/account/user'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { VideoModel } from '@server/models/video/video'
|
2020-09-17 03:20:52 -04:00
|
|
|
import { VideoFileModel } from '@server/models/video/video-file'
|
|
|
|
import { VideoLiveModel } from '@server/models/video/video-live'
|
|
|
|
import { VideoStreamingPlaylistModel } from '@server/models/video/video-streaming-playlist'
|
2021-02-16 10:25:53 -05:00
|
|
|
import { MStreamingPlaylist, MStreamingPlaylistVideo, MUserId, MVideoLive, MVideoLiveVideo } from '@server/types/models'
|
2020-09-17 03:20:52 -04:00
|
|
|
import { VideoState, VideoStreamingPlaylistType } from '@shared/models'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { federateVideoIfNeeded } from './activitypub/videos'
|
2020-09-17 03:20:52 -04:00
|
|
|
import { buildSha256Segment } from './hls'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { JobQueue } from './job-queue'
|
2020-12-03 08:10:54 -05:00
|
|
|
import { cleanupLive } from './job-queue/handlers/video-live-ending'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { PeerTubeSocket } from './peertube-socket'
|
2020-09-25 10:19:35 -04:00
|
|
|
import { isAbleToUploadVideo } from './user'
|
2020-09-17 03:20:52 -04:00
|
|
|
import { getHLSDirectory } from './video-paths'
|
2021-01-28 03:37:26 -05:00
|
|
|
import { VideoTranscodingProfilesManager } from './video-transcoding-profiles'
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
import memoizee = require('memoizee')
|
2021-01-27 04:51:03 -05:00
|
|
|
const NodeRtmpSession = require('node-media-server/node_rtmp_session')
|
2020-09-17 03:20:52 -04:00
|
|
|
const context = require('node-media-server/node_core_ctx')
|
|
|
|
const nodeMediaServerLogger = require('node-media-server/node_core_logger')
|
|
|
|
|
|
|
|
// Disable node media server logs
|
|
|
|
nodeMediaServerLogger.setLogType(0)
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
rtmp: {
|
|
|
|
port: CONFIG.LIVE.RTMP.PORT,
|
|
|
|
chunk_size: VIDEO_LIVE.RTMP.CHUNK_SIZE,
|
|
|
|
gop_cache: VIDEO_LIVE.RTMP.GOP_CACHE,
|
|
|
|
ping: VIDEO_LIVE.RTMP.PING,
|
|
|
|
ping_timeout: VIDEO_LIVE.RTMP.PING_TIMEOUT
|
|
|
|
},
|
|
|
|
transcoding: {
|
|
|
|
ffmpeg: 'ffmpeg'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class LiveManager {
|
|
|
|
|
|
|
|
private static instance: LiveManager
|
|
|
|
|
|
|
|
private readonly transSessions = new Map<string, FfmpegCommand>()
|
2020-09-25 04:04:21 -04:00
|
|
|
private readonly videoSessions = new Map<number, string>()
|
2020-11-06 10:42:23 -05:00
|
|
|
// Values are Date().getTime()
|
|
|
|
private readonly watchersPerVideo = new Map<number, number[]>()
|
2020-09-17 03:20:52 -04:00
|
|
|
private readonly segmentsSha256 = new Map<string, Map<string, string>>()
|
2020-09-25 10:19:35 -04:00
|
|
|
private readonly livesPerUser = new Map<number, { liveId: number, videoId: number, size: number }[]>()
|
|
|
|
|
|
|
|
private readonly isAbleToUploadVideoWithCache = memoizee((userId: number) => {
|
|
|
|
return isAbleToUploadVideo(userId, 1000)
|
|
|
|
}, { maxAge: MEMOIZE_TTL.LIVE_ABLE_TO_UPLOAD })
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2021-01-27 04:51:03 -05:00
|
|
|
private readonly hasClientSocketsInBadHealthWithCache = memoizee((sessionId: string) => {
|
|
|
|
return this.hasClientSocketsInBadHealth(sessionId)
|
|
|
|
}, { maxAge: MEMOIZE_TTL.LIVE_CHECK_SOCKET_HEALTH })
|
|
|
|
|
|
|
|
private rtmpServer: Server
|
2020-09-17 03:20:52 -04:00
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
}
|
|
|
|
|
|
|
|
init () {
|
2020-09-25 04:04:21 -04:00
|
|
|
const events = this.getContext().nodeEvent
|
|
|
|
events.on('postPublish', (sessionId: string, streamPath: string) => {
|
2020-09-17 03:20:52 -04:00
|
|
|
logger.debug('RTMP received stream', { id: sessionId, streamPath })
|
|
|
|
|
|
|
|
const splittedPath = streamPath.split('/')
|
|
|
|
if (splittedPath.length !== 3 || splittedPath[1] !== VIDEO_LIVE.RTMP.BASE_PATH) {
|
|
|
|
logger.warn('Live path is incorrect.', { streamPath })
|
|
|
|
return this.abortSession(sessionId)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.handleSession(sessionId, streamPath, splittedPath[2])
|
|
|
|
.catch(err => logger.error('Cannot handle sessions.', { err }))
|
|
|
|
})
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
events.on('donePublish', sessionId => {
|
2020-10-29 09:19:38 -04:00
|
|
|
logger.info('Live session ended.', { sessionId })
|
2020-09-17 03:20:52 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
registerConfigChangedHandler(() => {
|
|
|
|
if (!this.rtmpServer && CONFIG.LIVE.ENABLED === true) {
|
|
|
|
this.run()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.rtmpServer && CONFIG.LIVE.ENABLED === false) {
|
|
|
|
this.stop()
|
|
|
|
}
|
|
|
|
})
|
2020-11-06 10:42:23 -05:00
|
|
|
|
2020-11-13 08:36:30 -05:00
|
|
|
// Cleanup broken lives, that were terminated by a server restart for example
|
|
|
|
this.handleBrokenLives()
|
|
|
|
.catch(err => logger.error('Cannot handle broken lives.', { err }))
|
|
|
|
|
2020-11-06 10:42:23 -05:00
|
|
|
setInterval(() => this.updateLiveViews(), VIEW_LIFETIME.LIVE)
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
run () {
|
2020-11-06 07:59:50 -05:00
|
|
|
logger.info('Running RTMP server on port %d', config.rtmp.port)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2021-01-27 04:51:03 -05:00
|
|
|
this.rtmpServer = createServer(socket => {
|
|
|
|
const session = new NodeRtmpSession(config, socket)
|
|
|
|
|
|
|
|
session.run()
|
|
|
|
})
|
|
|
|
|
|
|
|
this.rtmpServer.on('error', err => {
|
2021-01-11 03:33:14 -05:00
|
|
|
logger.error('Cannot run RTMP server.', { err })
|
|
|
|
})
|
|
|
|
|
2021-01-27 04:51:03 -05:00
|
|
|
this.rtmpServer.listen(CONFIG.LIVE.RTMP.PORT)
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
stop () {
|
|
|
|
logger.info('Stopping RTMP server.')
|
|
|
|
|
2021-01-27 04:51:03 -05:00
|
|
|
this.rtmpServer.close()
|
2020-09-17 03:20:52 -04:00
|
|
|
this.rtmpServer = undefined
|
2021-01-27 04:51:03 -05:00
|
|
|
|
|
|
|
// Sessions is an object
|
|
|
|
this.getContext().sessions.forEach((session: any) => {
|
|
|
|
if (session instanceof NodeRtmpSession) {
|
|
|
|
session.stop()
|
|
|
|
}
|
|
|
|
})
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
2020-11-06 10:42:23 -05:00
|
|
|
isRunning () {
|
|
|
|
return !!this.rtmpServer
|
|
|
|
}
|
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
getSegmentsSha256 (videoUUID: string) {
|
|
|
|
return this.segmentsSha256.get(videoUUID)
|
|
|
|
}
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
stopSessionOf (videoId: number) {
|
|
|
|
const sessionId = this.videoSessions.get(videoId)
|
|
|
|
if (!sessionId) return
|
|
|
|
|
2020-11-03 09:33:30 -05:00
|
|
|
this.videoSessions.delete(videoId)
|
2020-09-25 04:04:21 -04:00
|
|
|
this.abortSession(sessionId)
|
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
getLiveQuotaUsedByUser (userId: number) {
|
|
|
|
const currentLives = this.livesPerUser.get(userId)
|
|
|
|
if (!currentLives) return 0
|
|
|
|
|
|
|
|
return currentLives.reduce((sum, obj) => sum + obj.size, 0)
|
|
|
|
}
|
|
|
|
|
2020-11-06 10:42:23 -05:00
|
|
|
addViewTo (videoId: number) {
|
|
|
|
if (this.videoSessions.has(videoId) === false) return
|
|
|
|
|
|
|
|
let watchers = this.watchersPerVideo.get(videoId)
|
|
|
|
|
|
|
|
if (!watchers) {
|
|
|
|
watchers = []
|
|
|
|
this.watchersPerVideo.set(videoId, watchers)
|
|
|
|
}
|
|
|
|
|
|
|
|
watchers.push(new Date().getTime())
|
|
|
|
}
|
|
|
|
|
2020-12-03 08:10:54 -05:00
|
|
|
cleanupShaSegments (videoUUID: string) {
|
|
|
|
this.segmentsSha256.delete(videoUUID)
|
|
|
|
}
|
|
|
|
|
2020-12-04 09:10:13 -05:00
|
|
|
addSegmentToReplay (hlsVideoPath: string, segmentPath: string) {
|
|
|
|
const segmentName = basename(segmentPath)
|
|
|
|
const dest = join(hlsVideoPath, VIDEO_LIVE.REPLAY_DIRECTORY, this.buildConcatenatedName(segmentName))
|
|
|
|
|
|
|
|
return readFile(segmentPath)
|
|
|
|
.then(data => appendFile(dest, data))
|
|
|
|
.catch(err => logger.error('Cannot copy segment %s to repay directory.', segmentPath, { err }))
|
|
|
|
}
|
|
|
|
|
|
|
|
buildConcatenatedName (segmentOrPlaylistPath: string) {
|
|
|
|
const num = basename(segmentOrPlaylistPath).match(/^(\d+)(-|\.)/)
|
|
|
|
|
|
|
|
return 'concat-' + num[1] + '.ts'
|
|
|
|
}
|
|
|
|
|
|
|
|
private processSegments (hlsVideoPath: string, videoUUID: string, videoLive: MVideoLive, segmentPaths: string[]) {
|
|
|
|
Bluebird.mapSeries(segmentPaths, async previousSegment => {
|
|
|
|
// Add sha hash of previous segments, because ffmpeg should have finished generating them
|
|
|
|
await this.addSegmentSha(videoUUID, previousSegment)
|
|
|
|
|
|
|
|
if (videoLive.saveReplay) {
|
|
|
|
await this.addSegmentToReplay(hlsVideoPath, previousSegment)
|
|
|
|
}
|
|
|
|
}).catch(err => logger.error('Cannot process segments in %s', hlsVideoPath, { err }))
|
|
|
|
}
|
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
private getContext () {
|
|
|
|
return context
|
|
|
|
}
|
|
|
|
|
|
|
|
private abortSession (id: string) {
|
|
|
|
const session = this.getContext().sessions.get(id)
|
2020-10-29 09:19:38 -04:00
|
|
|
if (session) {
|
|
|
|
session.stop()
|
|
|
|
this.getContext().sessions.delete(id)
|
|
|
|
}
|
2020-09-17 03:20:52 -04:00
|
|
|
|
|
|
|
const transSession = this.transSessions.get(id)
|
2020-10-29 09:19:38 -04:00
|
|
|
if (transSession) {
|
|
|
|
transSession.kill('SIGINT')
|
|
|
|
this.transSessions.delete(id)
|
|
|
|
}
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private async handleSession (sessionId: string, streamPath: string, streamKey: string) {
|
|
|
|
const videoLive = await VideoLiveModel.loadByStreamKey(streamKey)
|
|
|
|
if (!videoLive) {
|
|
|
|
logger.warn('Unknown live video with stream key %s.', streamKey)
|
|
|
|
return this.abortSession(sessionId)
|
|
|
|
}
|
|
|
|
|
|
|
|
const video = videoLive.Video
|
2020-09-25 04:04:21 -04:00
|
|
|
if (video.isBlacklisted()) {
|
|
|
|
logger.warn('Video is blacklisted. Refusing stream %s.', streamKey)
|
|
|
|
return this.abortSession(sessionId)
|
|
|
|
}
|
|
|
|
|
2020-12-03 08:10:54 -05:00
|
|
|
// Cleanup old potential live files (could happen with a permanent live)
|
|
|
|
this.cleanupShaSegments(video.uuid)
|
|
|
|
|
|
|
|
const oldStreamingPlaylist = await VideoStreamingPlaylistModel.loadHLSPlaylistByVideo(video.id)
|
|
|
|
if (oldStreamingPlaylist) {
|
|
|
|
await cleanupLive(video, oldStreamingPlaylist)
|
|
|
|
}
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
this.videoSessions.set(video.id, sessionId)
|
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
const playlistUrl = WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsMasterPlaylistStaticPath(video.uuid)
|
|
|
|
|
|
|
|
const session = this.getContext().sessions.get(sessionId)
|
2020-11-04 08:16:57 -05:00
|
|
|
const rtmpUrl = 'rtmp://127.0.0.1:' + config.rtmp.port + streamPath
|
|
|
|
|
|
|
|
const [ resolutionResult, fps ] = await Promise.all([
|
|
|
|
getVideoFileResolution(rtmpUrl),
|
|
|
|
getVideoFileFPS(rtmpUrl)
|
|
|
|
])
|
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
const resolutionsEnabled = CONFIG.LIVE.TRANSCODING.ENABLED
|
2020-11-04 08:16:57 -05:00
|
|
|
? computeResolutionsToTranscode(resolutionResult.videoFileResolution, 'live')
|
2020-09-17 03:20:52 -04:00
|
|
|
: []
|
|
|
|
|
2020-11-12 10:55:13 -05:00
|
|
|
const allResolutions = resolutionsEnabled.concat([ session.videoHeight ])
|
|
|
|
|
|
|
|
logger.info('Will mux/transcode live video of original resolution %d.', session.videoHeight, { allResolutions })
|
2020-09-17 03:20:52 -04:00
|
|
|
|
|
|
|
const [ videoStreamingPlaylist ] = await VideoStreamingPlaylistModel.upsert({
|
|
|
|
videoId: video.id,
|
|
|
|
playlistUrl,
|
|
|
|
segmentsSha256Url: WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsSha256SegmentsStaticPath(video.uuid, video.isLive),
|
2020-11-12 10:55:13 -05:00
|
|
|
p2pMediaLoaderInfohashes: VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlistUrl, allResolutions),
|
2020-09-17 03:20:52 -04:00
|
|
|
p2pMediaLoaderPeerVersion: P2P_MEDIA_LOADER_PEER_VERSION,
|
|
|
|
|
|
|
|
type: VideoStreamingPlaylistType.HLS
|
|
|
|
}, { returning: true }) as [ MStreamingPlaylist, boolean ]
|
|
|
|
|
|
|
|
return this.runMuxing({
|
|
|
|
sessionId,
|
|
|
|
videoLive,
|
2021-02-16 10:25:53 -05:00
|
|
|
playlist: Object.assign(videoStreamingPlaylist, { Video: video }),
|
2020-11-04 08:16:57 -05:00
|
|
|
rtmpUrl,
|
|
|
|
fps,
|
2020-11-12 10:55:13 -05:00
|
|
|
allResolutions
|
2020-09-17 03:20:52 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private async runMuxing (options: {
|
|
|
|
sessionId: string
|
|
|
|
videoLive: MVideoLiveVideo
|
2021-02-16 10:25:53 -05:00
|
|
|
playlist: MStreamingPlaylistVideo
|
2020-11-04 08:16:57 -05:00
|
|
|
rtmpUrl: string
|
|
|
|
fps: number
|
2020-11-12 10:55:13 -05:00
|
|
|
allResolutions: number[]
|
2020-09-17 03:20:52 -04:00
|
|
|
}) {
|
2020-11-12 10:55:13 -05:00
|
|
|
const { sessionId, videoLive, playlist, allResolutions, fps, rtmpUrl } = options
|
2020-09-25 10:19:35 -04:00
|
|
|
const startStreamDateTime = new Date().getTime()
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
const user = await UserModel.loadByLiveId(videoLive.id)
|
|
|
|
if (!this.livesPerUser.has(user.id)) {
|
|
|
|
this.livesPerUser.set(user.id, [])
|
|
|
|
}
|
|
|
|
|
|
|
|
const currentUserLive = { liveId: videoLive.id, videoId: videoLive.videoId, size: 0 }
|
|
|
|
const livesOfUser = this.livesPerUser.get(user.id)
|
|
|
|
livesOfUser.push(currentUserLive)
|
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
for (let i = 0; i < allResolutions.length; i++) {
|
|
|
|
const resolution = allResolutions[i]
|
|
|
|
|
2020-12-09 08:42:42 -05:00
|
|
|
const file = new VideoFileModel({
|
2020-09-17 03:20:52 -04:00
|
|
|
resolution,
|
|
|
|
size: -1,
|
|
|
|
extname: '.ts',
|
|
|
|
infoHash: null,
|
2020-11-04 09:31:32 -05:00
|
|
|
fps,
|
2020-09-17 03:20:52 -04:00
|
|
|
videoStreamingPlaylistId: playlist.id
|
|
|
|
})
|
2020-12-09 08:42:42 -05:00
|
|
|
|
|
|
|
VideoFileModel.customUpsert(file, 'streaming-playlist', null)
|
|
|
|
.catch(err => logger.error('Cannot create file for live streaming.', { err }))
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const outPath = getHLSDirectory(videoLive.Video)
|
|
|
|
await ensureDir(outPath)
|
|
|
|
|
2020-11-30 09:59:22 -05:00
|
|
|
const replayDirectory = join(outPath, VIDEO_LIVE.REPLAY_DIRECTORY)
|
|
|
|
|
|
|
|
if (videoLive.saveReplay === true) {
|
|
|
|
await ensureDir(replayDirectory)
|
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
const videoUUID = videoLive.Video.uuid
|
2020-09-25 10:19:35 -04:00
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
const ffmpegExec = CONFIG.LIVE.TRANSCODING.ENABLED
|
2020-11-24 08:08:23 -05:00
|
|
|
? await getLiveTranscodingCommand({
|
|
|
|
rtmpUrl,
|
|
|
|
outPath,
|
2020-11-24 10:24:50 -05:00
|
|
|
resolutions: allResolutions,
|
2020-11-24 08:08:23 -05:00
|
|
|
fps,
|
2021-01-28 03:37:26 -05:00
|
|
|
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
|
2021-01-28 09:52:44 -05:00
|
|
|
profile: CONFIG.LIVE.TRANSCODING.PROFILE
|
2020-11-24 08:08:23 -05:00
|
|
|
})
|
2020-11-30 09:59:22 -05:00
|
|
|
: getLiveMuxingCommand(rtmpUrl, outPath)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
logger.info('Running live muxing/transcoding for %s.', videoUUID)
|
2020-09-17 03:20:52 -04:00
|
|
|
this.transSessions.set(sessionId, ffmpegExec)
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
const tsWatcher = chokidar.watch(outPath + '/*.ts')
|
|
|
|
|
2020-11-13 04:16:22 -05:00
|
|
|
const segmentsToProcessPerPlaylist: { [playlistId: string]: string[] } = {}
|
|
|
|
const playlistIdMatcher = /^([\d+])-/
|
2020-09-25 10:19:35 -04:00
|
|
|
|
2020-11-17 06:09:25 -05:00
|
|
|
const addHandler = segmentPath => {
|
|
|
|
logger.debug('Live add handler of %s.', segmentPath)
|
|
|
|
|
|
|
|
const playlistId = basename(segmentPath).match(playlistIdMatcher)[0]
|
|
|
|
|
|
|
|
const segmentsToProcess = segmentsToProcessPerPlaylist[playlistId] || []
|
2020-12-04 09:10:13 -05:00
|
|
|
this.processSegments(outPath, videoUUID, videoLive, segmentsToProcess)
|
2020-11-10 08:15:59 -05:00
|
|
|
|
2020-11-13 04:16:22 -05:00
|
|
|
segmentsToProcessPerPlaylist[playlistId] = [ segmentPath ]
|
2020-09-25 10:19:35 -04:00
|
|
|
|
2021-01-27 04:51:03 -05:00
|
|
|
if (this.hasClientSocketsInBadHealthWithCache(sessionId)) {
|
|
|
|
logger.error(
|
|
|
|
'Too much data in client socket stream (ffmpeg is too slow to transcode the video).' +
|
|
|
|
' Stopping session of video %s.', videoUUID)
|
|
|
|
|
|
|
|
this.stopSessionOf(videoLive.videoId)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
// Duration constraint check
|
2020-09-25 10:19:35 -04:00
|
|
|
if (this.isDurationConstraintValid(startStreamDateTime) !== true) {
|
2020-11-03 09:33:30 -05:00
|
|
|
logger.info('Stopping session of %s: max duration exceeded.', videoUUID)
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
this.stopSessionOf(videoLive.videoId)
|
2021-01-27 04:51:03 -05:00
|
|
|
return
|
2020-09-25 10:19:35 -04:00
|
|
|
}
|
|
|
|
|
2020-11-03 09:33:30 -05:00
|
|
|
// Check user quota if the user enabled replay saving
|
2020-09-25 10:19:35 -04:00
|
|
|
if (videoLive.saveReplay === true) {
|
|
|
|
stat(segmentPath)
|
|
|
|
.then(segmentStat => {
|
|
|
|
currentUserLive.size += segmentStat.size
|
|
|
|
})
|
|
|
|
.then(() => this.isQuotaConstraintValid(user, videoLive))
|
|
|
|
.then(quotaValid => {
|
|
|
|
if (quotaValid !== true) {
|
2020-11-03 09:33:30 -05:00
|
|
|
logger.info('Stopping session of %s: user quota exceeded.', videoUUID)
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
this.stopSessionOf(videoLive.videoId)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(err => logger.error('Cannot stat %s or check quota of %d.', segmentPath, user.id, { err }))
|
|
|
|
}
|
2020-09-25 04:04:21 -04:00
|
|
|
}
|
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
const deleteHandler = segmentPath => this.removeSegmentSha(videoUUID, segmentPath)
|
2020-09-25 04:04:21 -04:00
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
tsWatcher.on('add', p => addHandler(p))
|
2020-09-25 04:04:21 -04:00
|
|
|
tsWatcher.on('unlink', p => deleteHandler(p))
|
|
|
|
|
|
|
|
const masterWatcher = chokidar.watch(outPath + '/master.m3u8')
|
|
|
|
masterWatcher.on('add', async () => {
|
|
|
|
try {
|
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoLive.videoId)
|
|
|
|
|
|
|
|
video.state = VideoState.PUBLISHED
|
|
|
|
await video.save()
|
|
|
|
videoLive.Video = video
|
|
|
|
|
2020-11-12 11:13:32 -05:00
|
|
|
setTimeout(() => {
|
|
|
|
federateVideoIfNeeded(video, false)
|
|
|
|
.catch(err => logger.error('Cannot federate live video %s.', video.url, { err }))
|
|
|
|
|
|
|
|
PeerTubeSocket.Instance.sendVideoLiveNewState(video)
|
|
|
|
}, VIDEO_LIVE.SEGMENT_TIME_SECONDS * 1000 * VIDEO_LIVE.EDGE_LIVE_DELAY_SEGMENTS_NOTIFICATION)
|
2020-09-25 04:04:21 -04:00
|
|
|
|
|
|
|
} catch (err) {
|
2020-11-12 11:13:32 -05:00
|
|
|
logger.error('Cannot save/federate live video %d.', videoLive.videoId, { err })
|
2020-09-25 04:04:21 -04:00
|
|
|
} finally {
|
|
|
|
masterWatcher.close()
|
|
|
|
.catch(err => logger.error('Cannot close master watcher of %s.', outPath, { err }))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
const onFFmpegEnded = () => {
|
2020-11-04 08:16:57 -05:00
|
|
|
logger.info('RTMP transmuxing for video %s ended. Scheduling cleanup', rtmpUrl)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-10-29 09:19:38 -04:00
|
|
|
this.transSessions.delete(sessionId)
|
2020-12-03 08:10:54 -05:00
|
|
|
|
2020-11-06 10:42:23 -05:00
|
|
|
this.watchersPerVideo.delete(videoLive.videoId)
|
2020-12-03 08:10:54 -05:00
|
|
|
this.videoSessions.delete(videoLive.videoId)
|
|
|
|
|
|
|
|
const newLivesPerUser = this.livesPerUser.get(user.id)
|
|
|
|
.filter(o => o.liveId !== videoLive.id)
|
|
|
|
this.livesPerUser.set(user.id, newLivesPerUser)
|
2020-10-29 09:19:38 -04:00
|
|
|
|
2020-11-17 06:09:25 -05:00
|
|
|
setTimeout(() => {
|
|
|
|
// Wait latest segments generation, and close watchers
|
|
|
|
|
|
|
|
Promise.all([ tsWatcher.close(), masterWatcher.close() ])
|
2020-11-30 11:03:13 -05:00
|
|
|
.then(() => {
|
|
|
|
// Process remaining segments hash
|
|
|
|
for (const key of Object.keys(segmentsToProcessPerPlaylist)) {
|
2020-12-04 09:10:13 -05:00
|
|
|
this.processSegments(outPath, videoUUID, videoLive, segmentsToProcessPerPlaylist[key])
|
2020-11-30 11:03:13 -05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(err => logger.error('Cannot close watchers of %s or process remaining hash segments.', outPath, { err }))
|
2020-11-17 06:09:25 -05:00
|
|
|
|
|
|
|
this.onEndTransmuxing(videoLive.Video.id)
|
|
|
|
.catch(err => logger.error('Error in closed transmuxing.', { err }))
|
|
|
|
}, 1000)
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ffmpegExec.on('error', (err, stdout, stderr) => {
|
|
|
|
onFFmpegEnded()
|
|
|
|
|
|
|
|
// Don't care that we killed the ffmpeg process
|
2020-11-03 09:33:30 -05:00
|
|
|
if (err?.message?.includes('Exiting normally')) return
|
2020-09-17 03:20:52 -04:00
|
|
|
|
|
|
|
logger.error('Live transcoding error.', { err, stdout, stderr })
|
2020-10-30 10:09:00 -04:00
|
|
|
|
|
|
|
this.abortSession(sessionId)
|
2020-09-17 03:20:52 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
ffmpegExec.on('end', () => onFFmpegEnded())
|
2020-11-23 10:23:52 -05:00
|
|
|
|
|
|
|
ffmpegExec.run()
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
private async onEndTransmuxing (videoId: number, cleanupNow = false) {
|
2020-09-25 04:04:21 -04:00
|
|
|
try {
|
|
|
|
const fullVideo = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
|
|
|
|
if (!fullVideo) return
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-12-03 08:10:54 -05:00
|
|
|
const live = await VideoLiveModel.loadByVideoId(videoId)
|
|
|
|
|
|
|
|
if (!live.permanentLive) {
|
|
|
|
JobQueue.Instance.createJob({
|
|
|
|
type: 'video-live-ending',
|
|
|
|
payload: {
|
|
|
|
videoId: fullVideo.id
|
|
|
|
}
|
|
|
|
}, { delay: cleanupNow ? 0 : VIDEO_LIVE.CLEANUP_DELAY })
|
|
|
|
|
|
|
|
fullVideo.state = VideoState.LIVE_ENDED
|
|
|
|
} else {
|
|
|
|
fullVideo.state = VideoState.WAITING_FOR_LIVE
|
|
|
|
}
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
await fullVideo.save()
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
PeerTubeSocket.Instance.sendVideoLiveNewState(fullVideo)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
await federateVideoIfNeeded(fullVideo, false)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot save/federate new video state of live streaming.', { err })
|
|
|
|
}
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
private async addSegmentSha (videoUUID: string, segmentPath: string) {
|
|
|
|
const segmentName = basename(segmentPath)
|
|
|
|
logger.debug('Adding live sha segment %s.', segmentPath)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
const shaResult = await buildSha256Segment(segmentPath)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
if (!this.segmentsSha256.has(videoUUID)) {
|
|
|
|
this.segmentsSha256.set(videoUUID, new Map())
|
2020-09-17 03:20:52 -04:00
|
|
|
}
|
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
const filesMap = this.segmentsSha256.get(videoUUID)
|
2020-09-17 03:20:52 -04:00
|
|
|
filesMap.set(segmentName, shaResult)
|
|
|
|
}
|
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
private removeSegmentSha (videoUUID: string, segmentPath: string) {
|
|
|
|
const segmentName = basename(segmentPath)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
logger.debug('Removing live sha segment %s.', segmentPath)
|
2020-09-17 03:20:52 -04:00
|
|
|
|
2020-11-10 08:15:59 -05:00
|
|
|
const filesMap = this.segmentsSha256.get(videoUUID)
|
2020-09-17 03:20:52 -04:00
|
|
|
if (!filesMap) {
|
2020-11-10 08:15:59 -05:00
|
|
|
logger.warn('Unknown files map to remove sha for %s.', videoUUID)
|
2020-09-17 03:20:52 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!filesMap.has(segmentName)) {
|
2020-11-10 08:15:59 -05:00
|
|
|
logger.warn('Unknown segment in files map for video %s and segment %s.', videoUUID, segmentPath)
|
2020-09-17 03:20:52 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
filesMap.delete(segmentName)
|
|
|
|
}
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
private isDurationConstraintValid (streamingStartTime: number) {
|
|
|
|
const maxDuration = CONFIG.LIVE.MAX_DURATION
|
|
|
|
// No limit
|
2020-12-15 03:23:28 -05:00
|
|
|
if (maxDuration < 0) return true
|
2020-09-25 10:19:35 -04:00
|
|
|
|
|
|
|
const now = new Date().getTime()
|
|
|
|
const max = streamingStartTime + maxDuration
|
|
|
|
|
|
|
|
return now <= max
|
|
|
|
}
|
|
|
|
|
2021-01-27 04:51:03 -05:00
|
|
|
private hasClientSocketsInBadHealth (sessionId: string) {
|
|
|
|
const rtmpSession = this.getContext().sessions.get(sessionId)
|
|
|
|
|
|
|
|
if (!rtmpSession) {
|
|
|
|
logger.warn('Cannot get session %s to check players socket health.', sessionId)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const playerSessionId of rtmpSession.players) {
|
|
|
|
const playerSession = this.getContext().sessions.get(playerSessionId)
|
|
|
|
|
|
|
|
if (!playerSession) {
|
|
|
|
logger.error('Cannot get player session %s to check socket health.', playerSession)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if (playerSession.socket.writableLength > VIDEO_LIVE.MAX_SOCKET_WAITING_DATA) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
private async isQuotaConstraintValid (user: MUserId, live: MVideoLive) {
|
|
|
|
if (live.saveReplay !== true) return true
|
|
|
|
|
|
|
|
return this.isAbleToUploadVideoWithCache(user.id)
|
|
|
|
}
|
|
|
|
|
2020-11-06 10:42:23 -05:00
|
|
|
private async updateLiveViews () {
|
|
|
|
if (!this.isRunning()) return
|
|
|
|
|
2020-11-06 10:43:43 -05:00
|
|
|
if (!isTestInstance()) logger.info('Updating live video views.')
|
2020-11-06 10:42:23 -05:00
|
|
|
|
|
|
|
for (const videoId of this.watchersPerVideo.keys()) {
|
|
|
|
const notBefore = new Date().getTime() - VIEW_LIFETIME.LIVE
|
|
|
|
|
|
|
|
const watchers = this.watchersPerVideo.get(videoId)
|
|
|
|
|
|
|
|
const numWatchers = watchers.length
|
|
|
|
|
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId)
|
|
|
|
video.views = numWatchers
|
|
|
|
await video.save()
|
|
|
|
|
|
|
|
await federateVideoIfNeeded(video, false)
|
|
|
|
|
2020-12-09 09:00:02 -05:00
|
|
|
PeerTubeSocket.Instance.sendVideoViewsUpdate(video)
|
|
|
|
|
2020-11-06 10:42:23 -05:00
|
|
|
// Only keep not expired watchers
|
|
|
|
const newWatchers = watchers.filter(w => w > notBefore)
|
|
|
|
this.watchersPerVideo.set(videoId, newWatchers)
|
|
|
|
|
|
|
|
logger.debug('New live video views for %s is %d.', video.url, numWatchers)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-13 08:36:30 -05:00
|
|
|
private async handleBrokenLives () {
|
|
|
|
const videoIds = await VideoModel.listPublishedLiveIds()
|
|
|
|
|
|
|
|
for (const id of videoIds) {
|
|
|
|
await this.onEndTransmuxing(id, true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-17 03:20:52 -04:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
LiveManager
|
|
|
|
}
|