Hi,
In several attemps to encode a movie with LBR template and using BB and Flux filters, the result had too many mosquito noise in high contrast areas, thing that never happened when I used the temporalsmooth filter alone in the same resolution

(in the same kind of source), the source is a TV capture. Here is my script:
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec .dll")
LoadPlugin("C:\Program Files\DVD2SVCD\InverseTelecine\Donald Graft\decomb.dll")
LoadPlugin("C:\Program Files\DVD2SVCD\Fluxsmooth\Fluxsmooth.dll")
LoadPlugin("C:\Program Files\DVD2SVCD\Blockbuster\Blockbuster.dll")
LoadPlugin("C:\Program Files\DVD2SVCD\LegalClip\LegalClip.dll")
SegmentedAviSource("D:\captura.00.avi")
#
ConvertToYUY2()
#
LegalClip()
#
fielddeinterlace(blend=false)
BilinearResize(336,240,8,0,336,480)
#
FluxSmooth(temporal_threshold=7, spatial_threshold=7)
#
# ------ 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 = 704x480
#
BB_StrengthConstant = 352 * 240 * 20 # Base strength
StrengthValue = round(BB_StrengthConstant / BB_Resolution)
Blockbuster( method="noise", detail_min=1, detail_max=10, variance=1 )
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=StrengthValue )
#
# -------------------- End Auto Strength ----------------
AddBorders(8,0,8,16)
LegalClip()
ConvertToRGB24()
Is there anything that Im doing wrong with my script

THX!!