we better use 5MB (1024 * 1024 * 5 = 5242880) instead of 1MB.

in some cases 1MB was no enough to generate thumbnail
remotes/origin/stable6
Thomas Müller 13 years ago
parent c22019dec5
commit 14e7075030
  1. 4
      lib/private/preview/movies.php

@ -46,7 +46,9 @@ if (!\OC_Util::runningOnWindows()) {
$handle = $fileview->fopen($path, 'rb');
$firstmb = stream_get_contents($handle, 1048576); //1024 * 1024 = 1048576
// we better use 5MB (1024 * 1024 * 5 = 5242880) instead of 1MB.
// in some cases 1MB was no enough to generate thumbnail
$firstmb = stream_get_contents($handle, 5242880);
file_put_contents($absPath, $firstmb);
if (self::$avconvBinary) {

Loading…
Cancel
Save