You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
375 B
10 lines
375 B
#!/usr/bin/with-contenv bash
|
|
|
|
# we have to set it, otherwise chrome won't find ~/.asoundrc file
|
|
HOME=/home/jibri
|
|
|
|
DAEMON=/opt/jitsi/jibri/launch.sh
|
|
# pre-warm google chrome before jibri launches to ensure fast chrome launch during recordings
|
|
s6-setuidgid jibri /usr/bin/google-chrome --timeout=1000 --headless about:blank
|
|
exec s6-setuidgid jibri /bin/bash -c "exec $DAEMON"
|
|
|
|
|