aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/DashUploadUtils.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/DashUploadUtils.ts b/src/server/DashUploadUtils.ts
index be30c115d..df5888c5a 100644
--- a/src/server/DashUploadUtils.ts
+++ b/src/server/DashUploadUtils.ts
@@ -71,7 +71,6 @@ export namespace DashUploadUtils {
const filePathsText = filePaths.map(filePath => `file '${filePath}'`).join('\n');
// write the text file to the file system
writeFile(textFilePath, filePathsText, (err) => console.log(err));
- console.log('fileTextPaths', filePathsText)
// make output file name based on timestamp
const outputFileName = `output-${Utils.GenerateGuid()}.mp4`;
@@ -80,7 +79,6 @@ export namespace DashUploadUtils {
// concatenate the videos
await new Promise((resolve, reject) => {
- console.log('concatenating videos');
var merge = ffmpeg();
merge.input(textFilePath)
.inputOptions(['-f concat', '-safe 0'])