Preserve timestamp also for merged export files #487

pull/508/head
Mikael Finstad 2020-11-22 23:30:12 +01:00
rodzic f61985f39c
commit 19087eedd1
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -513,8 +513,10 @@ export async function mergeFiles({ paths, outPath, allStreams, outFormat, ffmpeg
stringToStream(concatTxt).pipe(process.stdin);
const result = await process;
console.log(result.stdout);
const { stdout } = await process;
console.log(stdout);
await transferTimestamps(paths[0], outPath);
}
export async function autoMergeSegments({ customOutDir, sourceFile, isCustomFormatSelected, outFormat, segmentPaths, ffmpegExperimental, onProgress }) {