write: cast video duration to float before round

pull/317/head
Varun Patil 2022-12-22 10:49:28 -08:00
parent 70f3fbaea1
commit 37a26b8c31
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class TimelineWrite
// Video parameters
$videoDuration = 0;
if ($isvideo) {
$videoDuration = round($exif['Duration'] ?? $exif['TrackDuration'] ?? 0);
$videoDuration = round((float) ($exif['Duration'] ?? $exif['TrackDuration'] ?? 0));
}
// Clean up EXIF to keep only useful metadata