digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   DVD2SVCD: Adding all those filters? (http://www.digitalfaq.com/archives/encode/1594-dvd2svcd-adding-filters.html)

johneboy 11-16-2002 06:17 PM

DVD2SVCD: Adding all those filters?
 
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.


kwag 11-16-2002 06:23 PM

Re: adding all those filters
 
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

johneboy 11-16-2002 06:26 PM

thanks again kwag... :D
is that the filter you use on your dvd rips?
:?:

kwag 11-16-2002 06:31 PM

Quote:

Originally Posted by johneboy
thanks again kwag... :D
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

johneboy 11-16-2002 06:55 PM

OK... at this point... i feel that i am getting very irritating.. :roll: :cry:

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?

johneboy 11-16-2002 07:03 PM

oh yea... and if it makes any difference
i load your lbr ini file before rip/encoding

jorel 11-16-2002 08:24 PM

Quote:

Originally Posted by johneboy
OK... at this point... i feel that i am getting very irritating.. :roll: :cry:

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

:roll: :wink:

johneboy 11-16-2002 08:37 PM

Quote:

Originally Posted by jorel
you forgot this:
!NoMoSmooth.dll=C:\VideoTools\DVD2SVCD\******\NoMo Smooth.dll
:roll: :wink:


Thanks jorel..
how bout...

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

jorel 11-16-2002 08:53 PM

Quote:

Originally Posted by johneboy
Quote:

Originally Posted by jorel
you forgot this:
!NoMoSmooth.dll=C:\VideoTools\DVD2SVCD\******\NoMo Smooth.dll
:roll: :wink:


Thanks jorel..
how bout...

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

:wink:
look at this:

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

i think it help you johneboy! :) :!:


All times are GMT -5. The time now is 02:24 AM  —  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.