Help with AviSynth

TocNoc
Joined: Fri May 20, 2011 6:37 pm
Org Profile

Help with AviSynth

Post by TocNoc » Tue Jan 29, 2013 10:45 pm

I was searching about how to convert MKV to another format so i could edit it on Vegas Pro 12... But now i'm stuck on AvsPmod. I wanna treat my image and get rid of some artifacts that appear but i don't know the command for that... They look like big pixels with many colors, some times almost half of the image is with the wrong color and I really don't know what to do with them. Any help? :| Oh! And just to be sure. After a treat my image with AvsPmod i'm gonna use VirtualDub to convert to AVI...

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Help with AviSynth

Post by mirkosp » Wed Jan 30, 2013 3:06 pm

Sounds like you are trying to load 10bit video with an outdated ffms2.

Grab this ( http://x264.fushizen.eu/builds/ffms2/ff ... ea81bb2.7z ) and overwrite the ffms2.dll, ffms2.exe, and ffms2.avsi that you find in your avisynth's plugins folder with the ones that you'll find in there.
Image

TocNoc
Joined: Fri May 20, 2011 6:37 pm
Org Profile

Re: Help with AviSynth

Post by TocNoc » Wed Jan 30, 2013 7:50 pm

WOW! Thank you very much! You saved my AMV! xD Can tell me some usefull filters plz?

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Help with AviSynth

Post by mirkosp » Sat Feb 02, 2013 1:14 pm

Generally speaking you won't need to do much if anything at all bar loading, and other things you might commonly need are deinterlacing, field matching, decimating, cropping, and resizing. Other more advanced filtering isn't always strictly required and, in fact, is less commonly needed at all with the current quality of home video releases. For the other things, the current guide does an acceptable job in covering them, so just Read <a href=http://www.a-m-v.org/guides/avtech31/>ErMaC & AbsoluteDestiny's Friendly AMV Guides Lovingly Overhauled Largely by Zarxrax</a> and you should be fine.
Image

User avatar
pan_dbgt01
Joined: Thu May 24, 2001 9:19 pm
Status: Hanging around. Trying to find time to edit.
Location: Canada
Org Profile

Re: Help with AviSynth

Post by pan_dbgt01 » Thu Nov 07, 2013 12:55 pm

I have been reading some tutorials and I can't get my mp4 or Mv4 video to import into Virtual Dub. I have no idea what to do.

LWLibavVideoSource("Video.mp4")

This was the script I used.

User avatar
RTW47
Joined: Sat Oct 30, 2010 10:48 am
Status: Knight of Ni
Location: Argument Clinic
Org Profile

Re: Help with AviSynth

Post by RTW47 » Thu Nov 07, 2013 6:00 pm

Could you please provide more information. Is it any specific error?..
Spoiler :
if, perhaps, problem is similar to that of original poster was having,
and your video file is 10-bit, you can tell LWLibavVideoSource to convert to a different format(s):

Code: Select all

LWLibavVideoSource("video.mp4", format="YUV420P8")

User avatar
pan_dbgt01
Joined: Thu May 24, 2001 9:19 pm
Status: Hanging around. Trying to find time to edit.
Location: Canada
Org Profile

Re: Help with AviSynth

Post by pan_dbgt01 » Thu Nov 07, 2013 8:43 pm

RTW47 wrote:Could you please provide more information. Is it any specific error?..
Spoiler :
if, perhaps, problem is similar to that of original poster was having,
and your video file is 10-bit, you can tell LWLibavVideoSource to convert to a different format(s):

Code: Select all

LWLibavVideoSource("video.mp4", format="YUV420P8")
I honestly have no idea. They aren't 10 bit. I will try this.

User avatar
pan_dbgt01
Joined: Thu May 24, 2001 9:19 pm
Status: Hanging around. Trying to find time to edit.
Location: Canada
Org Profile

Re: Help with AviSynth

Post by pan_dbgt01 » Thu Nov 07, 2013 8:51 pm

pan_dbgt01 wrote:I have been reading some tutorials and I can't get my mp4 or Mv4 video to import into Virtual Dub. I have no idea what to do.

LWLibavVideoSource("Video.mp4")

This was the script I used.
Avisynth open failure:
Script error: There is no function named LWLibavVideoSource
(D:\AMV\Video.avs.avs,line 1)

User avatar
RTW47
Joined: Sat Oct 30, 2010 10:48 am
Status: Knight of Ni
Location: Argument Clinic
Org Profile

Re: Help with AviSynth

Post by RTW47 » Fri Nov 08, 2013 5:32 am

for 64-bit system check again if:
LSMASHSource.dll is inside of C:\Program Files (x86)\AviSynth 2.5\plugins
msvcr110.dll is inside of C:\Windows\SysWOW64

if all dll's are placed correctly and same error appears then try loading plugin manually:

Code: Select all

LWLibavVideoSource("Video.mp4")
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\LSMASHSource.dll")
in addition, if file name extensions are tured on:
rename Video.avs.avs to just Video.avs

User avatar
RTW47
Joined: Sat Oct 30, 2010 10:48 am
Status: Knight of Ni
Location: Argument Clinic
Org Profile

Re: Help with AviSynth

Post by RTW47 » Fri Nov 08, 2013 5:38 am

note: LoadPlugin line should go before source filter. :oops:

Locked

Return to “Video Editing Software”