|
@@ -230,3 +230,26 @@ org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=<Public.IP.Address>
|
230
|
230
|
|
231
|
231
|
# Hold your first conference
|
232
|
232
|
You are now all set and ready to have your first meet by going to http://jitsi.example.com
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+## Enabling recording
|
|
236
|
+Currently recording is only supported for linux-64 and macos. To enable it, add
|
|
237
|
+the following properties to sip-communicator.properties:
|
|
238
|
+```
|
|
239
|
+org.jitsi.videobridge.ENABLE_MEDIA_RECORDING=true
|
|
240
|
+org.jitsi.videobridge.MEDIA_RECORDING_PATH=/path/to/recordings/dir
|
|
241
|
+org.jitsi.videobridge.MEDIA_RECORDING_TOKEN=secret
|
|
242
|
+```
|
|
243
|
+
|
|
244
|
+where /path/to/recordings/dir is the path to a pre-existing directory where recordings
|
|
245
|
+will be stored (needs to be writeable by the user running jitsi-videobridge),
|
|
246
|
+and "secret" is a string which will be used for authentication.
|
|
247
|
+
|
|
248
|
+Then, edit the Jitsi-Meet config.js file and set:
|
|
249
|
+```
|
|
250
|
+enableRecoridng: true
|
|
251
|
+```
|
|
252
|
+
|
|
253
|
+Restart jitsi-videobridge and start a new conference (making sure that the page
|
|
254
|
+is reloaded with the new config.js) -- the organizer of the conference should
|
|
255
|
+now have a "recoriding" button in the floating menu, near the "mute" button.
|