Skip to content
Snippets Groups Projects
Commit aeac7769 authored by Lucas Fialho Zawacki's avatar Lucas Fialho Zawacki
Browse files

Configure enabling/disabling of recordings on html5

parent 38db6175
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,8 @@ from-audio: "from-audio-sfu"
to-audio: "to-audio-sfu"
to-akka: "to-akka-apps-redis-channel"
recordScreenSharing: true
recordWebcams: true
recordingBasePath: "file:///var/kurento/recordings"
log:
......
......@@ -109,7 +109,7 @@ module.exports = class Video {
}), C.FROM_VIDEO);
// Record the video stream if it's the original being shared
if (this.shared) {
if (config.get('recordWebcams') && this.shared) {
this.startRecording();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment