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

Slightly different naming scheme for kurento recordings

parent e4a14011
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ screenshare-force-h264: true
recordScreenSharing: true
recordWebcams: true
recordingBasePath: "file:///var/kurento/recordings"
recordingBasePath: "file:///var/kurento"
log:
filename: '/var/log/bbb-webrtc-sfu/bbb-webrtc-sfu.log'
......
......@@ -31,9 +31,9 @@ module.exports = class RecordingSession extends MediaSession {
};
if (isScreenshare(recordingName)) {
return `${basePath}/${room}-SCREENSHARE/${recordingName}-${timestamp}.${format}`
return `${basePath}/screenshare/${room}/${recordingName}-${timestamp}.${format}`
} else {
return `${basePath}/${room}/${profile}-${recordingName}-${timestamp}.${format}`;
return `${basePath}/recordings/${room}/${profile}-${recordingName}-${timestamp}.${format}`;
}
}
......
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