How replace open by another function?

Hello,
I am working on a project, on Matlab 2009. I had some problems. Here a part from my code:
vidOut = avifile(outName);
vidOut.fps = fr;
open(vidOut)
open doesn't work here because of the format .avi
I need the video for manipulating this video (I want to apply filters on each frame of the video) What is the alternative to open (for opening avi)?
The same for close(vidOut);
Hope being clear

3 Comments

To check, are you saying that the .avi was created using an encoder that avifile() does not recognize on your system? If so then which encoder was it created on, and which operating system are you using, and are you using 32 bit or 64 bit operating system and are you using 32 bit or 64 bit MATLAB ?
I mean open doesn't work on .avi (it work only on .m or specific formats) (<http://www.mathworks.fr/fr/help/matlab/ref/open.html>)
What I search for is an alternative function..
Moreover, I think avifile works.. I am using 32 bit Matlab and I am using 32 bit Windows XP...
Jan
Jan on 28 Nov 2012
Edited: Jan on 28 Nov 2012
"Doesn't work" is a bad description of the occurring problems. We cannot guess, what happens and if you get an error message (which one) or the results differ from your expectations.
If e.g. the error message is "You do not have read permissions to this file", it would be hilarious to invest time to find different AVI-file readers. Such things happen frequently in a forum.
Therefore something like this avoid misunderstandings: "OPEN does not support AVI files. Which command allows to open AVIs instead?"
Please add the needed information be editing the original question. Such important information must be found at a prominent location and readers of the question should not be forced to read a bunch of comments and answers before they find out, what the actual question is. Thanks.

Sign in to comment.

Answers (3)

Babak
Babak on 27 Nov 2012
make sure, close(vidOut), the file is already closed and not corrupted. restart MATLAB then do it in command window to make sure it works.

1 Comment

Already, open doesn't work...(When I ran it, close was 'commented'). I look for an alternative...

Sign in to comment.

Jan
Jan on 28 Nov 2012
Did you ask your favorite search engine already?
Looking in the FileExchange is a good idea also:
It is much better to use existing solutions than reinventing the wheel. And searching the internet does help usually to solve standard problems.
avifile is for creating AVI files. You addframe() to the avifile object and eventually you close it using the avifile method http://www.mathworks.com/help/matlab/ref/avifile.close.html. You never open() an avifile that you are creating.
If you are attempting to read a .avi file, use aviread

Asked:

on 27 Nov 2012

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!