I originally made some DVD recordings many years ago and notice this shimmering dot crawl which is quite distracting. Recorded on my old combi unit hooked up to cable tv box via scart lead, so not sure if it's analog interference, MPEG2 artifacts, or both.
You'll notice it on the greens on this video.
+ Reply to Thread
Results 1 to 4 of 4
-
-
Yes, it is Dotcrawl of composite video, caused by the chroma spreading into the luma.
You can try the various Avisynth filters and see what helps best without damaging the picture too much.
http://avisynth.nl/index.php/External_filters#Rainbow_.26_Dot_Crawl_Removal
A simple but effective fix is to downscale the width to say 50% and then upscale it to the original width. One will loose some sharpness though.
Code:LWLibavVideoSource("Video.mp4") bilinearresize(width/2,height) spline36resize(width*2,height)
Last edited by Sharc; 20th Aug 2025 at 02:31. Reason: File added
-
Ah i guess i would have had to have my cable box set to output RGB in the settings, otherwise was stuck with composite!
Nice trick. I've used that before for herringbone noise, but didn't think to use it with Dotcrawl!
Code:FFMpegSource2("Video.mp4") QTGMC(preset="slower", matchpreset="slower", matchpreset2="slower", sourcematch=3, tr1=2, tr2=1, NoiseTR=2, sharpness=0.1, border=true) nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=400, fheight=576) nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=720, fheight=576) Crop(0,0,-6,-0) Unsharp()
Last edited by Master Tape; 20th Aug 2025 at 13:26.
-
An s-video connection would have worked also. I've found composite is fine when used as intended.
Similar Threads
-
ASTDRmc for Dot Crawl?
By colonel0812 in forum RestorationReplies: 3Last Post: 6th Sep 2023, 21:00 -
Help with possible Dot crawl & rainbowing during capture
By HansensUniverse in forum Newbie / General discussionsReplies: 19Last Post: 11th Feb 2022, 02:19 -
more Dot Crawl removal help-laserdisc capture
By clashradio in forum Video ConversionReplies: 2Last Post: 27th Apr 2021, 21:30 -
Reducing severe dot crawl?
By GlitchBob in forum Video ConversionReplies: 6Last Post: 19th Apr 2021, 22:35 -
Removing dot crawl and rainbowing artifacts from NTSC dvd rip
By pm-s in forum RestorationReplies: 9Last Post: 1st Feb 2021, 04:07