2026 · Novus ExamplesAbout 10 min readNovus Stream Solutions
Novus Examples: free sample and dummy files for every format
Meet Novus Examples, a free browser-first library of sample and dummy files in every type and format. Download a real PNG, PDF, MP4, ZIP, or a deliberately broken file to test your converters, editors, upload forms, and QA pipelines, with no account and nothing to sign up for.
Contents
Overview
Today we are adding Novus Examples to the Novus Stream Solutions portfolio. It is a free, browser-first library of sample and dummy files in every type and format we could reasonably cover, and the idea behind it is almost embarrassingly simple: when you need a test file, you should be able to download a real one in a couple of seconds, without hunting through old folders or signing up for anything. Think of it as a Lorem Ipsum for files, except that instead of placeholder text you get a genuine PNG, a genuine PDF, a genuine MP4, and, when you need one, a genuine zero-byte or deliberately corrupt file to make sure your software fails gracefully.
Almost everyone who works with software has hit this wall. You are building an upload form and need to confirm it accepts a JPG but rejects a 200 MB video. You are testing a converter and want to see what happens to a transparent PNG on the way to WebP. You are checking a background remover against a hair-heavy portrait, or a parser against a malformed JSON file. In each case the work is blocked on the same small thing: a suitable sample file, in exactly the right format, that you do not currently have to hand. Novus Examples exists to remove that particular friction, so the file you need is a download away rather than a detour.
Why test files deserve a real home
Test files tend to live nowhere. They accumulate on desktops with names like final2.png and untitled.mp4, they get pulled from random corners of the web with no idea what is actually inside them, and they go missing the moment you switch machines. The result is a quiet, recurring tax on anyone who builds or tests software: every time you need a specific kind of file, you improvise one, or you export something from another tool, or you settle for the wrong sample because finding the right one is more trouble than the test is worth.
That improvisation has real costs. A test is only as trustworthy as the input you feed it, and a sloppy sample produces a sloppy result. If you check an image pipeline only against ordinary sRGB photos, you will not notice the day it mishandles CMYK or chokes on a grayscale scan. If you never try a zero-byte upload, you will not learn how your form behaves until a real user sends one. Good testing depends on having the awkward cases on hand, and the awkward cases are exactly the ones nobody keeps a copy of.
Novus Examples treats the sample file as something worth organizing properly rather than something to scrounge. Files are grouped by type and format, labeled by what they are meant to exercise, and available to download one at a time in the browser. The goal is that the right file for the test you are running is easy to find on purpose, so you spend your attention on the software you are checking rather than on the errand of assembling an input for it.
The full format catalog
The library spans the formats people actually work with day to day, and it deliberately reaches past the common ones into the formats that break things. It is organized into a handful of clear categories so you can go straight to the kind of file you need.
- Images: PNG, JPG, WebP, GIF, SVG, TIFF, BMP, HEIC, AVIF, and ICO, including transparent PNGs, grayscale images, CMYK versus sRGB samples, tiny thumbnails and very large images, and hair and edge-heavy portraits meant specifically for background-removal testing.
- Documents: PDF, DOCX, XLSX, PPTX, TXT, CSV, JSON, XML, and Markdown, for exercising converters, parsers, viewers, and anything that ingests structured or formatted text.
- Audio: MP3, WAV, FLAC, AAC, and OGG, covering both compressed and lossless samples.
- Video: MP4, WebM, MOV, AVI, and MKV, for players, transcoders, and upload flows.
- Archives: ZIP, TAR, GZ, RAR, and 7z, for anything that has to unpack a container before it can do its job.
- Specialty and edge cases: zero-byte files, deliberately corrupt or malformed files, files with the wrong extension, and oversized files, all for the error-handling and robustness testing that ordinary samples never reach.
How it plugs into Novus Convert
Novus Examples pairs most naturally with Novus Convert, our file converter at convert.novusstreamsolutions.com. A converter is one of those tools you cannot really evaluate without inputs, and the honest way to evaluate it is to feed it the formats you care about and inspect what comes out the other side. That is exactly what this library is for. Grab a transparent PNG and convert it to WebP to confirm the transparency survives. Take a CMYK TIFF into a JPG and check the colors. Run a DOCX to PDF, an XLSX to CSV, or a HEIC to JPG, and see whether the result is what you expected.
The pairing works because the samples are chosen to surface the differences that matter between formats rather than to look nice. Transparency, color profiles, resolution, and container behavior are precisely the things conversions get wrong, and they are precisely the things the image and document samples are built to probe. If you want a guided run through the converter itself, How to convert and compress files privately with Novus Convert walks through a first conversion, and you can bring any of these files along as the input.
It also cuts out a step you would otherwise repeat constantly. Instead of exporting a one-off file from some other application every time you want to test a conversion, you download a known, consistent sample, run it through Novus Convert, and compare against a stable baseline. When the input never changes, a difference in the output is a signal about the converter rather than noise from a sample you cobbled together differently each time.
How it plugs into the NSS Background Remover
The other tool Novus Examples was built to feed is the NSS Background Remover at bgremover.novusstreamsolutions.com. Background removal is unusually sensitive to the kind of image you give it, and the images that expose its limits are the ones most people never think to test with. A clean product shot on a plain backdrop is easy. The hard cases are the ones with fine detail at the edges, and those are the cases the library keeps ready.
That is why the image catalog includes hair and edge-heavy portraits, transparent PNGs, and grayscale samples specifically for this kind of testing. Wispy hair against a busy background is the classic thing that separates a careful cutout from a crude one, so having a portrait built to stress that boundary lets you judge an edge honestly rather than on a photo that happened to be easy. Transparent inputs let you check how the tool behaves when part of the image already has no background, and grayscale samples confirm it does not quietly assume every image arrives in full color.
The point, as with the converter, is a stable and deliberately difficult input. When you always test against the same demanding portrait, you can tell whether a result is genuinely good or merely lucky, and you can compare one attempt to the next on equal terms. If you are new to the tool, How to remove a background from an image with NSS Background Remover covers a first removal, and any of the portrait samples make a fair, repeatable test image to bring to it.
The edge cases, and why error handling matters
Most sample libraries stop at well-formed files, and that is where the interesting testing actually begins. Software rarely fails on the clean, ordinary input it was demonstrated with. It fails on the empty upload, the file that claims to be a PNG but is not, the archive that was truncated in transit, and the video that is simply too large for the limit you set. Those are the moments that decide whether your tool degrades with a clear message or falls over with a stack trace, and they are the moments you cannot rehearse without the awkward files to rehearse against.
So Novus Examples keeps a specialty section for exactly these cases. There are zero-byte files for confirming your code handles an empty input rather than assuming every upload has content. There are deliberately corrupt and malformed files for checking that a parser rejects bad data cleanly instead of crashing or, worse, half-accepting it. There are wrong-extension files, where the name and the actual contents disagree, for testing whether your validation trusts the extension or looks at the bytes. And there are oversized files for exercising the size limits and timeouts that only ever get tested in production if you skip them here.
Error handling is the part of a product users only notice when it is missing, and it is genuinely hard to test on purpose because the inputs that trigger it are inconvenient to produce. Making those inputs a single download is the whole reason this section exists. Robustness is not a feature you can bolt on at the end; it is something you confirm case by case, and having the difficult cases ready to hand is what turns robustness testing from an intention into a habit.
Free, no account, and downloaded in the browser
Novus Examples is free, it asks for no account, and the files download straight in your browser. There is no sign-up wall, no email to hand over, and no metering that counts how many samples you have taken. You open the site, find the format you need, and download it, in the same few seconds it takes to describe. A library of test files should be the least ceremonious thing in your day, and we built it to behave that way.
This is the same stance that runs through the rest of the portfolio, applied to sample files rather than to processing media. There is no reason a page whose entire job is to hand you a file should collect anything about you in return, so it does not. The tool respects your privacy by doing less: it serves the samples and gets out of the way, and there is nothing about your visit that needs to be stored to make that work.
Being free is a natural state here rather than a promotion we might later walk back. Serving a catalog of static sample files does not carry a per-use bill quietly accruing in the background, which means keeping Examples free is a straightforward commitment rather than a subsidy waiting to be reclaimed behind a paywall. We would rather build the tool so that free is simply what it is than launch generously and reconsider once anyone starts to depend on it.
The sixth live Novus app
Novus Examples is the sixth live app in the portfolio, joining the NSS Background Remover, Novus Visualizers, Novus PDF Studio, Novus Convert, and Novus Learn. The through-line across all six is the same one it always has been: build free tools that hold their own against paid alternatives, keep the work close to the person using it, and never ask for more than the tool needs. Examples fits that line from a slightly different angle. It is not the tool you run your file through; it is the file you run through the tool, and it makes the other apps easier to trust because you can test them with inputs you actually chose.
You can open it at examples.novusstreamsolutions.com and browse straight to the category you need, whether that is images, documents, audio, video, archives, or the specialty edge cases. For the full picture of how the catalog is organized and what each sample is meant to exercise, see Novus Examples, and for the current inventory of every category, see Tool maps. If you would like a guided first pass, Getting started with Novus Examples: find and download a sample file walks through picking a format, downloading a sample, and running it through the tool you are trying to test. It is a small tool for a small, recurring problem, and that is exactly why we think it earns its place: the next time your work is blocked on the want of a suitable file, the file is already here.
Frequently asked questions
Quick answers to common questions about this topic.
Is Novus Examples free?
Yes. Every sample in the library is free to download, there is no account to create, and there is no limit counting how many files you take.
What file types can I download?
Images (PNG, JPG, WebP, GIF, SVG, TIFF, BMP, HEIC, AVIF, ICO), documents (PDF, DOCX, XLSX, PPTX, TXT, CSV, JSON, XML, Markdown), audio (MP3, WAV, FLAC, AAC, OGG), video (MP4, WebM, MOV, AVI, MKV), archives (ZIP, TAR, GZ, RAR, 7z), and specialty edge-case files such as zero-byte, corrupt, wrong-extension, and oversized files.
What are these sample files actually for?
They are test inputs. People use them to check file converters, background removers, image and video editors, upload forms, and QA pipelines against real files in every format, including the awkward edge cases that ordinary samples never cover.
Do I need to sign up or install anything?
No. Novus Examples runs in the browser with no account and no installation. You open the site, find the format you need, and the file downloads directly.