aboutsummaryrefslogtreecommitdiff
path: root/template/assemblies/switcher/dash.phtml
blob: 63b8381081cc5c045b9a64f7a2b851920f9d23a5 (plain)
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
<div class="container-fluid">

	<div class="notes well">
		<h3 class="beta">WARNING! BETA!</h3>
		<p><a href="https://en.wikipedia.org/wiki/Dynamic_Adaptive_Streaming_over_HTTP">DASH</a> is an adaptive-bitrate HTTP-based streaming solution, that is (unlike existing proprietary solutions such as HLS) internationally standardized.</p>
		<p>Support for DASH in open source software such as ffmpeg is still pretty rough, so consider this a technology-preview, it's not yet a stable solution.</p>
		<p>Please report your experience to <a href="https://twitter.com/c3streaming">@c3streaming</a>, but please don't expect full support.</p>
	</div>


	<div class="directlinks">
		<h3>Direct links</h3>

		<div class="row">
			<div class="col-lg-3 col-md-4 col-lg-5 col-xs-12">

				<div class="btn-group" role="group">
					<div class="btn btn-primary" disabled>DASH</div>
					<a href="<?=h($room->getDashManifestUrl())?>" target="_blank" class="btn btn-default">
						<span class="fa fa-flask"></span>
						Manifest
					</a>
				</div>

				<div class="btn-group" role="group">
					<div class="btn btn-primary" disabled>HLS</div>
					<a href="<?=h($room->GetHLSPlaylistUrl())?>" target="_blank" class="btn btn-default">
						<span class="fa fa-flask"></span>
						Playlist
					</a>
				</div>

			</div>
		</div>
	</div>

</div>