diff options
Diffstat (limited to 'server/lib')
-rw-r--r-- | server/lib/job-queue/handlers/video-live-ending.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/server/lib/job-queue/handlers/video-live-ending.ts b/server/lib/job-queue/handlers/video-live-ending.ts index 2b900998a..3892260c4 100644 --- a/server/lib/job-queue/handlers/video-live-ending.ts +++ b/server/lib/job-queue/handlers/video-live-ending.ts | |||
@@ -70,10 +70,6 @@ async function saveLive (video: MVideo, live: MVideoLive) { | |||
70 | const segmentFiles = files.filter(f => f.startsWith(shouldStartWith) && f.endsWith('.ts')) | 70 | const segmentFiles = files.filter(f => f.startsWith(shouldStartWith) && f.endsWith('.ts')) |
71 | await hlsPlaylistToFragmentedMP4(hlsDirectory, segmentFiles, mp4TmpPath) | 71 | await hlsPlaylistToFragmentedMP4(hlsDirectory, segmentFiles, mp4TmpPath) |
72 | 72 | ||
73 | for (const file of segmentFiles) { | ||
74 | await remove(join(hlsDirectory, file)) | ||
75 | } | ||
76 | |||
77 | if (!duration) { | 73 | if (!duration) { |
78 | duration = await getDurationFromVideoFile(mp4TmpPath) | 74 | duration = await getDurationFromVideoFile(mp4TmpPath) |
79 | } | 75 | } |