PeerTube/server/lib/live/shared/muxing-session.ts

384 lines
12 KiB
TypeScript
Raw Normal View History

2021-06-16 15:14:41 +02:00
2021-08-27 14:32:44 +02:00
import { mapSeries } from 'bluebird'
import { FSWatcher, watch } from 'chokidar'
2021-06-16 15:14:41 +02:00
import { FfmpegCommand } from 'fluent-ffmpeg'
import { appendFile, ensureDir, readFile, stat } from 'fs-extra'
import { basename, join } from 'path'
import { EventEmitter } from 'stream'
2022-02-11 10:51:33 +01:00
import { getLiveMuxingCommand, getLiveTranscodingCommand } from '@server/helpers/ffmpeg'
2021-06-16 15:14:41 +02:00
import { logger, loggerTagsFactory, LoggerTagsFn } from '@server/helpers/logger'
import { CONFIG } from '@server/initializers/config'
import { MEMOIZE_TTL, VIDEO_LIVE } from '@server/initializers/constants'
import { VideoFileModel } from '@server/models/video/video-file'
import { MStreamingPlaylistVideo, MUserId, MVideoLiveVideo } from '@server/types/models'
Add support for saving video files to object storage (#4290) * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
2021-08-17 08:26:20 +02:00
import { getLiveDirectory } from '../../paths'
2022-02-11 10:51:33 +01:00
import { VideoTranscodingProfilesManager } from '../../transcoding/default-transcoding-profiles'
2021-06-16 15:14:41 +02:00
import { isAbleToUploadVideo } from '../../user'
import { LiveQuotaStore } from '../live-quota-store'
import { LiveSegmentShaStore } from '../live-segment-sha-store'
import { buildConcatenatedName } from '../live-utils'
import memoizee = require('memoizee')
interface MuxingSessionEvents {
'master-playlist-created': ({ videoId: number }) => void
'bad-socket-health': ({ videoId: number }) => void
'duration-exceeded': ({ videoId: number }) => void
'quota-exceeded': ({ videoId: number }) => void
'ffmpeg-end': ({ videoId: number }) => void
'ffmpeg-error': ({ sessionId: string }) => void
'after-cleanup': ({ videoId: number }) => void
}
declare interface MuxingSession {
on<U extends keyof MuxingSessionEvents>(
event: U, listener: MuxingSessionEvents[U]
): this
emit<U extends keyof MuxingSessionEvents>(
event: U, ...args: Parameters<MuxingSessionEvents[U]>
): boolean
}
class MuxingSession extends EventEmitter {
private ffmpegCommand: FfmpegCommand
private readonly context: any
private readonly user: MUserId
private readonly sessionId: string
private readonly videoLive: MVideoLiveVideo
private readonly streamingPlaylist: MStreamingPlaylistVideo
2021-11-05 11:36:03 +01:00
private readonly inputUrl: string
2021-06-16 15:14:41 +02:00
private readonly fps: number
private readonly allResolutions: number[]
2021-08-06 13:35:25 +02:00
private readonly bitrate: number
private readonly ratio: number
2021-06-16 15:14:41 +02:00
private readonly videoId: number
private readonly videoUUID: string
private readonly saveReplay: boolean
private readonly lTags: LoggerTagsFn
private segmentsToProcessPerPlaylist: { [playlistId: string]: string[] } = {}
2021-08-27 14:32:44 +02:00
private tsWatcher: FSWatcher
private masterWatcher: FSWatcher
2021-06-16 15:14:41 +02:00
private readonly isAbleToUploadVideoWithCache = memoizee((userId: number) => {
return isAbleToUploadVideo(userId, 1000)
}, { maxAge: MEMOIZE_TTL.LIVE_ABLE_TO_UPLOAD })
private readonly hasClientSocketInBadHealthWithCache = memoizee((sessionId: string) => {
return this.hasClientSocketInBadHealth(sessionId)
}, { maxAge: MEMOIZE_TTL.LIVE_CHECK_SOCKET_HEALTH })
constructor (options: {
context: any
user: MUserId
sessionId: string
videoLive: MVideoLiveVideo
streamingPlaylist: MStreamingPlaylistVideo
2021-11-05 11:36:03 +01:00
inputUrl: string
2021-06-16 15:14:41 +02:00
fps: number
2021-08-06 10:39:40 +02:00
bitrate: number
2021-08-06 13:35:25 +02:00
ratio: number
2021-06-16 15:14:41 +02:00
allResolutions: number[]
}) {
super()
this.context = options.context
this.user = options.user
this.sessionId = options.sessionId
this.videoLive = options.videoLive
this.streamingPlaylist = options.streamingPlaylist
2021-11-05 11:36:03 +01:00
this.inputUrl = options.inputUrl
2021-06-16 15:14:41 +02:00
this.fps = options.fps
2021-08-06 13:35:25 +02:00
2021-08-06 10:39:40 +02:00
this.bitrate = options.bitrate
2021-10-11 15:59:15 +02:00
this.ratio = options.ratio
2021-08-06 13:35:25 +02:00
2021-06-16 15:14:41 +02:00
this.allResolutions = options.allResolutions
this.videoId = this.videoLive.Video.id
this.videoUUID = this.videoLive.Video.uuid
this.saveReplay = this.videoLive.saveReplay
this.lTags = loggerTagsFactory('live', this.sessionId, this.videoUUID)
}
async runMuxing () {
this.createFiles()
const outPath = await this.prepareDirectories()
this.ffmpegCommand = CONFIG.LIVE.TRANSCODING.ENABLED
? await getLiveTranscodingCommand({
2021-11-05 11:36:03 +01:00
inputUrl: this.inputUrl,
2021-07-23 11:20:00 +02:00
2021-06-16 15:14:41 +02:00
outPath,
2021-07-23 11:20:00 +02:00
masterPlaylistName: this.streamingPlaylist.playlistFilename,
2022-03-04 13:40:02 +01:00
latencyMode: this.videoLive.latencyMode,
2021-06-16 15:14:41 +02:00
resolutions: this.allResolutions,
fps: this.fps,
2021-08-06 10:39:40 +02:00
bitrate: this.bitrate,
2021-08-06 13:35:25 +02:00
ratio: this.ratio,
2021-08-06 10:39:40 +02:00
2021-06-16 15:14:41 +02:00
availableEncoders: VideoTranscodingProfilesManager.Instance.getAvailableEncoders(),
profile: CONFIG.LIVE.TRANSCODING.PROFILE
})
2022-03-04 13:40:02 +01:00
: getLiveMuxingCommand({
inputUrl: this.inputUrl,
outPath,
masterPlaylistName: this.streamingPlaylist.playlistFilename,
latencyMode: this.videoLive.latencyMode
})
2021-06-16 15:14:41 +02:00
2021-12-07 13:45:01 +01:00
logger.info('Running live muxing/transcoding for %s.', this.videoUUID, this.lTags())
2021-06-16 15:14:41 +02:00
this.watchTSFiles(outPath)
this.watchMasterFile(outPath)
2021-12-07 13:45:01 +01:00
let ffmpegShellCommand: string
this.ffmpegCommand.on('start', cmdline => {
ffmpegShellCommand = cmdline
logger.debug('Running ffmpeg command for live', { ffmpegShellCommand, ...this.lTags() })
})
2021-06-16 15:14:41 +02:00
this.ffmpegCommand.on('error', (err, stdout, stderr) => {
2021-12-07 13:45:01 +01:00
this.onFFmpegError({ err, stdout, stderr, outPath, ffmpegShellCommand })
2021-06-16 15:14:41 +02:00
})
this.ffmpegCommand.on('end', () => this.onFFmpegEnded(outPath))
this.ffmpegCommand.run()
}
abort () {
2021-06-17 09:40:45 +02:00
if (!this.ffmpegCommand) return
2021-06-16 15:14:41 +02:00
this.ffmpegCommand.kill('SIGINT')
2021-06-17 09:40:45 +02:00
}
destroy () {
this.removeAllListeners()
this.isAbleToUploadVideoWithCache.clear()
this.hasClientSocketInBadHealthWithCache.clear()
2021-06-16 15:14:41 +02:00
}
2021-12-07 13:45:01 +01:00
private onFFmpegError (options: {
err: any
stdout: string
stderr: string
outPath: string
ffmpegShellCommand: string
}) {
const { err, stdout, stderr, outPath, ffmpegShellCommand } = options
2021-06-16 15:14:41 +02:00
this.onFFmpegEnded(outPath)
// Don't care that we killed the ffmpeg process
if (err?.message?.includes('Exiting normally')) return
2021-12-07 13:45:01 +01:00
logger.error('Live transcoding error.', { err, stdout, stderr, ffmpegShellCommand, ...this.lTags() })
2021-06-16 15:14:41 +02:00
this.emit('ffmpeg-error', ({ sessionId: this.sessionId }))
}
private onFFmpegEnded (outPath: string) {
2021-12-07 13:45:01 +01:00
logger.info('RTMP transmuxing for video %s ended. Scheduling cleanup', this.inputUrl, this.lTags())
2021-06-16 15:14:41 +02:00
setTimeout(() => {
// Wait latest segments generation, and close watchers
Promise.all([ this.tsWatcher.close(), this.masterWatcher.close() ])
.then(() => {
// Process remaining segments hash
for (const key of Object.keys(this.segmentsToProcessPerPlaylist)) {
this.processSegments(outPath, this.segmentsToProcessPerPlaylist[key])
}
})
.catch(err => {
logger.error(
'Cannot close watchers of %s or process remaining hash segments.', outPath,
2021-12-07 13:45:01 +01:00
{ err, ...this.lTags() }
2021-06-16 15:14:41 +02:00
)
})
this.emit('after-cleanup', { videoId: this.videoId })
}, 1000)
}
private watchMasterFile (outPath: string) {
2021-08-27 14:32:44 +02:00
this.masterWatcher = watch(outPath + '/' + this.streamingPlaylist.playlistFilename)
2021-06-16 15:14:41 +02:00
2021-08-25 16:14:11 +02:00
this.masterWatcher.on('add', () => {
2021-06-16 15:14:41 +02:00
this.emit('master-playlist-created', { videoId: this.videoId })
this.masterWatcher.close()
2021-12-07 13:45:01 +01:00
.catch(err => logger.error('Cannot close master watcher of %s.', outPath, { err, ...this.lTags() }))
2021-06-16 15:14:41 +02:00
})
}
private watchTSFiles (outPath: string) {
const startStreamDateTime = new Date().getTime()
2021-08-27 14:32:44 +02:00
this.tsWatcher = watch(outPath + '/*.ts')
2021-06-16 15:14:41 +02:00
const playlistIdMatcher = /^([\d+])-/
const addHandler = async (segmentPath: string) => {
2021-12-07 13:45:01 +01:00
logger.debug('Live add handler of %s.', segmentPath, this.lTags())
2021-06-16 15:14:41 +02:00
const playlistId = basename(segmentPath).match(playlistIdMatcher)[0]
const segmentsToProcess = this.segmentsToProcessPerPlaylist[playlistId] || []
this.processSegments(outPath, segmentsToProcess)
this.segmentsToProcessPerPlaylist[playlistId] = [ segmentPath ]
if (this.hasClientSocketInBadHealthWithCache(this.sessionId)) {
this.emit('bad-socket-health', { videoId: this.videoId })
return
}
// Duration constraint check
if (this.isDurationConstraintValid(startStreamDateTime) !== true) {
this.emit('duration-exceeded', { videoId: this.videoId })
return
}
// Check user quota if the user enabled replay saving
if (await this.isQuotaExceeded(segmentPath) === true) {
this.emit('quota-exceeded', { videoId: this.videoId })
}
}
const deleteHandler = segmentPath => LiveSegmentShaStore.Instance.removeSegmentSha(this.videoUUID, segmentPath)
this.tsWatcher.on('add', p => addHandler(p))
this.tsWatcher.on('unlink', p => deleteHandler(p))
}
private async isQuotaExceeded (segmentPath: string) {
if (this.saveReplay !== true) return false
try {
const segmentStat = await stat(segmentPath)
LiveQuotaStore.Instance.addQuotaTo(this.user.id, this.videoLive.id, segmentStat.size)
const canUpload = await this.isAbleToUploadVideoWithCache(this.user.id)
return canUpload !== true
} catch (err) {
2021-12-07 13:45:01 +01:00
logger.error('Cannot stat %s or check quota of %d.', segmentPath, this.user.id, { err, ...this.lTags() })
2021-06-16 15:14:41 +02:00
}
}
private createFiles () {
for (let i = 0; i < this.allResolutions.length; i++) {
const resolution = this.allResolutions[i]
const file = new VideoFileModel({
resolution,
size: -1,
extname: '.ts',
infoHash: null,
fps: this.fps,
videoStreamingPlaylistId: this.streamingPlaylist.id
})
VideoFileModel.customUpsert(file, 'streaming-playlist', null)
2021-12-07 13:45:01 +01:00
.catch(err => logger.error('Cannot create file for live streaming.', { err, ...this.lTags() }))
2021-06-16 15:14:41 +02:00
}
}
private async prepareDirectories () {
Add support for saving video files to object storage (#4290) * Add support for saving video files to object storage * Add support for custom url generation on s3 stored files Uses two config keys to support url generation that doesn't directly go to (compatible s3). Can be used to generate urls to any cache server or CDN. * Upload files to s3 concurrently and delete originals afterwards * Only publish after move to object storage is complete * Use base url instead of url template * Fix mistyped config field * Add rudenmentary way to download before transcode * Implement Chocobozzz suggestions https://github.com/Chocobozzz/PeerTube/pull/4290#issuecomment-891670478 The remarks in question: Try to use objectStorage prefix instead of s3 prefix for your function/variables/config names Prefer to use a tree for the config: s3.streaming_playlists_bucket -> object_storage.streaming_playlists.bucket Use uppercase for config: S3.STREAMING_PLAYLISTS_BUCKETINFO.bucket -> OBJECT_STORAGE.STREAMING_PLAYLISTS.BUCKET (maybe BUCKET_NAME instead of BUCKET) I suggest to rename moveJobsRunning to pendingMovingJobs (or better, create a dedicated videoJobInfo table with a pendingMove & videoId columns so we could also use this table to track pending transcoding jobs) https://github.com/Chocobozzz/PeerTube/pull/4290/files#diff-3e26d41ca4bda1de8e1747af70ca2af642abcc1e9e0bfb94239ff2165acfbde5R19 uses a string instead of an integer I think we should store the origin object storage URL in fileUrl, without base_url injection. Instead, inject the base_url at "runtime" so admins can easily change this configuration without running a script to update DB URLs * Import correct function * Support multipart upload * Remove import of node 15.0 module stream/promises * Extend maximum upload job length Using the same value as for redundancy downloading seems logical * Use dynamic part size for really large uploads Also adds very small part size for local testing * Fix decreasePendingMove query * Resolve various PR comments * Move to object storage after optimize * Make upload size configurable and increase default * Prune webtorrent files that are stored in object storage * Move files after transcoding jobs * Fix federation * Add video path manager * Support move to external storage job in client * Fix live object storage tests Co-authored-by: Chocobozzz <me@florianbigard.com>
2021-08-17 08:26:20 +02:00
const outPath = getLiveDirectory(this.videoLive.Video)
2021-06-16 15:14:41 +02:00
await ensureDir(outPath)
const replayDirectory = join(outPath, VIDEO_LIVE.REPLAY_DIRECTORY)
if (this.videoLive.saveReplay === true) {
await ensureDir(replayDirectory)
}
return outPath
}
private isDurationConstraintValid (streamingStartTime: number) {
const maxDuration = CONFIG.LIVE.MAX_DURATION
// No limit
if (maxDuration < 0) return true
const now = new Date().getTime()
const max = streamingStartTime + maxDuration
return now <= max
}
private processSegments (hlsVideoPath: string, segmentPaths: string[]) {
2021-08-27 14:32:44 +02:00
mapSeries(segmentPaths, async previousSegment => {
2021-06-16 15:14:41 +02:00
// Add sha hash of previous segments, because ffmpeg should have finished generating them
await LiveSegmentShaStore.Instance.addSegmentSha(this.videoUUID, previousSegment)
if (this.saveReplay) {
await this.addSegmentToReplay(hlsVideoPath, previousSegment)
}
2021-12-07 13:45:01 +01:00
}).catch(err => logger.error('Cannot process segments in %s', hlsVideoPath, { err, ...this.lTags() }))
2021-06-16 15:14:41 +02:00
}
private hasClientSocketInBadHealth (sessionId: string) {
const rtmpSession = this.context.sessions.get(sessionId)
if (!rtmpSession) {
2021-12-07 13:45:01 +01:00
logger.warn('Cannot get session %s to check players socket health.', sessionId, this.lTags())
2021-06-16 15:14:41 +02:00
return
}
for (const playerSessionId of rtmpSession.players) {
const playerSession = this.context.sessions.get(playerSessionId)
if (!playerSession) {
2021-12-07 13:45:01 +01:00
logger.error('Cannot get player session %s to check socket health.', playerSession, this.lTags())
2021-06-16 15:14:41 +02:00
continue
}
if (playerSession.socket.writableLength > VIDEO_LIVE.MAX_SOCKET_WAITING_DATA) {
return true
}
}
return false
}
private async addSegmentToReplay (hlsVideoPath: string, segmentPath: string) {
const segmentName = basename(segmentPath)
const dest = join(hlsVideoPath, VIDEO_LIVE.REPLAY_DIRECTORY, buildConcatenatedName(segmentName))
try {
const data = await readFile(segmentPath)
await appendFile(dest, data)
} catch (err) {
2021-12-07 13:45:01 +01:00
logger.error('Cannot copy segment %s to replay directory.', segmentPath, { err, ...this.lTags() })
2021-06-16 15:14:41 +02:00
}
}
}
// ---------------------------------------------------------------------------
export {
MuxingSession
}