summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJibon L. Costa <jiboncosta57@gmail.com>2020-03-28 20:34:52 +0600
committerGitHub <noreply@github.com>2020-03-28 20:34:52 +0600
commit55850d77277a336523530b8c14692faa275c8544 (patch)
treefb499af6cf36bc9a0bdf4e0c7d77324879d14260
parent1ed80e41505fd5379aad6415ce474864fe567b08 (diff)
downloadbbb-recorder-55850d77277a336523530b8c14692faa275c8544.tar.gz
bbb-recorder-55850d77277a336523530b8c14692faa275c8544.zip
set preset
-rw-r--r--ffmpegServer.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ffmpegServer.js b/ffmpegServer.js
index 0ab0e6a..da3d1ba 100644
--- a/ffmpegServer.js
+++ b/ffmpegServer.js
@@ -44,6 +44,7 @@ wss.on('connection', function connection(ws, req) {
'-f', 'flv',
'-max_muxing_queue_size', '99999',
+ '-preset', 'veryfast',
//'-vf', 'mpdecimate', '-vsync', 'vfr',
//'-vf', 'mpdecimate,setpts=N/FRAME_RATE/TB',
@@ -80,4 +81,4 @@ wss.on('connection', function connection(ws, req) {
ws.terminate();
});
-}); \ No newline at end of file
+});