-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from spiterikevin/development
Merge recent changes from Dash-Industry-Forum development.
- Loading branch information
Showing
44 changed files
with
686 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
body { | ||
background-color : #294f6b; | ||
color:white; | ||
font-size: 14px; | ||
} | ||
|
||
a { | ||
color: #59b4d4; | ||
} | ||
a:hover { | ||
color: lightgrey; | ||
} | ||
|
||
.panel { | ||
color:black; | ||
} | ||
|
||
.xlink-item { | ||
cursor: pointer; | ||
color: #337ab7; | ||
} | ||
|
||
.tdcursor { | ||
cursor:pointer; | ||
color: #337ab7; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
|
||
<head> | ||
<title>Fraunhofer Fokus - Ad Insertion Sample</title> | ||
<script src="../../dist/dash.all.debug.js"></script> | ||
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script> | ||
<link href="css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="css/main.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-md-2"><a href="https://www.fokus.fraunhofer.de/go/fame"><img src="img/fokus.png" | ||
class="img-responsive"></a></div> | ||
<div class="col-md-2"><a href="https://www.fokus.fraunhofer.de/go/fame"><img src="img/fame.png" | ||
class="img-responsive "></a></div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-4"> | ||
<h4>Post-Roll Ad-Insertion with DASH + W3C MediaSource Extensions + Inband Event MPD Reload</h4> | ||
<div class="panel panel-primary"> | ||
<div class="panel-heading"> | ||
<h3 class="panel-title">Working principle</h3> | ||
</div> | ||
<div class="panel-body"> | ||
<ol> | ||
<li>The server provides an MPD containing an InbandEventStream element on Period Level. | ||
The schmeIdUri and the value of the Eventstream are set according to ISO/IEC 23009-1 | ||
5.10.4.1.<br> | ||
<pre><InbandEventStream schemeIdUri="urn:mpeg:dash:event:2012" value="1"/></pre> | ||
Additionally one segment contains an EMSG Box with the same schemeIdUri and the same value. | ||
</li> | ||
<li>During the playback the Client parses the EMSG Box, removes it from the segment and | ||
schedules the MPD Reload. | ||
</li> | ||
<li>The new MPD contains an additional period with ad content, which will be played after 20 | ||
seconds | ||
</li> | ||
</ol> | ||
<img src="img/event_wf.png" class="img-responsive"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-md-8"> | ||
<video controls="true" id="vid" width="640" height="480"></video> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-2"><p><a href="index.html">Back to selection</a></p></div> | ||
</div> | ||
</div> | ||
<script> (function () { | ||
$.get("http://se-mashup.fokus.fraunhofer.de:8080/getSession", function (data) { | ||
var url = "http://se-mashup.fokus.fraunhofer.de:8080/dash/assets/adinsertion-samples/events/inband/dash.mpd?sid=" + data.sessionID; | ||
var player = dashjs.MediaPlayer().create(); | ||
player.initialize(document.querySelector("#vid"), url, true); | ||
}) | ||
})(); | ||
</script> | ||
</body> | ||
</html></title> | ||
</head> | ||
<body> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.