mirror of
https://github.com/snobu/destreamer.git
synced 2026-02-18 12:39:42 +00:00
Add option to change encoder and container (#114)
This change enables the user to select a specific container and/or encoder for the output. As this change forces ffmpeg to use copy by default, destreamer now uses mkv as default output. This might be needed when MS Streams doesn't offer a mp4 compatible stream. mkv offers much more support.
This commit is contained in:
@@ -212,13 +212,16 @@ async function downloadVideo(videoUrls: string[], outputDirectories: string[], s
|
||||
}
|
||||
};
|
||||
|
||||
const outputPath = outputDirectories[j] + path.sep + video.title + '.mp4';
|
||||
const outputPath = outputDirectories[j] + path.sep + video.title + '.' + argv.format;
|
||||
const ffmpegInpt = new FFmpegInput(video.playbackUrl, new Map([
|
||||
['headers', headers]
|
||||
]));
|
||||
const ffmpegOutput = new FFmpegOutput(outputPath);
|
||||
const ffmpegOutput = new FFmpegOutput(outputPath, new Map([
|
||||
argv.encodeAudio === 'none' ? ['an', null] : ['c:a', argv.encodeAudio],
|
||||
argv.encodeVideo === 'none' ? ['vn', null] : ['c:v', argv.encodeVideo]
|
||||
]));
|
||||
const ffmpegCmd = new FFmpegCommand();
|
||||
|
||||
|
||||
const cleanupFn = (): void => {
|
||||
pbar.stop();
|
||||
|
||||
@@ -271,7 +274,7 @@ async function downloadVideo(videoUrls: string[], outputDirectories: string[], s
|
||||
|
||||
ffmpegCmd.spawn();
|
||||
});
|
||||
|
||||
|
||||
process.removeListener('SIGINT', cleanupFn);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user