From: Chris on 29 Aug 2006 13:24 Hi, Why can't I create an AVI file using "avifile" with the name "sigma1.avi", while "sigma.avi" and "tt1.avi" work? mov = avifile( 'sigma1.avi', 'quality', 100, 'compression', 'MSVC' ) ??? Failed to open file. Error in ==> avifile.avifile at 163 aviobj.FileHandle = avi('open',filename); Thanks Chris
From: Chris on 29 Aug 2006 13:26 Ok, the file is locked, I assume. Is there a way to close it without messing up with user defined variables? Thanks Chris
From: Dan Hensley on 29 Aug 2006 13:27 On Tue, 29 Aug 2006 13:24:03 -0400, Chris wrote: > Hi, > Why can't I create an AVI file using "avifile" with the name > "sigma1.avi", while "sigma.avi" and "tt1.avi" work? > > mov = avifile( 'sigma1.avi', 'quality', 100, 'compression', 'MSVC' ) > ??? Failed to open file. > > Error in ==> avifile.avifile at 163 > aviobj.FileHandle = avi('open',filename); > > Thanks > Chris Do you already have one in your directory? Or is there a directory with that name in the directory you are trying to write to? There's nothing magic about that filename. Dan
From: Chris on 29 Aug 2006 13:27 clear functions Chris
From: Chris on 29 Aug 2006 15:31
Dan Hensley wrote: > > There's > nothing > magic about that filename. > > Dan > Thats why it was driving me nuts. Finally realized that I might have had it locked somehow. :) Chris |