diff options
Diffstat (limited to 'server/lib/hls.ts')
-rw-r--r-- | server/lib/hls.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/hls.ts b/server/lib/hls.ts index c94b599df..443a60088 100644 --- a/server/lib/hls.ts +++ b/server/lib/hls.ts | |||
@@ -50,8 +50,8 @@ async function updateMasterHLSPlaylist (video: MVideoWithFile) { | |||
50 | let line = `#EXT-X-STREAM-INF:${bandwidth},${resolution}` | 50 | let line = `#EXT-X-STREAM-INF:${bandwidth},${resolution}` |
51 | if (file.fps) line += ',FRAME-RATE=' + file.fps | 51 | if (file.fps) line += ',FRAME-RATE=' + file.fps |
52 | 52 | ||
53 | const audioCodec = await getAudioStreamCodec(filePlaylistPath) | 53 | const audioCodec = await getAudioStreamCodec(videoFilePath) |
54 | const videoCodec = await getVideoStreamCodec(filePlaylistPath) | 54 | const videoCodec = await getVideoStreamCodec(videoFilePath) |
55 | line += `,CODECS="${videoCodec},${audioCodec}"` | 55 | line += `,CODECS="${videoCodec},${audioCodec}"` |
56 | 56 | ||
57 | masterPlaylists.push(line) | 57 | masterPlaylists.push(line) |