Selur's Little Message Board
[HELP] 80s movie with video inserts - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Talk, Talk, Talk (https://forum.selur.net/forum-5.html)
+--- Forum: Small Talk (https://forum.selur.net/forum-7.html)
+--- Thread: [HELP] 80s movie with video inserts (/thread-4189.html)



80s movie with video inserts - Miranda - 19.08.2025

The special effects for this early 1980's movie were created in a video suite and then edited into the 35mm feature. As you can see, there is baked-in interlacing and awful chroma noise. Any suggestions? 

I'm not so worried about the combing, but I need to retain as much of the sharpness as possible whilst removing the chroma noise. I've tried most of the de-noise filters but a lot of the chroma noise remains with some loss of detail.

Sample clip


RE: 80s movie with video inserts - Selur - 19.08.2025

About the combing: simple deinterlacing works fine.
About the clock skew issue which caused the upper half flickering: I'm pretty sure I have suggested something for this clip before.
About the chroma:
Is that really chroma noise?
Adding more blue to the color, it looks to yellow (side note: I am !really! bad when it comes to color grading)
clip = color.RGBAdjust(rgb=clip, b=1.200, rg=0.850)
and shifting the luma ranges:
# adjusting color space from YUV422P10 to RGB30 for vsLevels
clip = core.resize.Bicubic(clip=clip, format=vs.RGB30, matrix_in_s="470bg", range_s="limited")
# adjusting color using Levels on RGB30 (10 bit)
clip = core.std.Levels(clip=clip, min_in=0, max_in=872, min_out=64, max_out=940)
It doesn't look so bad.
[Image: grafik.png]
(AutoWhite or GrayWorld will do similar)

You could also try some DeRainbow and denoising and only use the chroma adjustment of the denoising (using Merge Y=0,U=1,Y=1)
HQDN3D also is usually works fine with chroma noise (simply set spatial and temporal luma to 0)
If you have an NVIDA card and the torch addon is installed using BasicVSR++ limited to chroma (using Merge Y=0,U=1,Y=1) can sharpen chroma.
[Image: grafik.png]
(just to sharpen the chroma aWarpSharp2 applied to and limited to chroma also can help)

Hope this helps to get you started.

Cu Selur


RE: 80s movie with video inserts - Miranda - 19.08.2025

Strange - wrong clip. Can you re-click the link? It should be a crazy flying head.

https://drive.google.com/file/d/1Z7SgiIWG6wHarfEcUC6WFXm4KrZGjJCm/view


RE: 80s movie with video inserts - Selur - 19.08.2025

can't access the file Big Grin


RE: 80s movie with video inserts - Miranda - 19.08.2025

Link


RE: 80s movie with video inserts - Selur - 19.08.2025

Download works.


RE: 80s movie with video inserts - Selur - 19.08.2025

Seems like someone messed up mixing interlaced and progressive content and then resized Angel
If you just want to filter the chroma:
a. set 'Split Compare View' to 'Split YUV' this way you see in the lower row what happens to the chroma
b. use try different denoisers and restrict their effect to chroma only (Merge Y=0;U=V=1)
Here's an example of MCTemporalDenoise(settings="very high") restricted to chroma:
[Image: grafik.png]
The Y plane is untouched and just the other two got the filter effect.
If you want to remove fines chroma noise, use a degrain instead of a denoise filter.

Not really sure what you are aiming for, but maybe using CAS(0.7)+SpotLess(tr=3) (!in that order!) does what you want

Cu Selur


RE: 80s movie with video inserts - Miranda - 19.08.2025

Thank you, will try tomorrow. Smile


RE: 80s movie with video inserts - Miranda - 20.08.2025

Where can I find this setting: 

set 'Split Compare View' to 'Split YUV'.

I'll try this: MCTemporalDenoise(settings="very high") restricted to chroma:

But I don't see a "very high" setting?


RE: 80s movie with video inserts - Selur - 20.08.2025

see:
       

Cu Selur