This page explains, in plain language, exactly what happens on your device when you use a Pridocs tool — no marketing claims, just what the code actually does.
When you drag a file onto a Pridocs tool (or click to choose one), your browser hands the page a File object using the standard, built-in File API — the same browser feature every website uses to let you attach a file to a form. At this point the file exists only as data in your browser tab's memory. Pridocs' code never calls a network function like fetch or XMLHttpRequest to send that file anywhere; there is simply no upload step in the code path.
What happens next depends on the tool, because different file types need different processing engines — all of which run inside your browser tab:
All of the processing described above — PDF.js, pdf-lib, Mammoth.js, Tesseract.js, FFmpeg.wasm, Essentia.js, TensorFlow.js models, and the Canvas API — runs using APIs your browser already provides locally. None of it requires sending your file's bytes to a remote server, so Pridocs' code simply never does. The only network requests a Pridocs tool can make are: loading the page itself, and one-time downloads of processing software (for example FFmpeg's engine binary, Tesseract's language data, Essentia/TensorFlow music models, or the background-removal model) — never your file.
You don't have to take our word for it. Open your browser's Developer Tools (F12), go to the Network tab, and convert a file. You will not see any outgoing request containing your file's data.
Pridocs' source code is public on GitHub, so you can verify everything on this page yourself instead of trusting a description of it: https://github.com/jeeten15-spec/pridocs
Because everything runs on your device rather than a server, performance depends on your device's own RAM and CPU rather than ours. We recommend keeping individual files under roughly 50–100 MB for a smooth experience — very large PDFs, videos, or image batches can run slowly or fail if your browser tab runs out of memory.
If you regularly work with larger media (for example long songs in Song2Vid), you can often stretch what the browser can handle by giving Windows more virtual memory — letting it use free space on a fast SSD as overflow when RAM is full. In Windows: Settings → System → About → Advanced system settings → Performance → Settings → Advanced → Virtual memory → Change, then set a larger custom paging file on an SSD drive. This does not upload your files anywhere; it only changes how your own computer manages memory. Results vary by device, and a hard limit still applies inside a single browser tab, but many people find this tip lets them finish jobs that previously crashed.
This does not exist today — every tool on Pridocs right now runs exactly as described above, entirely in your browser. We are considering an optional, clearly-labeled paid subscription tier in the future for cases the free browser-only tools genuinely cannot handle well, such as very large media files or conversions where in-browser processing can't match server-grade quality. If it ships, it will be an explicit, separate, opt-in choice — clearly marked wherever it's offered — and files sent to it would be deleted immediately after processing. It would never be silently mixed into the free tools described on this page.