Log in

View Full Version : devIl problem


trolltuning
14th March 2010, 21:31
my script
imagesource()
error message from vrtualdub
Avisynth open failure: ImageReader: error 'Could not open file' in DevIL library reading file c:\000000.ebmp
using AviSynth 2.5

wonkey_monkey
14th March 2010, 21:54
my script
imagesource()

Umm, maybe you should specify a source? E.g.,


imagesource("%03d.tga",0,999)


will load 000.tga, 001.tga, 002.tga, etc... :readguid:

David

trolltuning
14th March 2010, 22:41
I did that originally and was getting an error message. I believe that imageSource() is supposed to display a default file

wonkey_monkey
14th March 2010, 23:34
For example, the files written by ImageWriter's default parameters can be referenced with "c:\%06d.ebmp".

That's the default for imagewriter and it appears to be the default for imagereader, too. It'll only work if you've previously used imagewriter with default parameters.

David

Mounir
22nd March 2010, 13:41
if that can help, your script should like like this:

ImageSource("C:\blabla\MyImages%04d.bmp", 0, 6244, 25.000, use_DevIL = true)

Assuming the name of your images has four numbers ex: MyImages0000.bmp
Also change the framerate if needed