Hi, i'm encoding (x265) some anime Blu Rays with Hybrid, I'm relatively new to video editing and the source has this noise that I don't really know how to remove.
I'd like to have perfectly flat colors, if I can remove it or at least reduce it with an Hybrid filter or an avs script, how do I do it?
source info
Screenshot from the source
close up
![]()
+ Reply to Thread
Results 1 to 17 of 17
-
-
It would be much better for you to post a 10 second sample and not just a picture. A sample with steady movement because I doubt the framerate is really 29.97fps.
And you downloaded this, didn't you? So it's not really a Blu-Ray, is it? And it's already been reencoded by someone? -
You can reduce the noise (you may lose some detail too) but you'll have to upload a sample (not reencoded) of the source. Also be aware that removing the noise may lead to posterization.
Last edited by jagabo; 11th Jan 2017 at 19:07.
-
NLM should be quite efficient in your case.
https://ffmpeg.org/ffmpeg-filters.html#nlmeans
http://avisynth.nl/index.php/Image_Processing_Algorithms#NL_Means
http://avisynth.nl/index.php?title=External_filters&oldid.My#DenoisersLast edited by pandy; 12th Jan 2017 at 02:36.
-
-
dfttest and deen filters work great for noise in animes
*** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE -
https://mega.nz/#!nE4wTIgJ!VeZYmvVoFgTgB2pFm8ic_iXdt8PDFTkXg83ygg9scLY here's the sample
-
-
-
-
The grain in the background sky is intentional. Is that what you're trying to get rid of? There is a little bit of mosquito noise around the dark lines in the character animation. You can eliminate most of that with Deen(mode="a3d", rad=1, thrY=2, thrUV=3). But that also blurs the thin lines in the guy's hair. You can raise the threshold values and radius in Deen to get more noise reduction but watch out for blurring of other details and posterization (banding) artifacts.
-
-
I just wanted to be sure. You can use Histogram(mode="luma") to accentuate the noise and test your filtering.
Code:LWLibavVideoSource("sample2.m2ts") src = last Deen(mode="a3d", rad=1, thrY=1, thrUV=1) Interleave(src,last) # show before and after Histogram(mode="luma") # show noise
-
LWLibavVideoSource is a part of the LSMASH package.
http://avisynth.nl/index.php/LSMASHSource
Note that the script interleaves frames of the source and filtered video then uses Histogram() to show the noise. If you want to just see the before and after images, remove the last line. If you want to see just the results, remove the last two lines.
Similar Threads
-
Need help removing A/C noise from presentation
By moxiecat in forum AudioReplies: 11Last Post: 26th Sep 2019, 07:12 -
Removing VHS color lines and restoring a cartoon
By bmick23 in forum RestorationReplies: 3Last Post: 2nd May 2016, 04:28 -
Removing bassy noise from audio clip with Adobe Audition
By sheilanagig in forum AudioReplies: 1Last Post: 31st Mar 2014, 16:08 -
Removing noise and cleaning audio from film
By PCC in forum AudioReplies: 1Last Post: 18th Apr 2013, 12:12 -
Removing Noise.. NeatVideo VirtualDub problem
By David Animator in forum EditingReplies: 2Last Post: 1st Apr 2012, 16:43