Are they're any websites that have custom .avs scripts to try out? Besides the few here and on a couple of other sites. I'm just now getting the hang of AviSynth. But before I get into more complex scripting I'd like to experiment a little more. Customs are a great way to go.
+ Reply to Thread
Results 1 to 6 of 6
-
-
Hi-
I'm not real sure if I understand, but AviSynth.org has a page of custom scripts useful for different situations:
http://www.avisynth.org/ShareFunctions
One of Didee's, Limited Sharpen, is the absolute best at sharpening up "dull" sources. If you can get it going, and put up with its very slow encoding speed, then you'll be ready for just about anything AviSynth related. His YLevels function is great for lightening up dark DVDs, without messing up the whites. If you have some video fieldblended from a bad PAL2NTSC or NTSC2PAL conversion, then you might try Restore24 or CRestore. Restore24 is also difficult to get going. Everything on that page is a function.
If you want to play with different filters, then you can get most of them here:
http://www.avisynth.org/warpenterprises/
There are quite a few links on the main page that you might want to visit:
http://www.avisynth.org/
And, of course, Doom9 is the home of most of the developers,.It has 2 forums devoted to it, and you'll find a ton of scripts suggested for different purposes:
http://forum.doom9.org/ -
Originally Posted by manono
I was looking for custom scripts for various capture/encoding methods. But nothing too specific, just looking to learn to create more complex scripts from scratch.
But since we're on the topic of specific scripts, I'm trying to get this one to load. It gives me an error regarding a resize limit in CCE. Like I said I'm new at it.
# -= AviSynth v2.5.6.0 script
LoadPlugin("Convolution3d.dll")
LoadPlugin("TweakColor.dll")
LoadPlugin(Denoise3dHQ.dll")
AVISource("C:\Documents and Settings\ROBERT\My Documents\MyFile")
Convolution3d (matrix=1, ythresh=8, cthresh=16, t_ythresh=8, t_cthresh=8, influence=2.8, debug=0)
TweakColor()
Denoise3dHQ()
SeparateFields()
Converttoyuy2(interlaced=true)
odd=SelectOdd.Convolution3D (0, 32, 128, 16, 64, 10, 0)
evn=SelectEven.Convolution3D (0, 32, 128, 16, 64, 10, 0)
Interleave(evn,odd)
Weave()
LanczosResize(720,560,4,0,632,480)
AddBorders(0,8,0,8)
#Trim(0,106571).FadeOut(150)
ConvertToYUY2(interlaced=true) -
No,the source is PAL,no NTSC conversion. It was something to do with the seperate fields and the weave. I deleted those lines, and replaced the first Convolution3d line with the second and third and it works.
-
Hi-
It's always a good idea to test out complex scripts first in VDub(Mod) as it will return a specific error message, whereas CCE will usually just reject it with that not very helpful resize message.
You already converted to YUY2 once. You don't need it a second time. Unless one of the earlier filters requires it (Convolution3D? Don't think so.), it's better to put it at the very end.
I'm not sure why you're separating the fields, as AVIs are usually progressive. Maybe you have an interlaced uncompressed source. If it is interlaced, then running Convolution 3D once before you separate the fields isn't such a good idea as it has a spatial component, and if the source is interlaced, you don't run a spatial smoother on an interlaced source without first separating the fields. If Denoise3D also has a spatial component (the 3D implies it does), then the same applies.
This link is to a thread that has some good tips about something similar:
http://forum.doom9.org/showthread.php?t=71151&highlight=Interlaced+resize+Convolution3D
Similar Threads
-
how do i take avs logo off avs video
By tnwolf35 in forum Newbie / General discussionsReplies: 3Last Post: 3rd Sep 2010, 21:08 -
AVS scripts for MeGUI - why do they resize the video
By Bully9 in forum Video ConversionReplies: 0Last Post: 17th Mar 2010, 16:16 -
1080p 30fps Encoding (AVS Scripts)
By superdud1400 in forum Video ConversionReplies: 21Last Post: 12th Nov 2008, 02:36 -
.avs scripts in TMPGE Xpress?
By ecc in forum Video ConversionReplies: 0Last Post: 12th Aug 2008, 07:39 -
Adobe Premiere project using AVISynth AVS scripts crashes when rendering!
By Mark001 in forum EditingReplies: 2Last Post: 10th Jun 2007, 23:25