浏览代码

Add instructions for enabling recoridng.

master
Boris Grozev 11 年前
父节点
当前提交
fb33131488
共有 1 个文件被更改,包括 23 次插入0 次删除
  1. 23
    0
      INSTALL.md

+ 23
- 0
INSTALL.md 查看文件

230
 
230
 
231
 # Hold your first conference
231
 # Hold your first conference
232
 You are now all set and ready to have your first meet by going to http://jitsi.example.com
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.

正在加载...
取消
保存