transfer timestamp when html5ifying also

pull/109/head
Mikael Finstad 2018-09-09 20:43:54 +02:00
rodzic aab07e848f
commit 197c2f9418
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -96,7 +96,7 @@ async function cut({
const result = await process;
console.log(result.stdout);
return util.transferTimestamps(filePath, outPath);
await util.transferTimestamps(filePath, outPath);
}
async function html5ify(filePath, outPath, encodeVideo) {
@ -118,6 +118,8 @@ async function html5ify(filePath, outPath, encodeVideo) {
const process = execa(ffmpegPath, ffmpegArgs);
const result = await process;
console.log(result.stdout);
await util.transferTimestamps(filePath, outPath);
}
/**