diff --git a/tarteaucitron.services.js b/tarteaucitron.services.js index 74d4b9b..e301a9a 100644 --- a/tarteaucitron.services.js +++ b/tarteaucitron.services.js @@ -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 ''; + }); + }, + "fallback": function () { + "use strict"; + tarteaucitron.fallback(['webtvnu_player'], function (elem) { + return tarteaucitron.engage('webtvnu'); + }); + } +};