Quantcast DVD2SVCD: Adding All those Filters? - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
11-16-2002, 06:17 PM
johneboy johneboy is offline
Free Member
 
Join Date: Oct 2002
Location: USA
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
hey kwag/everyone..
been seeing alot of talk about the blockbuster and NoMoSmooth filters..

i saw in in one the posts on here how to use the blockbuster filter with DVD2SVCD.. how bout the NoMoSmooth filters
and any other filters you might suggest?


Quote:
Originally Posted by Daagar
If you want to use DVD2SVCD with this, here is a sample (cut & paste this to the bottom of dvd2svcd.ini and then you can access it in the Frameserver tab):

[AVISYNTH_BlockbusterBilinearResize]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin(!Blockbuster.dll)
3=Blockbuster( method="noise", detail_min=1, detail_max=3, lv=1.5 )
4=Blockbuster( method="sharpen", detail_min=4, detail_max=99, strength=^StrengthValue )
!Blockbuster.dll=C:\VideoTools\DVD2SVCD\Blockbuste r\Blockbuster.dll
^StrengthValue=20

Change the path to blockbuster.dll, and adjust your strength value according to Kwag's formulas based on your resolution. I'm not sure if dvd2svcd can handle mathematical expressions in the avs scripts, so I hardcoded the strength value. You can manipulate it via dvd2svcd, however.
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  
11-16-2002, 06:23 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by johneboy
hey kwag/everyone..
been seeing alot of talk about the blockbuster and NoMoSmooth filters..

i saw in in one the posts on here how to use the blockbuster filter with DVD2SVCD.. how bout the NoMoSmooth filters
and any other filters you might suggest?


Quote:
Originally Posted by Daagar
If you want to use DVD2SVCD with this, here is a sample (cut & paste this to the bottom of dvd2svcd.ini and then you can access it in the Frameserver tab):

[AVISYNTH_BlockbusterBilinearResize]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin(!Blockbuster.dll)
3=Blockbuster( method="noise", detail_min=1, detail_max=3, lv=1.5 )
4=Blockbuster( method="sharpen", detail_min=4, detail_max=99, strength=^StrengthValue )
!Blockbuster.dll=C:\VideoTools\DVD2SVCD\Blockbuste r\Blockbuster.dll
^StrengthValue=20

Change the path to blockbuster.dll, and adjust your strength value according to Kwag's formulas based on your resolution. I'm not sure if dvd2svcd can handle mathematical expressions in the avs scripts, so I hardcoded the strength value. You can manipulate it via dvd2svcd, however.
It would be something like this:

[AVISYNTH_BlockbusterBilinearResize]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin(!NoMoSmooth.dll)
3=LoadPlugin(!Blockbuster.dll)
4=NoMoSmooth()
5=Blockbuster( method="noise", detail_min=1, detail_max=3, lv=1.5 )
6=Blockbuster( method="sharpen", detail_min=4, detail_max=99, strength=^StrengthValue )
!Blockbuster.dll=C:\VideoTools\DVD2SVCD\Blockbuste r\Blockbuster.dll
^StrengthValue=20


-kwag
Reply With Quote
  #3  
11-16-2002, 06:26 PM
johneboy johneboy is offline
Free Member
 
Join Date: Oct 2002
Location: USA
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
thanks again kwag...
is that the filter you use on your dvd rips?
Reply With Quote
  #4  
11-16-2002, 06:31 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by johneboy
thanks again kwag...
is that the filter you use on your dvd rips?
These are the current parameters I'm using in my .avs script:

NoMoSmooth()

######## Auto Strength, proportional strength depending on resolution #####
## Remove only one "#" on front of the resolution that matches your encoding.


BB_Resolution = 352*240
#BB_Resolution = 352*480
#BB_Resolution = 528*480
#BB_Resolution = 544*480
#BB_Resolution = 704*480

BB_StrengthConstant = 352 * 240 * 20 # Base strength
StrengthValue = round (BB_StrengthConstant / BB_Resolution)
Blockbuster( method="noise", detail_min=1, detail_max=10, lv=1 ) # Apply noise if complexity is <= 10%.
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=StrengthValue) # Sharpen only if complexity is >= 20% AND <=90%.

