Skip to content

Commit fa8759d

Browse files
authored
fix: audio codec from 'aac' to 'copy'
1 parent 813d099 commit fa8759d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

services/streamingService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async function buildFFmpegArgsForPlaylist(stream, playlist) {
143143
'-safe', '0',
144144
'-i', concatFile,
145145
'-c:v', 'copy',
146-
'-c:a', 'aac',
146+
'-c:a', 'copy',
147147
'-b:a', '128k',
148148
'-ar', '44100',
149149
'-f', 'flv',
@@ -232,7 +232,7 @@ async function buildFFmpegArgs(stream) {
232232
loopOption, loopValue,
233233
'-i', videoPath,
234234
'-c:v', 'copy',
235-
'-c:a', 'aac',
235+
'-c:a', 'copy',
236236
'-b:a', '128k',
237237
'-ar', '44100',
238238
'-f', 'flv',

0 commit comments

Comments
 (0)