aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Foiani <sotech117@Michaels-MacBook-Pro-5.local>2022-06-10 12:44:48 -0400
committerMichael Foiani <sotech117@Michaels-MacBook-Pro-5.local>2022-06-10 12:44:48 -0400
commit3627d2597ffb52f00c3b82456b1b6693006c93fa (patch)
tree75be66ca02ebd81629a095b0c2595e965e5a0a9c /src
parent0f70c97be61235f57272b8b074b0c2c7399c0d4d (diff)
remove console.logs
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'])