Quantcast KDVD Script Modified for Personal use? - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
01-21-2004, 11:25 AM
The Untouchable The Untouchable is offline
Free Member
 
Join Date: Jan 2004
Location: Little India, British Columbia
Posts: 224
Thanks: 0
Thanked 0 Times in 0 Posts
Here's Kwags script with afew of my own tweaks, What do u guys think ?
Is everything in order or do I need to ajust a line here or there ?

## DLL Section ##
#
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\VSfilter.dll")
LoadPlugin("C:\Filters25\TomsMoComp.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter25.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("Your_D2V_Source_Here")
VobSub("Your_Subtitle_Source_Here")
#
TomsMoComp(1, 15, 1)
undot()
Limiter()
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(16, 16, 16, 16) # Depends on situation. Use MovieStacker!
Limiter()

#
#
## Functions ###

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

#
####
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
01-21-2004, 11:36 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by The Untouchable
Mpeg2Source("Your_D2V_Source_Here")
VobSub("Your_Subtitle_Source_Here")
Never put the subtitles there or they will be blurred by the filters that follow.
The subtitles must be the last line after (or before, depends on you own taste) the borders.

Quote:
TomsMoComp(1, 15, 1)
There are better way to deinterlace but again all is matter or taste.

Quote:
undot()
Limiter()
Either do not use "limiter" or use it in the top of all other filters and in the last lien fo the script. But a 'limiter' in the middle of the scripts is a nonsense.
EDIT: I just saw that this error is in the original script ! That is one more argument to say that this usage of limiter is completly crazy. The idea that is behind "put a limiter in top and end of the scripts" don't have any reality.
Reply With Quote
  #3  
01-21-2004, 11:42 AM
The Untouchable The Untouchable is offline
Free Member
 
Join Date: Jan 2004
Location: Little India, British Columbia
Posts: 224
Thanks: 0
Thanked 0 Times in 0 Posts
The Limiter part is as kwag put it, I never changed it lol
Reply With Quote
  #4  
01-21-2004, 11:49 AM
The Untouchable The Untouchable is offline
Free Member
 
Join Date: Jan 2004
Location: Little India, British Columbia
Posts: 224
Thanks: 0
Thanked 0 Times in 0 Posts
Shit I am probably annoying the shit outta u, but This will be the last time I bother u today ... 1 more question ... The script I posted ...
Can u repost it here for me exactly how I had it EXCEPT change the line & orders of filters as u see will work the fastest for me with tmpg & avisynth 2.5.4
Reply With Quote
  #5  
01-21-2004, 11:58 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Code:
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\VSfilter.dll")
LoadPlugin("C:\Filters25\TomsMoComp.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter25.dll")
LoadPlugin("C:\Filters25\undot.dll")
Note : put all the plugins in the "plugin" directory of avisynth insteed of "Filters25" and remove all these loadplugin lines. You scripts will be far more readable !

Code:
Mpeg2Source("Your_D2V_Source_Here")

TomsMoComp(1, 15, 1)
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))

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) ")

VobSub("Your_Subtitle_Source_Here")
GripBorders()
LetterBox(16, 16, 16, 16) 

function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
Reply With Quote
  #6  
01-21-2004, 12:10 PM
The Untouchable The Untouchable is offline
Free Member
 
Join Date: Jan 2004
Location: Little India, British Columbia
Posts: 224
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks again Dialhot !!
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
DVRs: Slingbox Personal Broadcaster kwag Players, DVRs, Media Centers 6 07-11-2005 12:56 PM
Codecs: VP4 Personal Codec-free jorel Video Encoding and Conversion 0 07-29-2003 04:13 PM
KVCD: My player DOES DO Kvcdx3 modified ozjeff99 Video Encoding and Conversion 2 06-19-2003 11:53 AM
modified KVCDx3 has Very good image and sound! noize Video Encoding and Conversion 0 01-16-2003 01:00 PM
KVCDx3 modified kwag Video Encoding and Conversion 0 09-05-2002 11:24 AM




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