docker/mod/recordings/bigbluebutton.yml

59 lines
1.9 KiB
YAML
Raw Normal View History

2020-12-23 23:58:24 +01:00
bbb_version: '2.1.0'
2020-04-09 22:33:27 +02:00
raw_audio_src: /var/freeswitch/meetings
raw_video_src: /usr/share/red5/webapps/video/streams
kurento_video_src: /var/kurento/recordings
kurento_screenshare_src: /var/kurento/screenshare
raw_screenshare_src: /usr/share/red5/webapps/screenshare/streams
raw_webrtc_deskshare_src: /usr/share/red5/webapps/video-broadcast/streams
raw_deskshare_src: /var/bigbluebutton/deskshare
raw_presentation_src: /var/bigbluebutton
notes_endpoint: http://etherpad:9001/p
2020-04-09 22:33:27 +02:00
# Specify the notes formats we archive
# txt, doc and odt are also supported
notes_formats:
2020-12-23 23:58:24 +01:00
- etherpad
- html
- pdf
2020-05-15 21:13:59 +02:00
redis_host: redis
2020-04-09 22:33:27 +02:00
redis_port: 6379
# Uncomment and set password if redis require it.
# redis_password: changeme
2020-12-23 23:58:24 +01:00
# redis_workers_host: 127.0.0.1
# redis_workers_port: 6379
2021-04-02 18:23:05 +02:00
# Set to true to insert recording process status into
# redis list with key "store_recording_status: true".
# This is useful if you want to track progress status
# and have another script process it.
store_recording_status: false
2020-12-23 23:58:24 +01:00
# Sequence of recording steps. Keys are the current step, values
# are the next step(s). Examples:
# current_step: next_step
# "current_step-format": "next_step-format"
# current_step:
# - next_step
# - another_step-format
steps:
archive: "sanity"
sanity: "captions"
captions: "process:presentation"
"process:presentation": "publish:presentation"
2020-04-09 22:33:27 +02:00
# For PRODUCTION
log_dir: /var/log/bigbluebutton
events_dir: /var/bigbluebutton/events
recording_dir: /var/bigbluebutton/recording
published_dir: /var/bigbluebutton/published
captions_dir: /var/bigbluebutton/captions
2020-06-18 01:03:47 +02:00
playback_host: {{ .Env.DOMAIN }}
2020-04-09 22:33:27 +02:00
playback_protocol: https
# For DEVELOPMENT
# This allows us to run the scripts manually
#scripts_dir: /home/ubuntu/dev/bigbluebutton/record-and-playback/core/scripts
#log_dir: /home/ubuntu/temp/log
#recording_dir: /home/ubuntu/temp/recording
#published_dir: /home/ubuntu/temp/published
2020-12-23 23:58:24 +01:00
#playback_host: 127.0.0.1