digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: Grabs Avisynth info (http://www.digitalfaq.com/archives/avisynth/10656-avisynth-grabs-avisynth.html)

oxycotton420 07-02-2004 04:47 PM

grabs Avisynth info
 
i'm jus curious is there a tool that grabs all AviSynth info, to fill in the caps IE: in kwag's script like this>

Code:

## DLL Section ##
#
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("Your_D2V_Source_Here")
#
undot()
asharp(1, 4)
GripCrop(Your_GripCrop_Parameters_Here)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
#

## Linear Motion Adaptive Filtering ##
#
# ( Portions from AviSynth's manual )
# This will apply variable temporalsoften
# and variable blur.
# Both filters are active at all times, and work inversely proportional to the
# activity, measured from current frame to next frame.

ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1)  ")

#
#
#

GripBorders()
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!

#
#
## Functions ###

function fmin( int f1, int f2) {
  return ( f1<f2 ) ? f1 : f2
}
 
#
####


it would fill in the following info, iE:
:arrow: GripBorders()
:arrow: GripCrop(Your_GripCrop_Parameters_Here)
:arrow: GripSize(resizer="BicubicResize")
....Ect.

Dialhot 07-02-2004 04:50 PM

These line must be filled according to your video and you wish for the target. That is YOUR CHOICE. Computers are smart but there is a moment when you have to tell them what you want :-)

oxycotton420 07-02-2004 09:54 PM

hehe thanks okay, but then how does something like mencodeME work when it comes to that. i know taht mencodeME uses external AviSynth filters but how is that information filled in ?

Abond 07-03-2004 03:34 AM

I think you are wrong. MencodeMe doesn't use Avisynth filters at all.

bigggt 07-03-2004 08:00 AM

Quote:

i know taht mencodeME uses external AviSynth filters but how is that information filled in ?
It uses internal filters unless you use makeavis(something like that) with MencodeME but then you still need to fill out the proper lines :D


All times are GMT -5. The time now is 07:16 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.