Skip to content

Commit c92ee88

Browse files
committed
Remove -c copy in concatDemuxer to be more flexible
1 parent cbf7c0e commit c92ee88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/createWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ module.exports = (_options = {}) => {
145145
const concatDemuxer = async (input, output, opts = '', jobId) => {
146146
const text = input.reduce((acc, path) => `${acc}\nfile ${path}`, '');
147147
await writeText('concat_list.txt', text);
148-
return run(`-f concat -safe 0 -i concat_list.txt -c copy ${opts} ${output}`, jobId);
148+
return run(`-f concat -safe 0 -i concat_list.txt ${opts} ${output}`, jobId);
149149
};
150150

151151
const terminate = async (jobId) => {

0 commit comments

Comments
 (0)