Hello,
i am using php-Version 8.2 and plugin-version 4.8.7
After update to wordpress 6.2, the following exception happens:
PHP Fatal error: Uncaught TypeError: Unsupported operand types: string / string in wordpress/wp-content/plugins/video-embed-thumbnail-generator/src/admin/videopack-ffmpeg.php:201\nStack trace
i changed line 201 from
$aspect_ratio = $options[‘height’] / $options[‘width’];
to
$aspect_ratio = intval($options[‘height’]) / intval($options[‘width’]);
so it is currently working
regards