I've been trying to tackle this problem ever since I've started transferring my tapes, but so far none of the filters I've tried seem to work. On some of my tapes, particularly recordings from the TV, there are apparent red streaks, which are most noticeable against the solid green background. Here are some of the examples:
![]()
The tape itself was recorded in MESECAM and very likely over some existing footage, as I see a label on it that does not match the contents.
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!
+ Reply to Thread
Results 1 to 4 of 4
Thread
-
-
So apparently this artifact is called "SECAM fire" in the video communities. As the name suggests, it's unique to the SECAM system and depending on how good the TV reception was, it would've been either mild like I have in my video samples, or extreme, like in this YouTube upload.
There was at least one attempt to reduce it, although I'm not sure what exact filter that person has used. -
You need something like that:
AVISource("red_1.avi")
assumetff()
SSIQ(diameter=11, strength=300, interlaced=true)
ConvertToYV16(interlaced=true)
orig=last
ev=orig.assumetff().separatefields().selecteven()
od=orig.assumetff().separatefields().selectodd()
ev
ue_chroma = UToY(ev).SpotLessUV() #
ve_chroma = VToY(ev).SpotLessUV() #
YToUV(ue_chroma, ve_chroma)
MergeLuma(ev)
ev_filtered=last
od
uo_chroma = UToY(od).SpotLessUV() #
vo_chroma = VToY(od).SpotLessUV() #
YToUV(uo_chroma, vo_chroma)
MergeLuma(od)
od_filtered=last
interleave(ev_filtered,od_filtered)
assumefieldbased().assumetff().weave()
converttoyv12(matrix="rec601",interlaced=true)
separatefields()
mergechroma(last)
fft3dfilter(bt=4,sigma=19,plane=3,degrid=1)
fft3dfilter(bt=4,sigma=19,plane=3,degrid=1)
mergeluma(last)
weave()
Similar Threads
-
90s Video Footage What is this called? noise? jitter? hash? streaks?
By SupraGSX in forum RestorationReplies: 14Last Post: 27th Jan 2023, 08:44 -
Dealing with difficult DVDs
By armyofquad in forum DVD RippingReplies: 1Last Post: 1st Oct 2021, 17:18 -
Dealing with old DVD with very bad Image
By ravarage in forum RestorationReplies: 9Last Post: 17th Nov 2020, 14:35 -
Program to remove streaks, lines, spots from VHS?
By Master Tape in forum RestorationReplies: 10Last Post: 10th May 2020, 16:42 -
Dealing with a very large MTS file
By RandyS555 in forum EditingReplies: 8Last Post: 18th Jan 2019, 10:02