ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMediaObjectSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
20 
24 class ilMediaObjectSetupConfig implements Setup\Config
25 {
26  protected ?string $path_to_ffmpeg = null;
27 
28  public function __construct(
29  ?string $path_to_ffmpeg
30  ) {
31  $this->path_to_ffmpeg = $this->toLinuxConvention($path_to_ffmpeg);
32  }
33 
34  protected function toLinuxConvention(?string $p): ?string
35  {
36  if (!$p) {
37  return null;
38  }
39  return preg_replace("/\\\\/", "/", $p);
40  }
41 
42  public function getPathToFFMPEG(): ?string
43  {
44  return $this->path_to_ffmpeg;
45  }
46 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...