Skip to content

Commit 5c66283

Browse files
Include all streams when concatenating
1 parent 20b9319 commit 5c66283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ffmpeg.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ return class.create(function(ffmpeg)
176176
end
177177
local concatFile = self:createTempFile('concat.txt');
178178
concatFile:write(concatScript:toString());
179-
table.insert(commands, self:computeArguments(filename, {'-c', 'copy'}, concatFile:getPath(), {'-f', 'concat', '-safe', '0'}))
179+
table.insert(commands, self:computeArguments(filename, {'-c', 'copy', '-map', '0'}, concatFile:getPath(), {'-f', 'concat', '-safe', '0'}))
180180
end
181181
return commands
182182
end

0 commit comments

Comments
 (0)