Log in

View Full Version : Videos looks pixelated


Largent2005
21st October 2011, 23:23
I have been trying to use avisynth but when I open any file, there is pixelated garbage all over the video. I have tried opening the avs file in Windows media player and VirtualDubMod. I am not trying to do anything to the video yet. I'm just trying to open it.

I am trying to upload some screenshots of the issue but I am having trouble uploading to the forum so here is a link (http://postimage.org/image/2xwo6zs2s/). The picture on the left is how the video should look. But when I open the avs file it looks like the right pic.
The only line I have written in the avs file is:

AviSource("sample.avi")

I have tried installing avisynth on two computers with the same results. I even tried downloading it again with no difference. Any help would be appreciated.

http://postimage.org/image/2xwo6zs2s/

Asmodian
22nd October 2011, 01:25
What format is the video?

I would use FFMS2 (FFmpegSource2() ) to load the video file instead, it is an external plugin. Those look like video decode errors to me. ffmpegsource (http://code.google.com/p/ffmpegsource/)

Mounir
22nd October 2011, 03:21
Have you tried with DirectShowSource ?

ex: DirectShowSource("sample.avi",FPS=29.970, ConvertFPS=false)

Largent2005
22nd October 2011, 06:55
Both of your suggestions worked. Thank you.