digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Restore, Filter, Improve Quality (https://www.digitalfaq.com/forum/video-restore/)
-   -   Eliminate interference due to poor reception? (https://www.digitalfaq.com/forum/video-restore/14977-eliminate-interference-due.html)

qwertz73 02-28-2025 08:27 AM

Eliminate interference due to poor reception?
 
1 Attachment(s)
In 1997 I bought a 60cm satellite dish. I was having fun picking up FEEDS frequencies.

My dish was too small to receive a good signal. I'd like to be able to eliminate as much interference as possible. Any ideas?

Thanks


A capture as an attachment

themaster1 02-28-2025 04:41 PM

3 Attachment(s)
yes with a script of that nature:
Code:

LWLibavVideoSource(source="Feed.Sat.avi",seek_mode=0,format="yv12",dominance=1)
# PREFILTER BLACK COMETS/dropouts
ConvertToYV12(interlaced=true)
SeparateFields()
noisy  = last
nonoise = DeGrainMedian(limitY=255,limitUV=255,mode=5, norow=true)
diff    = 10                        # Difference between denoised and noisy clips
m      = mt_lutxy(noisy,nonoise,"y x - "+string(diff)+" - 255 *")
mt_merge(noisy,nonoise,m)
weave()

# Remove Black & White comets (Dropouts)
SeparateFields()
e=SelectEven().FixRipsp2 #.RemoveDirtMC(30,false)
o=SelectOdd().FixRipsp2 #.RemoveDirtMC(30,false)
Interleave(e,o)
Weave()
return last


Selur 03-02-2025 07:39 AM

1 Attachment(s)
A horrible slow approach would be using SpotLess and 2xMLDegrain on the separated fields before deinterlacing. (https://pastebin.com/RRvr6hJS)

qwertz73 03-02-2025 09:16 AM

1 Attachment(s)
I've been trying for hours to untangle the problem. I'm losing patience.

Attachment 19012

themaster1 03-02-2025 01:04 PM

mt_lutxy is part of masktools2, you have to load masktools (masktools2.dll), you also need degrainmedian.dll

Myself i'm losing patience with the rookies


All times are GMT -5. The time now is 09:10 PM

Site design, images and content © 2002-2026 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2026 Jelsoft Enterprises Ltd.