View Full Version : NEED HELP WITH AVISYNTH!!
bottom__line
3rd July 2003, 01:15
Here is my problem. I have downloaded some very nice filters for my avsinth 2.5, but for some reason I am unable to edit my movie with them using DVD2SVCD. The main files are there, but DVD2SVCD doens't seem to read them. When I look at my AVsinth file before encoding none of my filters are they. How can I get them to work or what part of the DVD2SVCD script file do I need to edit and how. THanks, Chris
ralphthedog
3rd July 2003, 03:14
Check out the avisynth script database in the advanced forum.
sPeziFisH
3rd July 2003, 16:25
avisynth-plugins are only used when they have an own line in avs-script from where they get started.
So you got to choices:
1. edit your dvd2svcd.ini file and insert your plugins at the right point of the predefined avs-scripts which are available and which you are going to use. All avs-sripts are written at the bottom of dvd2svcd.ini, so have a look and edit according them to your needs.
2. you have to edit your avs-script manually after dvd2avi demuxed audio & video. Use the edit-option at frameserver-tab
Jason28
4th July 2003, 00:52
Also you can put the plugins in your plugin directory under anisynth and then you wont have to load anything. I would recomend that you do some reading around and get a basic understanding about how avisynth works and what you can do with it before you just jump in a start to copy scripts.
bottom__line
7th July 2003, 03:10
For some reason, I can get all of my filters to work on script except for blockbuster and convolution3D. They will just not run with CCE. I have the scripts correct, but I keep getting an error that DVD2SVCD is unable to load the filter. What is going on?
Here is my script:::
[AVISYNTH_Cartoon]
0=LoadPlugin(!MSharpen.dll)
1=LoadPlugin(!Dup.dll)
2=Dup(threshold=^Dup_Threshold,copy=?Dup_Copy)
3=MSharpen(threshold=^MSharpen_Threshold,strength=^MSharpen_Strength)
4=BilinearResize(^TargetWidth,^TargetHeight)
5=LoadPlugin(!Convolution3D.dll)
6=Convolution3D(matrix=1,ythresh=8,cthresh=16,t_ythresh=8,t_cthresh=8,influence=3,debug=0)
!MSharpen.dll=C:\Program Files\DVD2SVCD\Avisynth2.5 Plugins\MSharpen.dll
!Convolution3D.dll=C:\Program Files\DVD2SVCD\Avisynth2.5 Plugins\Convolution3D.dll
!Dup.dll=C:\Program Files\DVD2SVCD\Avisynth2.5 Plugins\Dup.dll
^Dup_Threshold=5
?Dup_Copy=True
^MSharpen_Threshold=10
^MSharpen_Strength=50
markrb
7th July 2003, 15:34
Dude chill with the caps and the ! in the title.
Rule 9) Use a title that describes the content of your post. Don't use all caps or special characters to draw attention.
For those that don't know most here will tend not help people that don't follow the rules. I am one of these. Follow the rules and I am willing to help. Don't and you won't get any from me.
Mark
Your script should read something like below:
[AVISYNTH_Cartoon]
0=LoadPlugin(!MSharpen.dll)
1=LoadPlugin(!Dup.dll)
2=Dup(threshold=^Dup_Threshold,copy=?Dup_Copy)
3=MSharpen(threshold=^MSharpen_Threshold,strength=^MSharpen_Strength)
4=BilinearResize(^TargetWidth,^TargetHeight)
5=LoadPlugin(!Convolution3D.dll)
6=Convolution3D(matrix=^Convolution3D_Matrix,ythresh=^Convolution3D_YThresh,cthresh=^Convolution3D_CThresh,t_ythresh=^Convolution3D_TYThresh,t_cthresh=^Convolution3D_TCThresh,influence=^Convolution3D_Influence,debug=^Convolution3D_Debug)
!MSharpen.dll=C:\Program Files\DVD2SVCD\Avisynth2.5 Plugins\MSharpen.dll
!Convolution3D.dll=C:\Program Files\DVD2SVCD\Avisynth2.5 Plugins\Convolution3D.dll
!Dup.dll=C:\Program Files\DVD2SVCD\Avisynth2.5 Plugins\Dup.dll
^Dup_Threshold=5
?Dup_Copy=True
^MSharpen_Threshold=10
^MSharpen_Strength=50
^Convolution3D_Matrix=1
^Convolution3D_YThresh=8
^Convolution3D_CThresh=16
^Convolution3D_TYThresh=8
^Convolution3D_TCThresh=8
^Convolution3D_Influence=3
^Convolution3D_Debug=0
And becarful next time when posting. Follow the rules.
ENJOY
-Amit
bottom__line
8th July 2003, 10:11
I used the last posted script, but I still get an error when it comes to the debug part of the script. It says that it missing (a,or)
statement. I have no idea what the deal is. This is really becoming a hassle for a single filter just to make my anime good. If anyone could help, I would be more than grateful.
@bottom__line
I have no idea why the script didn't work. Maybe someone else with more experience can look into your problem.
While copying the script did you make sure that 6=.... was in a single line or was there line breaks in your script when you copied. If there were line breaks, remove them and try again.
Also, you see choose to edit the AVISYNTH script as part of the encode and sepcify what you want instead of setting this default script. I guess you won't be converting anims everyday. You can do this once by pausing the encode before starting the encode while someone else tries to help.
GOOD LUCK
-Amit
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.