diff options
author | MaZderMind | 2016-12-22 21:25:41 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-22 21:25:41 +0100 |
commit | c39ac0526f998693398e6504e5a3b77a199eebcf (patch) | |
tree | 3f3eb83e02b5fd6c9c30e96757e2290e137fc422 /template/assemblies | |
parent | e9f3659fe8bdcd7256bdef9083e28eac6633ddd7 (diff) |
add switcher and beta-marker
Diffstat (limited to 'template/assemblies')
-rw-r--r-- | template/assemblies/switcher/dash.phtml | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/template/assemblies/switcher/dash.phtml b/template/assemblies/switcher/dash.phtml index a597ad4..164af12 100644 --- a/template/assemblies/switcher/dash.phtml +++ b/template/assemblies/switcher/dash.phtml @@ -1 +1,29 @@ -<h2 style="text-align: center; margin: 40px 0;">DASH-Format-Selector coming soon</h1> +<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> + </div> + </div> + +</div> |