Skip to content

Commit

Permalink
removed screen recording from ffmpeg command
Browse files Browse the repository at this point in the history
  • Loading branch information
hanayik committed May 11, 2018
1 parent 2d50eb3 commit a45250d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions core.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,19 +234,13 @@ function ff() {
this.ffmpegPath +
' ' + this.shouldOverwrite +
' -thread_queue_size ' + this.threadQueSize +
' -f ' + this.screenFormat +
' -framerate ' + this.getFramerate().toString() +
' -i ' + '"' + this.screenDeviceID + '"' +
' -thread_queue_size ' + this.threadQueSize +
' -f ' + this.cameraFormat +
' -framerate ' + this.getFramerate().toString() +
' -video_size ' + this.videoSize +
' -i "' + this.cameraDeviceID + '":"' + this.audioDeviceID + '"' +
' -profile:v baseline' +
' -c:v ' + this.videoCodec +
' -crf ' + this.recQuality +
' -preset ultrafast' +
' -filter_complex ' + this.filter +
' -r ' + this.getFramerate().toString() +
' -movflags +faststart ' + '"' + this.outputFilename() + '"'
]
Expand Down

0 comments on commit a45250d

Please sign in to comment.