summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-06-01 00:01:49 +0400
committerilotterytea <iltsu@alright.party>2025-06-01 00:01:49 +0400
commit0ac128d6a2df3a84f49a4d86cfbf501bbbb52a43 (patch)
tree6e9727270a8adfc7c1a0ab1fee2870264875840f /lib
parent4da453ba7cd09849d7c3c1229188e1ee3b3866be (diff)
feat: file thumbnails
Diffstat (limited to 'lib')
-rw-r--r--lib/partials.php2
-rw-r--r--lib/thumbnails.php41
2 files changed, 42 insertions, 1 deletions
diff --git a/lib/partials.php b/lib/partials.php
index 13ea156..8a7824e 100644
--- a/lib/partials.php
+++ b/lib/partials.php
@@ -20,7 +20,7 @@ function html_big_navbar()
function html_footer()
{
- $files = glob(FILE_DIRECTORY . "/*.*");
+ $files = glob(FILE_UPLOAD_DIRECTORY . "/*.*");
$file_size = 0;
foreach ($files as $file) {
diff --git a/lib/thumbnails.php b/lib/thumbnails.php
new file mode 100644
index 0000000..5afc775
--- /dev/null
+++ b/lib/thumbnails.php
@@ -0,0 +1,41 @@
+<?php
+function generate_image_thumbnail(string $src_path, string $dst_path, int $width, int $height)
+{
+ if ($src_path == "") {
+ return -2;
+ }
+
+ $input_path = escapeshellarg($src_path);
+ $output_path = escapeshellarg($dst_path);
+
+ $result_code = null;
+
+ exec(command: "magick $input_path -resize {$width}x{$height} -loop 0 $output_path", result_code: $result_code);
+
+ return $result_code;
+}
+
+function generate_video_thumbnail(string $src_path, string $folder_path, string $dst_path, int $width, int $height)
+{
+ if ($src_path == "") {
+ return -2;
+ }
+
+ if (!is_dir($folder_path) && !mkdir($folder_path, 0777, true)) {
+ return -3;
+ }
+
+ $input_path = escapeshellarg($src_path);
+ $output_path = escapeshellarg($dst_path);
+
+ $ffmpeg_command = "ffmpeg -i $input_path -vf \"fps=4,scale=320:-1:flags=lanczos\" -t 10 $folder_path/frames_%04d.png 2>&1";
+ $magick_command = "magick $folder_path/frames_*.png -loop 0 -delay 60 -resize {$width}x{$height} $output_path 2>&1";
+
+ exec($ffmpeg_command, $ffmpeg_output, $ffmpeg_result_code);
+ exec($magick_command, $magick_output, $magick_result_code);
+
+ array_map('unlink', array_filter((array) glob("$folder_path/*.*")));
+ rmdir($folder_path);
+
+ return $ffmpeg_result_code === 0 && $magick_result_code === 0 ? 0 : -1;
+} \ No newline at end of file