# The last ~10% is left untouched (pass-through), to avoid sharpening highest frequency components ( Peak artifacts, sharpest edge, etc. )
##
################## End Auto Strength ####################

-kwag
Reply With Quote
  #5  
11-16-2002, 06:55 PM
johneboy johneboy is offline
Free Member
 
Join Date: Oct 2002
Location: USA
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
OK... at this point... i feel that i am getting very irritating..

but.. if i wanted to use the same script you are.. in DVD2SVCD.. would i paste this into the DVD2SVCD.ini file like Daagar said...

[AVISYNTH_BlockbusterBilinearResize]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin(!NoMoSmooth.dll)
3=LoadPlugin(!Blockbuster.dll)
4=NoMoSmooth()
5=Blockbuster( method="noise", detail_min=1, detail_max=10, lv=1 )
6=Blockbuster( method="sharpen", detail_min=1, detail_max=90, strength=^StrengthValue )
!Blockbuster.dll=C:\VideoTools\DVD2SVCD\Blockbuste r\Blockbuster.dll
^StrengthValue=20


but where do i put...
BB_Resolution = 352*240 and BB_StrengthConstant = 352 * 240 * 20 at?
Reply With Quote
  #6  
11-16-2002, 07:03 PM
johneboy johneboy is offline
Free Member
 
Join Date: Oct 2002
Location: USA
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
oh yea... and if it makes any difference
i load your lbr ini file before rip/encoding
Reply With Quote
  #7  
11-16-2002, 08:24 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by johneboy
OK... at this point... i feel that i am getting very irritating..

but.. if i wanted to use the same script you are.. in DVD2SVCD.. would i paste this into the DVD2SVCD.ini file like Daagar said...

[AVISYNTH_BlockbusterBilinearResize]
0=BilinearResize(^TargetWidth,^TargetHeight)
1=AddBorders(0,^BorderTop,0,^BorderBottom)
2=LoadPlugin(!NoMoSmooth.dll)
3=LoadPlugin(!Blockbuster.dll)
4=NoMoSmooth()
5=Blockbuster( method="noise", detail_min=1, detail_max=10, lv=1 )
6=Blockbuster( method="sharpen", detail_min=1, detail_max=90, strength=^StrengthValue )
!Blockbuster.dll=C:\VideoTools\DVD2SVCD\Blockbuste r\Blockbuster.dll
^StrengthValue=20


but where do i put...
BB_Resolution = 352*240 and BB_StrengthConstant = 352 * 240 * 20 at?
you forgot this:
!NoMoSmooth.dll=C:\VideoTools\DVD2SVCD\******\NoMo Smooth.dll

Reply With Quote
  #8  
11-16-2002, 08:37 PM
johneboy johneboy is offline
Free Member
 
Join Date: Oct 2002
Location: USA
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by jorel
you forgot this:
!NoMoSmooth.dll=C:\VideoTools\DVD2SVCD\******\NoMo Smooth.dll

Thanks jorel..
how bout...

BB_Resolution = 352*240
and
BB_StrengthConstant = 352 * 240 * 20
Reply With Quote
  #9  
11-16-2002, 08:53 PM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by johneboy
Quote:
Originally Posted by jorel
you forgot this:
!NoMoSmooth.dll=C:\VideoTools\DVD2SVCD\******\NoMo Smooth.dll

Thanks jorel..
how bout...

BB_Resolution = 352*240
and
BB_StrengthConstant = 352 * 240 * 20

look at this:

http://www.kvcd.net/forum/viewtopic....4ebe68e951ae39

i think it help you johneboy!
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding subtitle to .mpg cyron Subtitles 15 09-21-2004 05:00 AM
DVD2SVCD: How to set path for filters, like latest adaptive filters? melmo Video Encoding and Conversion 1 07-16-2004 03:43 AM
DVD2SVCD: Question about brightness filters ftin Video Encoding and Conversion 2 09-15-2003 11:13 AM
Adding Subtitles, what to use? pacodoni Subtitles 1 07-27-2002 07:08 PM
Adding Chapters to KVCD? Yoda Authoring VCD, DVD, Blu-ray 4 04-25-2002 12:37 PM




 
All times are GMT -5. The time now is 08:05 AM  —  vBulletin © Jelsoft Enterprises Ltd