You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the library for the getTotalDuration() function, and, I just hit a (kind of) large file of 480mb that, of course, hits the allowed memory size (which is set to 512m in php.ini).
Sure, I could change the value in php.ini, and probably could use ini_set('memory_limit', '1024M') before the library runs, but I have to wonder... Is there no other way to get this info other than loading the file into memory / reading it all?
The text was updated successfully, but these errors were encountered:
Is it at all possible? Would it be?
I'm using the library for the
getTotalDuration()
function, and, I just hit a (kind of) large file of 480mb that, of course, hits the allowed memory size (which is set to512m
inphp.ini
).Sure, I could change the value in
php.ini
, and probably could useini_set('memory_limit', '1024M')
before the library runs, but I have to wonder... Is there no other way to get this info other than loading the file into memory / reading it all?The text was updated successfully, but these errors were encountered: