Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
swapped out comma for period
Signed-off-by: invario <[email protected]>
Signed-off-by: KT <[email protected]>
  • Loading branch information
invario committed Mar 25, 2025
commit fd6d1184462259c16da862e81004a41c9522a5c3
2 changes: 1 addition & 1 deletion lib/private/Preview/Movie.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private function generateThumbNail(int $maxX, int $maxY, string $absPath, int $s
$test_hdr_stdout = trim(stream_get_contents($test_hdr_pipes[1]));
$test_hdr_stderr = trim(stream_get_contents($test_hdr_pipes[2]));
$test_hdr_returnCode = proc_close($test_hdr_proc);
$test_hdr_output = $test_hdr_stdout, $test_hdr_stderr;
$test_hdr_output = $test_hdr_stdout . $test_hdr_stderr;
}
// Only values of "smpte2084" and "arib-std-b67" indicate an HDR video so change $cmd to generate for HDR.
// Force colorspace to '2020_ncl' because some videos are tagged incorrectly as 'reserved' resulting in fail
Expand Down