This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

DeepEnhancer
#44
Hi zspeciman and Selur,
I just wanted to sincerely thank you both for discussing Fred’s scripts, especially in the following thread:
https://forum.doom9.org/showthread.php?t=174298
I've been waiting for years for the release of his full 2017 script, but unfortunately, there hasn’t been any official update since then. I tried to recreate it myself based on the steps he described, but without much success. Here's the version I managed to put together:

# Load the source video
video = AVISource("path_to_your_video.avi")

# Apply RemoveDirtSMC to clean the video
video = video.RemoveDirtSMC()

# Apply GamMac for gamma and color correction
video = video.GamMac()

# Stabilize the video using DePanStabilize
video = video.DepanStabilize()

# Adjust colors with Tweak (6x tweak() to isolate color ranges with startHue and endHue)
video = video.Tweak(sat=1.0, hue=0.0, bright=0.0, cont=1.0, coring=false, startHue=0, endHue=360, maxSat=255, minSat=0)
video = video.Tweak(sat=1.0, hue=0.0, bright=0.0, cont=1.0, coring=false, startHue=60, endHue=180, maxSat=255, minSat=0)
video = video.Tweak(sat=1.0, hue=0.0, bright=0.0, cont=1.0, coring=false, startHue=180, endHue=240, maxSat=255, minSat=0)
video = video.Tweak(sat=1.0, hue=0.0, bright=0.0, cont=1.0, coring=false, startHue=240, endHue=300, maxSat=255, minSat=0)
video = video.Tweak(sat=1.0, hue=0.0, bright=0.0, cont=1.0, coring=false, startHue=300, endHue=360, maxSat=255, minSat=0)
video = video.Tweak(sat=1.0, hue=0.0, bright=0.0, cont=1.0, coring=false, startHue=0, endHue=60, maxSat=255, minSat=0)

# Color adjustment with RgbAdjust
video = video.RgbAdjust(r=1.0, g=1.0, b=1.0)

# Apply McDegrainSharp for denoising and sharpening
video = video.McDegrainSharp()

# Special sharpening with UnsharpMask and blur
video = video.UnsharpMask(radius=3)
video = video.Blur(1.0)
video = video.UnsharpMask(radius=2)
video = video.Blur(1.0)
video = video.Sharpen(0.5)

# Return the processed video
return video
Thanks again for keeping Fred’s work alive and for all your efforts. If you happen to have more parts of his original script or additional notes, I’d be truly grateful to see them!
Best regards,

Hi zspeciman and Selur,

I just wanted to say something that moves me every single time I watch it:
👉 https://www.youtube.com/watch?v=j2JlZdeoMNk

The result is absolutely incredible. The clarity, the motion smoothness, the overall aesthetic — it’s all simply breathtaking. It genuinely brings tears to my eyes, like watching history come alive with an almost surreal realism.

Do you happen to know if this was achieved solely using Fred’s script? Or were there other tools, filters, or enhancements involved? I’ve tried to reproduce something close based on his public notes, but unfortunately, I haven't been able to match this level.

Any insights or suggestions would mean a lot. Thank you both for keeping this legacy alive.

Best regards,
Reply


Messages In This Thread
DeepEnhancer - by djilayeden - 04.04.2025, 00:52
RE: Deoldify Vapoursynth filter - by Selur - 04.04.2025, 04:13
RE: Deoldify Vapoursynth filter - by Selur - 04.04.2025, 13:57
RE: Deoldify Vapoursynth filter - by safshe - 04.04.2025, 16:17
RE: Deoldify Vapoursynth filter - by Dan64 - 04.04.2025, 18:41
RE: DeepEnhancer - by Selur - 04.04.2025, 19:30
RE: DeepEnhancer - by djilayeden - 04.04.2025, 21:08
RE: DeepEnhancer - by zspeciman - 04.04.2025, 21:32
RE: DeepEnhancer - by Selur - 04.04.2025, 22:15
RE: DeepEnhancer - by Selur - 05.04.2025, 10:11
RE: DeepEnhancer - by Dan64 - 05.04.2025, 10:41
RE: DeepEnhancer - by Selur - 05.04.2025, 11:07
RE: DeepEnhancer - by djilayeden - 05.04.2025, 14:09
RE: DeepEnhancer - by zspeciman - 05.04.2025, 14:35
RE: DeepEnhancer - by Selur - 05.04.2025, 14:52
RE: DeepEnhancer - by djilayeden - 05.04.2025, 15:28
RE: DeepEnhancer - by Selur - 05.04.2025, 17:08
RE: DeepEnhancer - by zspeciman - 05.04.2025, 17:26
RE: DeepEnhancer - by Selur - 05.04.2025, 17:34
RE: DeepEnhancer - by djilayeden - 05.04.2025, 18:39
RE: DeepEnhancer - by Dan64 - 06.04.2025, 11:39
RE: DeepEnhancer - by Selur - 06.04.2025, 13:02
RE: DeepEnhancer - by Dan64 - 06.04.2025, 13:28
RE: DeepEnhancer - by Selur - 06.04.2025, 13:45
RE: DeepEnhancer - by Selur - 06.04.2025, 15:58
RE: DeepEnhancer - by Dan64 - 06.04.2025, 20:09
RE: DeepEnhancer - by Selur - 06.04.2025, 20:12
RE: DeepEnhancer - by Dan64 - 06.04.2025, 20:20
RE: DeepEnhancer - by Selur - 06.04.2025, 20:43
RE: DeepEnhancer - by Selur - 06.04.2025, 21:29
RE: DeepEnhancer - by Dan64 - 06.04.2025, 21:29
RE: DeepEnhancer - by Selur - 06.04.2025, 21:41
RE: DeepEnhancer - by djilayeden - 06.04.2025, 21:44
RE: DeepEnhancer - by Dan64 - 06.04.2025, 21:56
RE: DeepEnhancer - by Selur - 07.04.2025, 05:10
RE: DeepEnhancer - by Selur - 07.04.2025, 16:13
RE: DeepEnhancer - by Dan64 - 10.04.2025, 00:49
RE: DeepEnhancer - by zspeciman - 10.04.2025, 14:42
RE: DeepEnhancer - by Selur - 10.04.2025, 15:18
RE: DeepEnhancer - by djilayeden - 11.04.2025, 15:47
RE: DeepEnhancer - by Selur - 11.04.2025, 20:26
RE: DeepEnhancer - by Dan64 - 12.04.2025, 00:09
RE: DeepEnhancer - by Dan64 - 12.04.2025, 12:36
RE: DeepEnhancer - by Selur - 12.04.2025, 12:43
RE: DeepEnhancer - by djilayeden - 12.04.2025, 13:26
RE: DeepEnhancer - by Dan64 - 12.04.2025, 13:44
RE: DeepEnhancer - by Dan64 - 12.04.2025, 15:24
RE: DeepEnhancer - by Selur - 12.04.2025, 15:47
RE: DeepEnhancer - by djilayeden - 12.04.2025, 15:52
RE: DeepEnhancer - by Selur - 12.04.2025, 15:56
RE: DeepEnhancer - by djilayeden - 12.04.2025, 15:59
RE: DeepEnhancer - by Selur - 12.04.2025, 16:51
RE: DeepEnhancer - by Dan64 - 12.04.2025, 17:16
RE: DeepEnhancer - by Selur - 12.04.2025, 18:03
RE: DeepEnhancer - by Dan64 - 13.04.2025, 18:18

Forum Jump:


Users browsing this thread: 1 Guest(s)