Quantcast Avisynth: Noise Reduction, Lot of Mosquito Noise? - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Avisynth Scripting

Reply
 
LinkBack Thread Tools
  #1  
02-01-2003, 10:46 PM
yauman yauman is offline
Free Member
 
Join Date: Jan 2003
Location: Wales, UK
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yauman
hi i'm trying to encode not another teen movie in normal svcd format using 2 pass tmpgenc onto 2 cds
avg bitrate:2358
max: 2532
min: 1162

but after i encoded it i notice a lot of background movement on low motion parts of the movie and quite a lot of mosquito noise (these both become a lot more apparent when i enlarge on playback to fullscreen). Can ne1 suggest a filter combo that can help me remove these things?

my current script is:

LoadPlugin("C:\mpeg2dec.dll")
LoadPlugin("C:\dustv5.dll")
LoadPlugin("C:\convolution3d.dll")
LoadPlugin("C:\blockbuster.dll")
Mpeg2Source("e:/not another teen movie/teen.d2v")
Lanczosresize(480,350)
Faerydust()
Convolution3d (preset="movieLQ")
Blockbuster(method="noise", variance=0.3, seed=1)
Addborders(0,113,0,11

i have also tried a fluxsmooth + convo3d script, one with temporal smoother and various others and its now starting to piss me off
i'm using avisynth 2.07 with athlon xp processor (SSE2)
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  
02-01-2003, 10:57 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
Hi yauman,

Use BilinearResize instead of Lanczos. Lanczos produces sharper edges, and you will see more artifacts. Try SpaceDust() and TemporalCleaner() instead of FaeryDust() and C3d. And last, get rid of 2-pass VBR. TMPEG produces FAR better results in CQ mode that 2-pass. This has been proved over and over and over

-kwag
Reply With Quote
  #3  
02-02-2003, 11:32 AM
yauman yauman is offline
Free Member
 
Join Date: Jan 2003
Location: Wales, UK
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yauman
alright ill give it a whirl and report back

this script ok now?

LoadPlugin("C:\mpeg2dec.dll")
LoadPlugin("C:\temporalcleanerold.dll")
LoadPlugin("C:\dustv5.dll")
LoadPlugin("C:\sampler.dll")
LoadPlugin("C:\blockbuster.dll")
Mpeg2Source("e:/not another teen movie/teen.d2v")
bilinearresize(480,350)
Spacedust()
TemporalCleaner()
Blockbuster(method="noise", variance=.3, seed=1)
Addborders(0,113,0,113)
sampler()

any suggestions for improvement?
Reply With Quote
  #4  
02-02-2003, 01:18 PM
KingTuk KingTuk is offline
Free Member
 
Join Date: Nov 2002
Posts: 107
Thanks: 0
Thanked 0 Times in 0 Posts
Your resize needs to be a multiple of 8 if you are using dustv5.dll as one of your filters...

If I am going for a 1/2 DVD resolution I would use

bilinearresize(352,480)

or for a 3/4 DVD resolution

bilinearresize(528,480)

so if your movie is going for a 480x480 resouution
you should use:
bilinearresize(480,352)
Spacedust()
TemporalCleaner()
Blockbuster(method="noise", variance=.3, seed=1)
AddBorders(0,64,0,64)
Reply With Quote
  #5  
02-02-2003, 01:38 PM
yauman yauman is offline
Free Member
 
Join Date: Jan 2003
Location: Wales, UK
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yauman
well after encoding the right sized sample of that script i notice that the movie was very smooth,too smooth and some mosquitos were still present, ne alternatives to those filters or should i remove one?
Reply With Quote
  #6  
02-02-2003, 01:43 PM
KingTuk KingTuk is offline
Free Member
 
Join Date: Nov 2002
Posts: 107
Thanks: 0
Thanked 0 Times in 0 Posts
yauman

Which KVCD template are you using? and What is your latest script?
Reply With Quote
  #7  
02-02-2003, 01:56 PM
yauman yauman is offline
Free Member
 
Join Date: Jan 2003
Location: Wales, UK
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yauman
LoadPlugin("C:\mpeg2dec.dll")
LoadPlugin("C:\temporalcleanerold.dll")
LoadPlugin("C:\dustv5.dll")
LoadPlugin("C:\sampler.dll")
LoadPlugin("C:\blockbuster.dll")
Mpeg2Source("e:/not another teen movie/teen.d2v")
bilinearresize(480,352)
Faerydust()
TemporalCleaner()
Blockbuster(method="noise", variance=.3, seed=1)
Addborders(0,112,0,112)
sampler()

and im doing the encode in normal compliant svcd format, ie default gop and default matrix in tmpgenc, this is for my standalone dvd player and id prefer it in mpeg2 (i really dont want it in a different format)
Reply With Quote
  #8  
02-02-2003, 02:16 PM
yauman yauman is offline
Free Member
 
Join Date: Jan 2003
Location: Wales, UK
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yauman
using that script the movie is quite a bit softer (less than when i used spacedust tho) but there is still a lot of mosquitos and now i can see dct blocks
Reply With Quote
  #9  
02-02-2003, 02:41 PM
KingTuk KingTuk is offline
Free Member
 
Join Date: Nov 2002
Posts: 107
Thanks: 0
Thanked 0 Times in 0 Posts
If you are using default svcd then your movie is going to take 3CD's if you want good quality...

I don't know if your player supports it, but you should be able to fit the whole movie on 1CD using KVCDX3 MPEG-1 and it will look almost like the original DVD
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: DVD source/mosquito noise problem Jimblob Avisynth Scripting 19 05-12-2004 09:41 AM
Avisynth: Plugin that matches TMPG's noise reduction? sToRm Avisynth Scripting 1 02-17-2004 10:05 AM
Avisynth: Additional Noise Reduction for Optimal Script Jellygoose Avisynth Scripting 4 10-21-2003 06:43 PM
Avisynth: Wavelet Noise Reduction? kwag Avisynth Scripting 98 09-23-2003 12:22 PM
TMPGEnc noise reduction filter for AVIsynth? jamz Avisynth Scripting 4 09-01-2003 03:37 AM




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