Skip to content

Commit

Permalink
Add disableInitialGUM to recorder options
Browse files Browse the repository at this point in the history
Sort them alphabetically, while I'm at it.
  • Loading branch information
saghul committed Feb 29, 2024
1 parent 081b935 commit df5bfaa
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/main/kotlin/org/jitsi/jibri/selenium/JibriSelenium.kt
Original file line number Diff line number Diff line change
Expand Up @@ -145,16 +145,17 @@ val SIP_GW_URL_OPTIONS = listOf(
)

val RECORDING_URL_OPTIONS = listOf(
"config.iAmRecorder=true",
"config.externalConnectUrl=null",
"config.startWithAudioMuted=true",
"config.startWithVideoMuted=true",
"interfaceConfig.APP_NAME=\"Jibri\"",
"config.analytics.disabled=true",
"config.disableInitialGUM=true",
"config.externalConnectUrl=null",
"config.iAmRecorder=true",
"config.p2p.enabled=false",
"config.prejoinPageEnabled=false",
"config.prejoinConfig.enabled=false",
"config.requireDisplayName=false"
"config.prejoinPageEnabled=false",
"config.requireDisplayName=false",
"config.startWithAudioMuted=true",
"config.startWithVideoMuted=true",
"interfaceConfig.APP_NAME=\"Jibri\""
)

/**
Expand Down

0 comments on commit df5bfaa

Please sign in to comment.