VideoHelp Forum
+ Reply to Thread
Results 1 to 4 of 4
Thread
  1. 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:
    Click image for larger version

Name:	REOat4G.png
Views:	45
Size:	621.8 KB
ID:	73890 Click image for larger version

Name:	XUDixlp.png
Views:	79
Size:	509.6 KB
ID:	73891

    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.
    Image Attached Files
    Quote Quote  
  2. 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.
    Quote Quote  
  3. 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()
    It can be fine tuned further indeed, haven't spent much time
    Image Attached Thumbnails Click image for larger version

Name:	red_1000017.jpg
Views:	14
Size:	295.5 KB
ID:	73916  

    Click image for larger version

Name:	red_1-fixed.jpg
Views:	12
Size:	272.2 KB
ID:	73917  

    Quote Quote  
  4. Is SSIQ a 32-bit filter? It doesn't work on 64-bit AvsPmod.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!