Prevent error logs when aborting a stream

pull/5138/head
Chocobozzz 2022-07-13 10:32:32 +02:00
parent 14f7ad399f
commit 39d117a47d
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 7 additions and 0 deletions

View File

@ -73,6 +73,8 @@ class MuxingSession extends EventEmitter {
private tsWatcher: FSWatcher
private masterWatcher: FSWatcher
private aborted = false
private readonly isAbleToUploadVideoWithCache = memoizee((userId: number) => {
return isAbleToUploadVideo(userId, 1000)
}, { maxAge: MEMOIZE_TTL.LIVE_ABLE_TO_UPLOAD })
@ -176,6 +178,7 @@ class MuxingSession extends EventEmitter {
abort () {
if (!this.ffmpegCommand) return
this.aborted = true
this.ffmpegCommand.kill('SIGINT')
}
@ -246,6 +249,8 @@ class MuxingSession extends EventEmitter {
const playlistIdMatcher = /^([\d+])-/
const addHandler = async (segmentPath: string) => {
if (this.aborted) return
logger.debug('Live add handler of %s.', segmentPath, this.lTags())
const playlistId = basename(segmentPath).match(playlistIdMatcher)[0]
@ -332,6 +337,8 @@ class MuxingSession extends EventEmitter {
}
private processSegments (segmentPaths: string[]) {
if (this.aborted) return
mapSeries(segmentPaths, async previousSegment => {
// Add sha hash of previous segments, because ffmpeg should have finished generating them
await LiveSegmentShaStore.Instance.addSegmentSha(this.videoUUID, previousSegment)