OSSDrop
TrendingExploreForum
Drop a toolSign in

Built something open-source?

Add it to the list — free and open to every open-source project.

Drop your tool
OSSDrop
BrowseBlogForumHow to submitHow it worksFAQAboutContactPrivacyTermsThe list on GitHubr/OSSDrop
AI & Coding AgentsDeveloper Tools & CLIWeb & APIsData & DatabasesDevOps & Self-HostedFiles & SyncSecurity & PrivacyProductivityNotes & KnowledgeCommunication & SocialAutomation & IoTFinance & BusinessScience & EducationCreator / MediaAll categories →
© 2026 OSSDropFree · open source · community-curated

Blog · Published August 25, 2026 · Updated August 25, 2026 · 12 min read

NextGenUp Review: The Open-Source AI Upscaler That Does Images, Video and Faces

NextGenUp is a free, MIT-licensed desktop app that upscales images to 8K and video to 4K entirely on your own machine. No cloud upload, no watermark, no subscription, no account. It runs Real-ESRGAN (realesr-general-x4v3, a ~5 MB ONNX model) for super-resolution and GFPGAN v1.4 for face restoration, with YuNet handling face detection and FFmpeg covering the conventional scaling paths — all through ONNX Runtime.

The reason it exists is coverage. Most free upscalers do one medium: Upscayl is images only, Video2X is video but takes real setup, and neither restores faces. Paid tools cover more but cost roughly $199/year. NextGenUp puts images, video, and face restoration behind one point-and-click interface, and — unusually — can serve that same interface to a phone or tablet on your network.

It hit v1.0.0 on 19 August 2026 with signed builds for macOS (Apple Silicon and Intel), Windows 10/11, and Linux. This review covers what each of the four image modes actually does, how the video pipeline works, what the screenshots show, and the places where paid tools and older projects still beat it.

NextGenUp before and after comparison slider showing a pixelated original photo on the left and the AI-upscaled result on the right
NextGenUp's before/after slider. Drag the divider across the result to judge the upscale against the original at the same zoom level — the only honest way to evaluate any upscaler.
NextGenUp compared with Topaz Photo/Video AI, Upscayl and Video2X across the capabilities that decide which one you need.
CapabilityNextGenUpTopaz Photo / Video AIUpscaylVideo2X
PriceFree, MIT~$199/yearFree, AGPLFree, AGPL
Image upscalingYes, to 8KYesYesNo
Video upscalingYes, to 4KYesNoYes
Face restorationYes (GFPGAN v1.4)YesNoNo
Same-size enhanceYesYesNoNo
Batch + zip exportYesYesYesPartial
Runs fully offlineYesYesYesYes
Point-and-click GUIYes

How we picked

Disclosure first: NextGenUp and OSSDrop are both Matily projects. This is a review of our own software, so read the praise with the scepticism that deserves and weigh the Where it falls short section accordingly — we have tried to make it the most useful part of the page.

Everything factual here is verified from the source, not guessed: the license (MIT), the repository (github.com/riponcm/nextgenUp), the models (Real-ESRGAN realesr-general-x4v3, GFPGAN v1.4, YuNet), the four image modes, the platform builds, and the v1.0.0 release of 19 August 2026 all come from the repository and its release assets. The star count on this page is pulled live through OSSDrop, so it is current — and it is small, because the project is new. Screenshots are the project's own, unretouched.

We publish no benchmark numbers, PSNR/SSIM figures, or quality rankings. Upscaling output depends entirely on your source material, the mode you pick, and your hardware; the only benchmark that means anything is your own files. Where we compare against Topaz, Upscayl, or Video2X, we compare documented capabilities, not measured output. NextGenUp is listed on OSSDrop under the same rules as every other tool and gets no ranking preference.

The bottom line

Local, open-source upscaling has closed most of the gap with paid tools for everyday work. What remains is fine detail at extreme magnification and years of polish — not the core model. NextGenUp's contribution is coverage: images, video, and faces in one offline app under MIT, plus an Enhance mode that solves a problem most upscalers cannot even express.

