ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
video_mp4.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
40function video_mp4(): string
41{
42 global $DIC;
43 $renderer = $DIC->ui()->renderer();
44 $f = $DIC->ui()->factory();
45
46 $video = $f->player()->video("https://files.ilias.de/ks/ILIAS-Video.mp4");
47 $video = $video->withAdditionalSubtitleFile("en", "./assets/ui-examples/misc/subtitles_en.vtt");
48 $video = $video->withAdditionalSubtitleFile("de", "./assets/ui-examples/misc/subtitles_de.vtt");
49
50 return $renderer->render($video);
51}
$renderer
global $DIC
Definition: shib_login.php:26