aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/hls.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/hls.ts')
-rw-r--r--server/lib/hls.ts13
1 files changed, 9 insertions, 4 deletions
diff --git a/server/lib/hls.ts b/server/lib/hls.ts
index 32b02bc26..0e77ab9fa 100644
--- a/server/lib/hls.ts
+++ b/server/lib/hls.ts
@@ -1,4 +1,4 @@
1import { close, ensureDir, move, open, outputJSON, pathExists, read, readFile, remove, writeFile } from 'fs-extra' 1import { close, ensureDir, move, open, outputJSON, pathExists, read, readFile, remove, stat, writeFile } from 'fs-extra'
2import { flatten, uniq } from 'lodash' 2import { flatten, uniq } from 'lodash'
3import { basename, dirname, join } from 'path' 3import { basename, dirname, join } from 'path'
4import { MStreamingPlaylistFilesVideo, MVideoWithFile } from '@server/types/models' 4import { MStreamingPlaylistFilesVideo, MVideoWithFile } from '@server/types/models'
@@ -108,8 +108,9 @@ async function buildSha256Segment (segmentPath: string) {
108 return sha256(buf) 108 return sha256(buf)
109} 109}
110 110
111function downloadPlaylistSegments (playlistUrl: string, destinationDir: string, timeout: number) { 111function downloadPlaylistSegments (playlistUrl: string, destinationDir: string, timeout: number, bodyKBLimit: number) {
112 let timer 112 let timer
113 let remainingBodyKBLimit = bodyKBLimit
113 114
114 logger.info('Importing HLS playlist %s', playlistUrl) 115 logger.info('Importing HLS playlist %s', playlistUrl)
115 116
@@ -136,8 +137,12 @@ function downloadPlaylistSegments (playlistUrl: string, destinationDir: string,
136 for (const fileUrl of fileUrls) { 137 for (const fileUrl of fileUrls) {
137 const destPath = join(tmpDirectory, basename(fileUrl)) 138 const destPath = join(tmpDirectory, basename(fileUrl))
138 139
139 const bodyKBLimit = 10 * 1000 * 1000 // 10GB 140 await doRequestAndSaveToFile(fileUrl, destPath, { bodyKBLimit: remainingBodyKBLimit })
140 await doRequestAndSaveToFile(fileUrl, destPath, { bodyKBLimit }) 141
142 const { size } = await stat(destPath)
143 remainingBodyKBLimit -= (size / 1000)
144
145 logger.debug('Downloaded HLS playlist file %s with %d kB remained limit.', fileUrl, Math.floor(remainingBodyKBLimit))
141 } 146 }
142 147
143 clearTimeout(timer) 148 clearTimeout(timer)