It is our own project, so the fairest advice we can give is to stop reading and test it. Run it against Upscayl, Video2X, or whatever you use now, on your files, and use the before/after slider rather than taking anyone's word for it. See the listing on OSSDrop, browse more Creator / Media tools, or drop your own open-source tool.

Which mode should you actually use

Mode choice matters more than any setting, and the naming does not make it obvious. In practice:

  • Photo that is small and needs to be bigger — Quick for speed, Ultra when the result matters. Both run Real-ESRGAN; Ultra runs it server-side at higher quality.
  • Photo that is the right size but looks rough — Enhance. This is the mode people miss. It cleans noise, blur, and compression artifacts while keeping the exact dimensions.
  • Clean source, just needs to be larger — Quality. No AI, no hallucinated detail, very fast. On already-sharp images this often beats an AI pass, which can invent texture that was never there.
  • Old scan or a compressed portrait — Ultra with Restore faces ticked. GFPGAN is doing the heavy lifting here, and the difference on faces is far more dramatic than the upscale itself.
  • Phone or tablet — Ultra, because the browser modes need WebGPU. Point the device at the app's address on your network.

A useful habit with any upscaler: run two modes on the same file and use the before/after slider to compare. AI upscaling is not strictly better than classical scaling — it is different, and on clean source material Lanczos sometimes looks more faithful.

NextGenUp image upscaling mode selector showing Quick, Quality, Enhance and Ultra modes with a restore faces option
The four image modes. Enhance is the outlier — it reconstructs detail at 4x internally, then returns the image at its original size, so a 500x500 photo stays 500x500 but loses noise and JPEG artifacts.
NextGenUp batch processing several images at once with individual progress indicators for each file
Batch mode: drop a folder of images, process them all in the mode you picked, and download the results as a single zip. Each file reports its own progress and can be cancelled independently.

How the pipeline works

Understanding the pipeline explains the speed differences.

When you drop a file, Pillow and ffprobe read its metadata. Quality and Basic modes then hand off to FFmpeg for a Lanczos scale with contrast-adaptive sharpening and unsharp — fast, deterministic, no model involved. Quick, Enhance, and Pro run Real-ESRGAN through ONNX Runtime Web in a Web Worker, using WebGPU where available and WASM otherwise. Ultra runs the same model server-side on CPU, adds GFPGAN face restoration, and uses FFmpeg to reassemble video with its original audio.

Two implementation choices carry most of the practical weight. Images are processed in overlapping tiles, so an image far larger than available memory still completes — tiles are inferred separately and blended, which is why there is no hard resolution ceiling below the 8K output cap. And inference never runs on the UI thread, which is why progress stays smooth and cancellation is instant rather than leaving a wedged job behind.

The consequence worth internalising: Pro video is frame-by-frame model inference. A one-minute 30fps clip is 1,800 separate super-resolution passes. On CPU that is slow, and no amount of interface polish changes it. Use Basic for long footage and reserve Pro for short clips where quality justifies the wait.

NextGenUp video upscaling screen converting a clip to 4K with a live progress bar and a cancel button
Video upscaling to 4K. Basic mode uses FFmpeg Lanczos with sharpening; Pro runs Real-ESRGAN on every frame. Audio is preserved, portrait footage is handled automatically, and any job can be cancelled mid-run.

Where it falls short

The honest limitations, in the order they are likely to affect you:

It is new. v1.0.0 landed on 19 August 2026. Commercial upscalers have years of edge cases beaten out of them and NextGenUp does not. If you are doing paid client work today, that maturity gap is a real argument for the paid tool, independent of output quality.

Topaz still wins at extreme zoom. Real-ESRGAN is a strong general model, but on fine detail at high magnification Topaz's models resolve more. For web images, social media, prints, and AI-generated media the gap is small enough not to matter. For large-format professional output, test both on your own files before switching.

Pro video is slow on CPU. See the pipeline section — this is inherent to frame-by-frame inference, not a bug.

