Skip to content

Commit

Permalink
added toString to ffmpeg command
Browse files Browse the repository at this point in the history
  • Loading branch information
hanayik committed Feb 28, 2018
1 parent 8eed353 commit c89a8d4
Show file tree
Hide file tree
Showing 3 changed files with 2,058 additions and 2 deletions.
3 changes: 2 additions & 1 deletion core.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,9 @@ function ff() {
' -crf ' + this.recQuality +
' -preset ultrafast' +
' -r ' + this.getFramerate().toString() +
' -movflags +faststart ' + '"' + this.outputFilename() + '"'
' ' + '"' + this.outputFilename() + '"'
]
cmd = cmd.toString()
console.log('ffmpeg cmd: ')
console.log(cmd)
this.isRecording = true
Expand Down
Loading

0 comments on commit c89a8d4

Please sign in to comment.