Los de Abajo est depuis des années le groupe Rock/Pop du lycée. Il se produit régulièrement à la fête scolaire ou lors d’autres événements au lycée et évidemment au “Music in Motion”. Les répétitions ont lieu le mardi de 13h00 à 13h50.

Personne de contact: Tom Klonski ; // For more options see: https://github.com/sampotts/plyr/#options // captions.update is required for captions to work with hls.js const player = new Plyr(video, {controls, captions: {active: true, update: true, language: "fr"}}); if (!Hls.isSupported()) { video.src = source; } else { // For more Hls.js options, see https://github.com/dailymotion/hls.js var config = { "enableWorker": true, "lowLatencyMode": true, "backBufferLength": 10, "autoStartLoad": true, "startPosition": -1 }; const hls = new Hls(config); hls.loadSource(source); hls.attachMedia(video); hls.startLoad(startPosition=-1) window.hls = hls; // Handle changing captions player.on("languagechange", () => { // Caption support is still flaky. See: https://github.com/sampotts/plyr/issues/994 setTimeout(() => hls.subtitleTrack = player.currentTrack, 50); }); } // Expose player so it can be used from the console window.player = player; });