Faces are images-only for now. Video frames do not get GFPGAN treatment yet; it is on the roadmap along with larger server models (Real-ESRGAN x4plus, HAT), WebCodecs frame extraction, in-app GFPGAN download, and a Docker image.

Hard output caps. 8K for images, 4K for video. Beyond that you need a different tool.

None of these are reasons not to try it — it is free and local, so the only cost is your time. They are reasons to test it against whatever you use now rather than switching on the strength of a review, particularly a review written by the people who built it.

Frequently asked questions

What is NextGenUp?

NextGenUp is a free, open-source desktop app that upscales images to 8K and video to 4K on your own computer. It uses Real-ESRGAN for super-resolution and GFPGAN v1.4 for face restoration, and is released under the MIT license at github.com/riponcm/nextgenUp.

Is NextGenUp free, and is there a catch?

It is free under the MIT license, with no trial period, watermark, subscription, or account requirement. The honest caveat is not price but maturity: it reached v1.0.0 in August 2026, so it has had far less real-world testing than commercial tools that have shipped for years.

Does NextGenUp upload my photos or videos anywhere?

No. The models, FFmpeg, and the local server all run on your own hardware, so your files never leave your machine. This is also why speed depends on your own CPU or GPU rather than a subscription tier.

Is it a good free alternative to Topaz Gigapixel AI or Topaz Video AI?

For web images, social media, prints, and AI-generated media, Real-ESRGAN results are generally comparable at zero cost. Topaz still tends to resolve fine detail better at extreme zoom and has a much longer track record. If you upscale professionally at large magnification, evaluate both on your own files before switching.

How does NextGenUp compare to Upscayl or Video2X?

Upscayl handles images only. Video2X handles video but takes more setup. NextGenUp covers images, video, and face restoration in one point-and-click app and can serve its interface to other devices on your network. Upscayl and Video2X are both mature, well-regarded projects, so pick based on whether you need one medium or several.

Which NextGenUp mode should I use?

Use Quick or Ultra to make an image bigger, Quality when the source is already clean and you only need more pixels, and Enhance when the image is the right size but looks rough. For old scans or compressed portraits, use Ultra with Restore faces enabled.

Can it sharpen a blurry image without making it bigger?

Yes
Yes
Partial
Usable from other devicesYes, over your networkNoNoNo
Maturityv1.0.0, Aug 2026Years of releasesEstablishedEstablished
NextGenUp compared with Topaz Photo/Video AI, Upscayl and Video2X across the capabilities that decide which one you need.

Capability comparison only — no output-quality benchmark is claimed. Upscayl and Video2X are both mature, well-regarded projects; the honest difference is scope, not that one "wins".

Yes, that is Enhance mode. It upscales 4x internally to reconstruct detail, then downscales back to the original dimensions, removing noise, blur, and JPEG artifacts while keeping the exact resolution.

Can NextGenUp fix blurry faces in old photos?

Yes. Select Ultra mode and enable Restore faces. YuNet detects each face, GFPGAN v1.4 restores it, and the result is aligned and blended back into the photo. This works especially well on old, scanned, or heavily compressed images.

How do I upscale a video to 4K?

Open the Video Upscale tab, drop in your video, choose Basic for speed or Pro for AI quality, select 4x, and start. A 720p clip becomes 3840x2160, portrait video is handled automatically, and the original audio is preserved.

Do I need a GPU to run NextGenUp?

No. Browser modes use WebGPU when available and fall back to WASM, and the server modes run on CPU. A GPU makes processing faster but is not required.

Why is Pro video upscaling slow?

Pro mode runs Real-ESRGAN on every frame individually, so a one-minute 30fps clip is 1,800 separate inference passes. On CPU that takes time. Use Basic mode for long footage and reserve Pro for short clips.

What platforms does NextGenUp support?

Signed desktop builds for macOS (Apple Silicon and Intel), Windows 10/11 x64, and Linux (AppImage, deb, and rpm). It also runs as a self-hosted web app usable from any browser on your network, including phones and tablets.