I have configured the Jitsi-Meet, Jicofo, Prosody and Jitsi-videobridge2. And also configured the Jibri with Jitsi-Meet. I have checked that it working fine, it records the video fine but the issue is it doesn’t save the recorded video in directory.
I have also done this :
Make a directory to store recordings and set its permissions appropriately:
mkdir /recordingschown jibri:jibri /recordings
Configure Jibri:
nano /etc/jitsi/jibri/config.json
Here is the code :
jibri {
api {
xmpp {
environments = [
{
name = “jitsi.example.com”
recording_directory = “/recordings”
xmpp-server-hosts = [“jitsi.example.com”]
xmpp-domain = “jitsi.example.com”
control-login {
domain = “auth.jitsi.example.com”
username = “jibri”
password = “jibriauthpass”
port = 5222
}
control-muc {
domain = “internal.auth.jitsi.example.com”
room-name = “JibriBrewery”
nickname = “myjibri-1-2-3-4”
}
call-login {
domain = “recorder.jitsi.example.com”
username = “recorder”
password = “jibrirecorderpass”
}
strip-from-room-domain = “conference.”
trust-all-xmpp-certs = true
usage-timeout = “0”
}
]
}
}
recording {
finalize-script = “/path/to/your/finalize/script.sh”
}
chrome {
flags = [
“–use-fake-ui-for-media-stream”,
“–start-maximized”,
“–kiosk”,
“–enabled”,
“–disable-infobars”,
“–autoplay-policy=no-user-gesture-required”,
“–no-sandbox”,
“–disable-features=NetworkService”,
“–disable-extensions”,
“–disable-dev-shm-usage”,
“–disable-gpu”,
“–disable-software-rasterizer”,
“–disable-background-timer-throttling”,
“–disable-renderer-backgrounding”
]
}
}
Please guide me how can i save the video in directory.