drop php7.3 support, make use of 7.4 features

This commit is contained in:
Shish
2021-03-14 23:43:50 +00:00
parent c558ee3bdb
commit 77f7121e26
296 changed files with 1571 additions and 2039 deletions

View File

@@ -12,7 +12,7 @@ class VideoTranscodeException extends SCoreException
class TranscodeVideo extends Extension
{
/** @var TranscodeVideoTheme */
protected $theme;
protected ?Themelet $theme;
const ACTION_BULK_TRANSCODE = "bulk_transcode_video";
@@ -54,8 +54,6 @@ class TranscodeVideo extends Extension
public function onSetupBuilding(SetupBuildingEvent $event)
{
global $config;
$sb = $event->panel->create_new_block("Video Transcode");
$sb->start_table();
$sb->add_bool_option(TranscodeVideoConfig::ENABLED, "Allow transcoding images: ", true);
@@ -256,8 +254,6 @@ class TranscodeVideo extends Extension
throw new VideoTranscodeException("ffmpeg path not configured");
}
$ext = Media::determine_ext($target_mime);
$command = new CommandBuilder($ffmpeg);
$command->add_flag("-y"); // Bypass y/n prompts
$command->add_flag("-i");
@@ -274,8 +270,6 @@ class TranscodeVideo extends Extension
$command->add_flag("-map"); // Copies all streams
$command->add_flag("0");
$file_extension = FileExtension::get_for_mime($target_mime);
$command->add_flag("-f");
$format = self::FORMAT_NAMES[$target_mime];
$command->add_flag($format);