Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Max AVI size

Status
Not open for further replies.

jimodoherty

Bioengineer
Joined
Oct 25, 2004
Messages
4
Location
IE
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
 
If the file is too large (maybe over 300Mb), the Matlab cannot read such file by one time. So you could read the avi file frame by frame.

Here is an example:

info = aviinfo('xxx.avi');
for i=1:info.NumFrames
%do thing of i-th frame
end

Regards,
Alex
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top