add a service : WebTV Normandie Université

This commit is contained in:
Chancellier Pierre-Jean 2021-09-16 13:54:23 +02:00
parent eba117a9e4
commit 922930e750
1 changed files with 27 additions and 0 deletions

View File

@ -4808,6 +4808,7 @@ tarteaucitron.services.affilae = {
}
};
// Canal-U.tv
tarteaucitron.services.canalu = {
"key": "canalu",
"type": "video",
@ -4838,3 +4839,29 @@ tarteaucitron.services.canalu = {
});
}
};
// WebTV Normandie Université
tarteaucitron.services.webtvnu = {
"key": "webtvnu",
"type": "video",
"name": "WebTV Normandie Université",
"uri": "https://docs.google.com/document/d/1tpVclj4QBoAq1meSZgYrpNECwp7dbmb_IhICY3sTl9c/edit",
"needConsent": true,
"cookies": [],
"js": function () {
"use strict";
tarteaucitron.fallback(['webtvnu_player'], function (x) {
var frame_url = 'https://webtv.normandie-univ.fr/permalink/' + x.getAttribute("videoID") + '/iframe/',
width = x.getAttribute("width"),
height = x.getAttribute("height");
return '<iframe width="' + width + '" height="' + height + '" src="' + frame_url + '" allowfullscreen="allowfullscreen" allow="autoplay"></iframe>';
});
},
"fallback": function () {
"use strict";
tarteaucitron.fallback(['webtvnu_player'], function (elem) {
return tarteaucitron.engage('webtvnu');
});
}
};