--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+ <component name="GitToolBoxProjectSettings">
+ <option name="commitMessageIssueKeyValidationOverride">
+ <BoolValueOverride>
+ <option name="enabled" value="true" />
+ </BoolValueOverride>
+ </option>
+ <option name="commitMessageValidationEnabledOverride">
+ <BoolValueOverride>
+ <option name="enabled" value="true" />
+ </BoolValueOverride>
+ </option>
+ </component>
+</project>
\ No newline at end of file
} else if (!is_null($compiler) && Url::isLocal($data->to)) {
$path = file_exists($data->to) ? $data->to : $compiler->working_path($data->to);
- $dim = Cache::remember('videosize_' . Files::hashFileAttributes($path), 86400, function () use ($path) {
+ $dim = Cache::rememberForever('videosize_' . Files::hashFileAttributes($path), function () use ($path) {
$e = explode(',', `ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=p=0 $path`);
$res = ['width' => 1920, 'height' => 1080];
if (count($e) > 1) {