-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhy-livestreaming.html
More file actions
567 lines (530 loc) · 19.9 KB
/
why-livestreaming.html
File metadata and controls
567 lines (530 loc) · 19.9 KB
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Why Livestreaming | Streamn Dad</title>
<meta
name="description"
content="Why livestreaming youth hockey matters — connecting grandparents, out-of-town family, and fans who can't make it to the rink."
/>
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://streamn.dad/why-livestreaming.html" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Shippori+Mincho:wght@400;600&display=swap"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Shippori+Mincho:wght@400;600&display=swap"
rel="stylesheet"
/>
</noscript>
<style>
:root {
--forest: #1c4b2f;
--evergreen: #2f6b44;
--ice: #f4f7f5;
--ink: #16231c;
--ember: #c89b4b;
--shadow: 0 18px 32px rgba(12, 26, 18, 0.16);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Shippori Mincho", "Times New Roman", serif;
background: radial-gradient(circle at top, #ffffff 0%, #eef3ef 40%, #dfe9df 100%);
color: var(--ink);
}
a {
color: inherit;
text-decoration: none;
}
.page {
max-width: 980px;
margin: 0 auto;
padding: 28px clamp(18px, 4vw, 56px) 64px;
display: grid;
gap: 28px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
header a {
font-family: "Oswald", "Arial Narrow", sans-serif;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--forest);
}
nav {
display: flex;
gap: 16px;
font-size: 12px;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.hero {
background: #fff;
border-radius: 24px;
padding: 24px;
box-shadow: var(--shadow);
border: 1px solid rgba(28, 75, 47, 0.12);
display: grid;
gap: 12px;
}
.hero-header {
display: flex;
align-items: center;
gap: 12px;
}
.hero-header img {
width: 48px;
height: auto;
}
.hero h1 {
font-family: "Oswald", "Arial Narrow", sans-serif;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--forest);
}
.hero p {
line-height: 1.7;
}
.info-stack {
display: grid;
gap: 18px;
}
.info-block {
background: #fdfefd;
border-radius: 20px;
padding: 20px;
display: grid;
grid-template-columns: 64px 1fr;
gap: 16px;
border: 1px solid rgba(28, 75, 47, 0.12);
box-shadow: 0 12px 24px rgba(14, 31, 21, 0.12);
}
.icon {
width: 64px;
height: 64px;
border-radius: 16px;
background: linear-gradient(135deg, rgba(31, 78, 52, 0.18), rgba(200, 155, 75, 0.22));
border: 1px solid rgba(28, 75, 47, 0.2);
}
.info-block h2 {
font-family: "Oswald", "Arial Narrow", sans-serif;
letter-spacing: 0.1em;
text-transform: uppercase;
font-size: 16px;
color: var(--evergreen);
margin-bottom: 8px;
}
.info-block p {
line-height: 1.7;
}
.info-block ul {
list-style: none;
display: grid;
gap: 8px;
margin-top: 10px;
}
.info-block li {
position: relative;
padding-left: 16px;
}
.info-block li::before {
content: "";
position: absolute;
left: 0;
top: 9px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--ember);
}
footer {
display: flex;
flex-direction: column;
gap: 8px;
font-size: 14px;
color: #344339;
padding-top: 12px;
border-top: 1px solid rgba(22, 35, 28, 0.1);
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: 12px;
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
footer a {
color: var(--forest);
font-weight: 600;
}
.tagline {
font-family: "Oswald", "Arial Narrow", sans-serif;
letter-spacing: 0.3em;
text-transform: uppercase;
font-size: 12px;
color: var(--evergreen);
}
@media (max-width: 720px) {
nav {
display: none;
}
.info-block {
grid-template-columns: 1fr;
}
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VB45312ZVK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VB45312ZVK');
</script>
</head>
<body>
<div class="page">
<header>
<a href="index.html">Streamn Dad</a>
<nav>
<a href="index.html#guides">Guides</a>
<a href="privacy.html">Privacy</a>
</nav>
</header>
<section class="hero">
<div class="hero-header">
<img src="assets/images/icon-streaming.png" alt="Livestreaming icon" />
<h1>Why Livestreaming</h1>
</div>
<p>
Livestreaming makes youth sports more accessible. It keeps families close to the action,
helps players relive their progress, and shows what is possible with everyday gear. This
guide also covers a simple getting-started path and the main choices between services and
DIY setups.
</p>
</section>
<section class="info-stack">
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Families stay close</h2>
<p>
Grandparents, siblings, and friends can watch even when travel or schedules get in
the way.
</p>
<ul>
<li>Relive big moments together.</li>
<li>Share clips with extended family.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Players grow faster</h2>
<p>
Streams become highlight reels and a way to review progress across the season.
</p>
<ul>
<li>Learn from shifts and replays.</li>
<li>Celebrate milestones and teamwork.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Teams and community</h2>
<p>
Keep families informed and build a stronger culture while bringing visibility to
youth sports.
</p>
<ul>
<li>Share game recaps and highlights.</li>
<li>Spotlight volunteers and coaches.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Personal growth</h2>
<p>
Livestreaming is a sandbox for learning new tools, building workflows, and sharing
knowledge.
</p>
<ul>
<li>Practice storytelling and production.</li>
<li>Build technical confidence.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Getting started basics</h2>
<p>Start small, then add polish once the basics work reliably.</p>
<ul>
<li>Pick a goal for the first stream.</li>
<li>Choose a path (service or DIY).</li>
<li>Minimum gear: camera, tripod, stable upload.</li>
<li>Test before game day for audio and framing.</li>
<li>Share responsibly and respect privacy requests.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Service vs DIY</h2>
<p>
There is no single right path. Choose what fits your time, budget, and comfort level,
then iterate from there.
</p>
<ul>
<li>Services are fast to start, but come with fees and limited control.</li>
<li>DIY setups take more effort, but give you flexibility and ownership.</li>
<li>Automated gear sits between the two with higher hardware costs.</li>
</ul>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Service vs DIY chart</h2>
<p>Category, link, and objective pros/cons.</p>
<div style="overflow-x: auto;">
<table
style="
width: 100%;
border-collapse: collapse;
font-size: 15px;
border: 1px solid rgba(28, 75, 47, 0.2);
"
>
<thead>
<tr style="text-align: left; background: rgba(28, 75, 47, 0.08);">
<th style="padding: 10px 12px; border-bottom: 1px solid rgba(28, 75, 47, 0.2);">
Category
</th>
<th style="padding: 10px 12px; border-bottom: 1px solid rgba(28, 75, 47, 0.2);">
Link
</th>
<th style="padding: 10px 12px; border-bottom: 1px solid rgba(28, 75, 47, 0.2);">
Details
</th>
</tr>
</thead>
<tbody>
<tr style="background: rgba(244, 247, 245, 0.85);">
<td style="padding: 12px;">Rink service</td>
<td style="padding: 12px;">
<a href="https://livebarn.com/">LiveBarn</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Managed service with supported rink listings online.</li>
<li>Monthly or annual fees.</li>
<li>Supports scoreboard, clock, and penalties with margin of error.</li>
<li>Offers additional AI services for player feedback.</li>
<li>Based on rink availability.</li>
<li>Not all features supported at every rink.</li>
<li>Blackouts based on ice schedule.</li>
<li>Video quality is subpar.</li>
<li>Motion control of action can miss plays.</li>
<li>No native apps outside of mobile and browser (need to cast to other devices).</li>
</ul>
</td>
</tr>
<tr style="background: rgba(255, 255, 255, 0.9);">
<td style="padding: 12px;">Rink service</td>
<td style="padding: 12px;">
<a href="https://www.mnhockey.tv/en">Minnesota Hockey TV</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Managed service with supported rink listings online.</li>
<li>Monthly or annual fees.</li>
<li>Supports scoreboard, clock, and penalties with margin of error.</li>
<li>Branded content for team game information.</li>
<li>Based on rink availability.</li>
<li>Not all features supported at every rink.</li>
<li>Video quality is subpar.</li>
<li>Motion control of action can miss plays.</li>
<li>No native apps outside of mobile and browser (need to cast to other devices).</li>
</ul>
</td>
</tr>
<tr style="background: rgba(244, 247, 245, 0.85);">
<td style="padding: 12px;">Automated gear</td>
<td style="padding: 12px;">
<a href="https://www.pixellot.tv/sports/ice-hockey/">Pixellot</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Auto-tracking camera system.</li>
<li>Hardware investment required.</li>
</ul>
</td>
</tr>
<tr style="background: rgba(255, 255, 255, 0.9);">
<td style="padding: 12px;">Automated gear</td>
<td style="padding: 12px;">
<a href="https://shop.movensee.com/en/use-cases/sports/hockey.html">Move'n See</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>AI-assisted tracking options.</li>
<li>Setup and tuning required.</li>
</ul>
</td>
</tr>
<tr style="background: rgba(244, 247, 245, 0.85);">
<td style="padding: 12px;">Automated gear</td>
<td style="padding: 12px;">
<a href="https://playsight.com/our-sports/hockey/">PlaySight</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Automated capture and replay.</li>
<li>Typically installed per facility.</li>
</ul>
</td>
</tr>
<tr style="background: rgba(255, 255, 255, 0.9);">
<td style="padding: 12px;">Automated gear</td>
<td style="padding: 12px;">
<a href="https://xbotgo.com/">XbotGo</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>AI-powered auto-tracking camera system.</li>
<li>Portable and sports-focused.</li>
<li>Hardware investment required.</li>
</ul>
</td>
</tr>
<tr style="background: rgba(244, 247, 245, 0.85);">
<td style="padding: 12px;">Team service</td>
<td style="padding: 12px;">
<a href="https://home.sidelinehd.com/hockey">Sideline HD</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Free to stream, free to watch.</li>
<li>Works with phone, GoPro, or any RTMP camera.</li>
<li>Streams to Facebook, YouTube, or sidelineLIVE.</li>
<li>Pro overlays with team logos and colors.</li>
<li>Box scores, play-by-play, player profiles, and highlight galleries built in.</li>
<li>Simple scoreboard anyone on the team can run.</li>
<li>You handle camera setup and streaming.</li>
</ul>
</td>
</tr>
<tr style="background: rgba(255, 255, 255, 0.9);">
<td style="padding: 12px;">Hosted platform</td>
<td style="padding: 12px;">
<a href="https://www.youtube.com/">YouTube</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Free hosting with wide reach.</li>
<li>Own your content archive.</li>
<li>You handle production setup.</li>
</ul>
</td>
</tr>
<tr style="background: rgba(244, 247, 245, 0.85);">
<td style="padding: 12px;">Hosted platform</td>
<td style="padding: 12px;">
<a href="https://www.facebook.com/">Facebook</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Strong local community reach.</li>
<li>Policies can limit reach.</li>
</ul>
</td>
</tr>
<tr style="background: rgba(255, 255, 255, 0.9);">
<td style="padding: 12px;">Hosted platform</td>
<td style="padding: 12px;">
<a href="https://www.sportsengine.com/live">SportsEngine Live</a>
</td>
<td style="padding: 12px;">
<ul style="margin: 6px 0 0 18px;">
<li>Sports-focused distribution.</li>
<li>May require account setup.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</article>
<article class="info-block">
<div class="icon"></div>
<div>
<h2>Common options</h2>
<p>Here are the main categories I see families and teams choosing from.</p>
<ul>
<li>
Rink services:
<a href="https://livebarn.com/">LiveBarn</a>,
<a href="https://www.mnhockey.tv/en">Minnesota Hockey TV</a>.
</li>
<li>
Team services:
<a href="https://home.sidelinehd.com/hockey">Sideline HD</a>.
</li>
<li>
Automated gear:
<a href="https://www.pixellot.tv/sports/ice-hockey/">Pixellot</a>,
<a href="https://shop.movensee.com/en/use-cases/sports/hockey.html">Move'n See</a>,
<a href="https://playsight.com/our-sports/hockey/">PlaySight</a>,
<a href="https://xbotgo.com/">XbotGo</a>.
</li>
<li>
Hosted platforms:
<a href="https://www.youtube.com/">YouTube</a>,
<a href="https://www.facebook.com/">Facebook</a>,
<a href="https://www.sportsengine.com/live">SportsEngine Live</a>.
</li>
</ul>
</div>
</article>
</section>
<footer>
<span class="tagline">Streamn Dad • Minnesota</span>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="why-livestreaming.html">Why Livestreaming</a>
<a href="gear-basics.html">Gear</a>
<a href="software.html">Software</a>
<a href="workflow-sharing.html">Workflow</a>
<a href="story.html">Story</a>
<a href="privacy.html">Privacy</a>
<a href="content-policy.html">Content Policy</a>
</div>
<span>© 2026 Streamn Dad. All rights reserved.</span>
</footer>
</div>
</body>
</html>