Problems with the AVI reader from Ronn Kling [message #66663] |
Wed, 27 May 2009 16:50 |
thierrysavin
Messages: 1 Registered: May 2009
|
Junior Member |
|
|
Hello,
I have IDL 7.1 and wants to read an avi movie file. I just installed
Ronn Kling's DLM following
the steps described in his presentation.
The following command crashes+quits IDL:
IDL> oAVI = OBJ_NEW('KRSgrAVIreader',FileName)
IDL> im = oAVI->GetFrame(1)
IDL> OBJ_DESTROY, oAVI
But the following works:
IDL> oAVI = OBJ_NEW('KRSgrAVIreader',FileName)
IDL> im = oAVI->GetFrame(1) & im = REFORM(im)
IDL> OBJ_DESTROY, oAVI
Also, I have to quit IDL if I want to erase the movie file I just
accessed
with the reader (otherwise Windows complains the file is in use by
another
program).
Are these normal behaviors?
Thank you for your help,
-Thierry
|
|
|