Skip to content

Commit a9bb117

Browse files
authored
Add configuration for TDF 2025 (#263)
1 parent 8d317f7 commit a9bb117

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?php
2+
3+
$CONFIG['CONFERENCE'] = array(
4+
'STARTS_AT' => strtotime("2025-07-26 11:00"),
5+
'ENDS_AT' => strtotime("2025-07-27 19:00"),
6+
'TITLE' => '4. Tübinger Tage der digitalen Freiheit',
7+
'AUTHOR' => 'Chaostreff Tübingen e.V. (CTT)',
8+
'FOOTER_HTML' => '
9+
by <a href="https://cttue.de/">Chaostreff Tübingen e.V. (CTT)</a>,
10+
<a href="https://chaoswest.tv">Chaos-West TV</a> &amp;
11+
<a href="https://c3voc.de">C3VOC</a>
12+
',
13+
'RELEASES' => 'https://media.ccc.de/b/events/tdf/2025',
14+
);
15+
16+
$CONFIG['OVERVIEW'] = array(
17+
'GROUPS' => array(
18+
'Lecture Rooms' => array(
19+
'stage1',
20+
),
21+
),
22+
);
23+
24+
$CONFIG['ROOMS'] = array(
25+
'stage1' => array(
26+
'DISPLAY' => 'Bühne 1 (EG)',
27+
'STREAM' => 'cwtv',
28+
'PREVIEW' => true,
29+
'TRANSLATION' => false,
30+
'DASH' => true,
31+
'SD_VIDEO' => true,
32+
'HD_VIDEO' => true,
33+
'H264_ONLY' => true,
34+
'SLIDES' => false,
35+
'AUDIO' => true,
36+
'MUSIC' => false,
37+
'SCHEDULE' => true,
38+
'SCHEDULE_NAME' => 'Bühne 1 (EG)',
39+
'FEEDBACK' => false,
40+
'SUBTITLES' => false,
41+
'EMBED' => true,
42+
'IRC' => false,
43+
'TWITTER' => false,
44+
),
45+
);
46+
47+
$CONFIG['EMBED'] = true;
48+
49+
$CONFIG['SCHEDULE'] = array(
50+
'URL' => 'https://cfp.cttue.de/tdf4/schedule/export/schedule.xml',
51+
'SCALE' => 7,
52+
'SIMULATE_OFFSET' => 0,
53+
);
54+
55+
return $CONFIG;

0 commit comments

Comments
 (0)