una icon indicating copy to clipboard operation
una copied to clipboard

PHP error when processing big videos

Open AlexTr opened this issue 1 year ago • 0 comments

(PHP Fatal error: Allowed memory size 4294967296 bytes exhausted (attempted to allocate 2548056064 bytes) in /.../inc/utils. inc.php on line 1054)

the relevant line from utils.inc.php:

$sResult = curl_exec($rConnect);

it's better to remake downloading routine to download by chunks to avoid high memory usage, to write directly to file with curl use CURLOPT_FILE option.

AlexTr avatar Mar 11 '24 14:03 AlexTr