Browse Source

Merge pull request #796 from paidge/master

add a service : WebTV Normandie Université
Amauri CHAMPEAUX 3 years ago
parent
commit
80129725e5
1 changed files with 27 additions and 0 deletions
  1. 27 0
      tarteaucitron.services.js

+ 27 - 0
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 '<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');
+        });
+    }
+};