Oh you want the presentation minimized on start. To minimize the presentation there are two properties that you can use depending on whether you want users to be able to restore the presentation.
/usr/share/meteor/bundle/programs/server/assets/app/config/settings.yml
layout:
autoSwapLayout: false
hidePresentation: false
You can also pass the properties on the join API calls if you want to only have some meetings affected.
userdata-autoSwapLayout=true
userdata-hidePresentation=true
BigBlueButton is open source. If you wanted to setup your own BigBlueButton server with Canvas, you need to give the hostname and shared secret to your CSM so they can make the updates.
All you need to do is change two files in BigBlueButton for the audio to work.
- Edit
/opt/freeswitch/conf/dialplan/default/bbb_echo_test.xml
and change the text in bold
<include>
<extension name="bbb_echo_test_direct">
<condition field="destination_number" expression="^9196$|^9196(\d{5,20})$">
- Edit
/opt/freeswitch/conf/dialplan/default/bbb_conference.xml
and change the text in bold in two places:
<extension name="bbb_conferences_ws">
<condition field="destination_number" expression="^(\d{5,20})$">
.
.
<extension name="bbb_conferences">
<condition field="destination_number" expression="^(\d{5,20})$">
After you make the above changes, restart BigBlueButton.