Max AVI size
Max AVI size
(OP)
Hi all,
I'm looking to know if anyone know the maximum size of an AVI file I can read into Matlab. Im using a GUI and it doesnt work for some large videos. What is the limit as to file sizes I can read in?
Thanks!
Jim O' Doherty
I'm looking to know if anyone know the maximum size of an AVI file I can read into Matlab. Im using a GUI and it doesnt work for some large videos. What is the limit as to file sizes I can read in?
Thanks!
Jim O' Doherty





RE: Max AVI size
Here is an example:
info = aviinfo('xxx.avi');
for i=1:info.NumFrames
%do thing of i-th frame
end
Regards,
Alex