1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
package stream::config;
use strict;
use warnings;
use NetAddr::IP;
our $v4net = NetAddr::IP->new("151.216.0.0/17");
our $v6net = NetAddr::IP->new("2a02:ed02::/32");
our $multicast = "udp://\@233.191.12.1";
our $vlc_base_host = "http://stream.tg13.gathering.org";
our $tg = 13;
our $tg_full = 2013;
# priority = sorting order in streaming list
# port , "post port number"
# has_external , shows on OVH/.fr reflector if set
# external , replaces static url link
# source , video source pew pew
# title , title doh \:D/
our %streams = (
# Deaktivert 31.mars kl 05.30 iush
# 'event-ios' => {
# 'type' => 'event',
# 'quality' => 'hd',
# 'priority' => 26,
# 'external' => 1,
# 'url' => "$vlc_base_host/ios/event.m3u8",
# 'source' => 'Event',
# 'title' => 'Event HD Stream for iOS devices (Apple)',
# },
# 'event-hd' => {
# 'type' => 'event',
# 'quality' => 'hd',
# 'priority' => 20,
# 'port' => 13,
# 'interlaced' => 0,
# 'has_multicast' => 1,
# 'multicast_ip' => 'udp://@[ff7e:a40:2a02:ed02:ffff::13]',
# 'source' => 'Event',
# 'title' => 'Event HD (720p50)'
# },
# 'event-sd' => {
# 'type' => 'event',
# 'quality' => 'sd',
# 'priority' => 24,
# 'port' => 14,
# 'interlaced' => 0,
# 'has_multicast' => 1,
# 'multicast_ip' => 'udp://@[ff7e:a40:2a02:ed02:ffff::14]',
# 'source' => 'Event',
# 'title' => 'Event SD (576p) (2mbps)'
# },
# 'event-flash' => {
# 'type' => 'event',
# 'quality' => 'sd',
# 'priority' => 25,
# 'interlaced' => 0,
# 'external' => 1,
# 'url' => 'http://www.gathering.org/tg13/no/live-tv/',
# 'source' => 'Event',
# 'title' => 'Event SD (gathering.org flash player)',
# },
#
'south-raw' => {
'type' => 'camera',
'location' => 3,
'quality' => 'hd',
'priority' => 40,
'port' => 16,
'interlaced' => 1,
'has_multicast' => 0,
# 'multicast_ip' => "udp://@[ff7e:a40:2a02:ed02:ffff::16]",
'source' => 'Tech',
'title' => 'Webcam South (HD) (1080i25)',
},
'south-transcode' => {
'type' => 'camera',
'location' => 3,
'quality' => 'hd',
'priority' => 50,
'port' => 17,
'interlaced' => 0,
'has_multicast' => 1,
'multicast_ip' => "udp://@[ff7e:a40:2a02:ed02:ffff::17]",
'source' => 'Tech',
'title' => 'Webcam South (HD) (720p50)',
},
'fuglecam' => {
'type' => 'camera',
'location' => 2,
'quality' => 'hd',
'priority' => 118,
'port' => 15,
'interlaced' => 1,
'has_multicast' => 1,
'multicast_ip' => "udp://\@[ff7e:a40:2a02:ed02:ffff::15]",
'source' => 'Tech',
'title' => 'Webcam Fugleberget (HD) (1080i50)',
},
'fuglecam-flv-sd' => {
'location' => 2,
'type' => 'camera',
'quality' => 'sd',
'priority' => 121,
'interlaced' => 1,
'external' => 1,
'url' => 'http://www.gathering.org/tg13/no/webcam/',
'title' => 'Webcam Fugleberget (SD) (gathering.org flash player)',
},
'noc-fisheye' => {
'type' => 'camera',
'location' => 1,
'quality' => 'hd',
'priority' => 130,
'port' => 18,
'has_multicast' => 1,
'interlaced' => 0,
'multicast_ip' => "udp://@[ff7e:a40:2a02:ed02:ffff::18]:2018",
'source' => "Tech",
'title' => "Webcam NOC Fisheye (HD)"
},
'noc-fisheye-transcode' => {
'type' => 'camera',
'location' => 1,
'quality' => 'hd',
'priority' => 131,
'port' => 19,
'has_multicast' => 1,
'interlaced' => 0,
'multicast_ip' => "udp://@[ff7e:a40:2a02:ed02:ffff::19]:2019",
'source' => "Tech",
'title' => "Webcam NOC Fisheye (HD transcoded)"
},
'south-still' => {
'location' => 3,
'type' => 'camera',
'quality' => 'hd',
'priority' => 110,
'external' => 1,
'url' => 'http://stillcam.tg13.gathering.org/',
'title' => 'Webcam South (Image)',
'source' => 'Tech'
},
);
1;
|