Log in

View Full Version : Really Slow loading video


Ochensati
20th June 2009, 19:55
Hello,
I have a video that I am trying to load. The video is from a very cheap digital camera at 640-480 15 frames a second. I converted it to a raw avi file(from mov) and then have been trying to load it into avisynth using the script:

source = AviSource("C:\Documents and Settings\Administrator\Desktop\MovieEditor\MovieEditor\bin\Debug\Guardians\105_0542.avi") "

Which is pretty basic, this locks the system up for several minutes. The performance is horrible. I am using the avisynth wrapper from c#. The command that locks is

dimzon_avs_init(

I assume that the file is too large (It is only a 1 minute of video), but 880 MB. is there something else that is causing this problem, or is this a bug?

Thanks for the help.

JohannesL
20th June 2009, 20:49
The file size is not the problem. Did you try to load the MOV directly using ffmpegsource2?

7ekno
21st June 2009, 06:30
Or QTInput() with QuickTime Alternative installed?

I find QTInput() a little more robust (for broken frames) than FFMPS2 ...

Tek