Skip to content

Commit

Permalink
enabled verbose ffmpeg stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
sticks-stuff committed Mar 24, 2023
1 parent 7881684 commit d36df50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (!fs.existsSync(serveDir)){
}

app.get('/', (req, res) => {
if(req.query.name1 === undefined) {
if(req.query.name1 === undefined || req.query.type === undefined) {
res.send("test successful");
return;
}
Expand Down Expand Up @@ -83,7 +83,7 @@ app.get('/', (req, res) => {
});

videoConcat({
silent: true, // if set to false, gives detailed output on console
silent: false, // if set to false, gives detailed output on console
overwrite: true //lets keep this at true just on the off chance that checking if the file exists fails
})
.clips(clips)
Expand Down

0 comments on commit d36df50

Please sign in to comment.