aboutsummaryrefslogtreecommitdiff
path: root/configs/conferences/revision/config.php
diff options
context:
space:
mode:
authorAnton Schubert2021-04-03 23:28:32 +0200
committerAnton Schubert2021-04-03 23:28:32 +0200
commit449fe43f66e61d84c91829e467bc0d0ecbbfd46c (patch)
treea8dc1cc556d5962d1f18f4f5c3ad66a6989c0119 /configs/conferences/revision/config.php
parent99dcee2b9afe133f844cd33de522b435cfa46bcc (diff)
add h264-only feature and HQ stream for revision
Diffstat (limited to '')
-rw-r--r--configs/conferences/revision/config.php31
1 files changed, 30 insertions, 1 deletions
diff --git a/configs/conferences/revision/config.php b/configs/conferences/revision/config.php
index 6d0003d..febe0f8 100644
--- a/configs/conferences/revision/config.php
+++ b/configs/conferences/revision/config.php
@@ -111,8 +111,11 @@ $CONFIG['OVERVIEW'] = array(
*/
'GROUPS' => array(
'Live' => array(
- 'revision',
+ 'revision'
),
+ 'Live + HQ (Experimental)' => array(
+ 'revision_passthrough'
+ )
),
);
@@ -147,6 +150,32 @@ $CONFIG['ROOMS'] = array(
'TEXT' => '#revision',
),
),
+ 'revision_passthrough' => array(
+ 'DISPLAY' => 'revision Passthrough',
+ 'STREAM' => 'revision_passthrough',
+ 'PREVIEW' => true,
+
+ 'TRANSLATION' => true,
+ 'SD_VIDEO' => true,
+ 'HD_VIDEO' => true,
+ 'H264_ONLY' => true,
+ 'DASH' => true,
+ 'AUDIO' => true,
+ 'SLIDES' => false,
+ 'MUSIC' => false,
+
+ 'SCHEDULE' => false,
+ 'SCHEDULE_NAME' => 'revision',
+ 'FEEDBACK' => false,
+ 'SUBTITLES' => false,
+ 'EMBED' => true,
+ 'IRC' => false,
+ 'TWITTER' => false,
+ 'TWITTER_CONFIG' => array(
+ 'DISPLAY' => '#revision @ twitter/mastodon',
+ 'TEXT' => '#revision',
+ ),
+ ),
);