Skip to content

Commit

Permalink
Merge pull request #71 from slverma/master
Browse files Browse the repository at this point in the history
fixing videoOptions on addLogo method
  • Loading branch information
h2non authored Sep 13, 2018
2 parents 70743bd + 3aa136c commit ac87118
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ function renderVideo(videoshow, options, forwardEvent, cb) {
copy(output, tempfile, function (err) {
if (err) return cb(err)

ffmpeg(tempfile)
var logo = ffmpeg(tempfile)
applyVideoOptions(logo, videoOptions)
logo
.input(videoOptions.logo)
.complexFilter(logoFilter(videoshow))
.on('error', clean(cb))
Expand Down

0 comments on commit ac87118

Please sign in to comment.