From 0ac128d6a2df3a84f49a4d86cfbf501bbbb52a43 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 1 Jun 2025 00:01:49 +0400 Subject: feat: file thumbnails --- lib/partials.php | 2 +- lib/thumbnails.php | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 lib/thumbnails.php (limited to 'lib') 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 @@ +&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 -- cgit v1.2.3