Skip to content

Commit 69ed81d

Browse files
authored
Remove DASH-IF testvectors for now as the certificate on the server has expired and it leads to browsers flagging the reference UI as unsecure (Dash-Industry-Forum#4833)
1 parent 7c7a518 commit 69ed81d

File tree

1 file changed

+2
-19
lines changed
  • samples/dash-if-reference-player/app

1 file changed

+2
-19
lines changed

samples/dash-if-reference-player/app/main.js

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
var app = angular.module('DashPlayer', ['DashSourcesService', 'DashContributorsService', 'DashIFTestVectorsService', 'angular-flot']);
3+
var app = angular.module('DashPlayer', ['DashSourcesService', 'DashContributorsService', 'angular-flot']);
44

55
$(document).ready(function () {
66
$('[data-toggle="tooltip"]').tooltip();
@@ -24,16 +24,7 @@ angular.module('DashContributorsService', ['ngResource']).factory('contributors'
2424
});
2525
});
2626

27-
angular.module('DashIFTestVectorsService', ['ngResource']).factory('dashifTestVectors', function ($resource) {
28-
return $resource('https://testassets.dashif.org/dashjs.json', {}, {
29-
query: {
30-
method: 'GET',
31-
isArray: false
32-
}
33-
});
34-
});
35-
36-
app.controller('DashController', ['$scope', '$window', 'sources', 'contributors', 'dashifTestVectors', function ($scope, $window, sources, contributors, dashifTestVectors) {
27+
app.controller('DashController', ['$scope', '$window', 'sources', 'contributors', function ($scope, $window, sources, contributors) {
3728
$scope.selectedItem = {
3829
url: 'https://dash.akamaized.net/akamai/bbb_30fps/bbb_30fps.mpd'
3930
};
@@ -50,14 +41,6 @@ app.controller('DashController', ['$scope', '$window', 'sources', 'contributors'
5041
}
5142
}
5243

53-
// DASH Industry Forum Test Vectors
54-
dashifTestVectors.query(function (data) {
55-
$scope.availableStreams.splice(7, 0, {
56-
name: 'DASH Industry Forum Test Vectors',
57-
submenu: data.items
58-
});
59-
});
60-
6144
// Add provider to beginning of each Vector
6245
var provider = data.provider;
6346
$scope.availableStreams.forEach(function (item) {

0 commit comments

Comments
 (0)