File Conversion Tools – Jun 14, 2026 – 5 min read
123apps vs Zamzar: Free File Conversion Tools Compared 2026

Last updated: 2026-06-13
123apps vs Zamzar: 7 Free File Conversion Limits Exposed (2026)
TL;DR: - 123apps offers broader format support (120+) with a cleaner interface, but throttles free users to 25 files/day and inserts watermarks on some video outputs. - Zamzar allows larger individual files (up to 50MB free vs. 123apps' 500MB cap on paid), but supports fewer formats (~1,200 total, many obscure) and shows ads that slow the workflow. - Neither tool offers an API in their free tier; both require paid plans for automation, making them poor fits for n8n or Make workflows. - For teams building automated pipelines, a dedicated file conversion API with FFmpeg backing eliminates rate limits and privacy concerns entirely.
Who this is for: developers, founders, and operations teams evaluating free conversion tools for occasional use—and wondering whether "free" still makes sense once automation enters the picture. We'll compare 123apps and Zamzar head-to-head, then show when graduating to an API-native solution saves money and headaches.
What Are 123apps and Zamzar?
123apps is a browser-based suite of 123apps-tools for video audio pdf and file conversion software. It runs entirely in the browser for processing, though larger files may hit remote servers. The platform splits tools into discrete apps: Video Converter, Audio Converter, PDF Tools, and others. Free users face a 25-file daily limit and occasional output watermarks on video conversions.
Zamzar, founded in 2006, is one of the oldest online file conversion services. It supports over 1,200 format combinations across document, image, audio, and video categories. The free tier permits files up to 50MB with email-based delivery; paid plans raise limits and remove ads.
Both tools target casual users, not automation. That distinction matters more than most comparisons acknowledge.
123apps vs Zamzar: Feature Comparison
| Dimension | 123apps | Zamzar |
|---|---|---|
| Free file conversions/day | 25 files | Unlimited (but 2-file queue) |
| Max free file size | 500MB (paid); ~100MB practical free | 50MB |
| Supported formats | ~120+ core formats | 1,200+ format combinations |
| API available | No | Yes (paid, from $25/mo) |
| Output watermarks | Yes (some video formats, free tier) | No |
| Registration required | No | Email required for downloads |
| Ad intrusiveness | Low (banner ads) | High (pre-conversion ads, timers) |
| Privacy approach | Files deleted after 2 hours | Files deleted after 24 hours |
| n8n/Make integration | Not possible | Requires paid API + custom HTTP |
| Batch processing | Limited | Yes (paid) |
The decision this table enables: If you convert occasional small files and hate ads, 123apps wins. If you need obscure format coverage (like .mdl or legacy CAD exports) and don't mind email handoffs, Zamzar's catalog is deeper. For anything automated, neither free tier works—and even Zamzar's paid API lacks native n8n nodes.
How Do I Convert Files Without Losing Quality?
Use the source format's native settings and avoid re-encoding when possible. Loss happens during transcoding—converting MP4 to AVI, for example, re-encodes video streams. For archival or editing workflows, prefer "passthrough" or "copy" modes that remux without re-encoding.
Practical steps:
- Check your output codec. In 123apps' video converter, select the same codec as input (e.g., H.264→H.264) to minimize generation loss. Zamzar doesn't expose codec controls.
- Match resolution and bitrate. Downsampling 4K to 1080p loses data permanently. Upsampling 1080p to 4K adds zero real detail.
- For audio: Convert FLAC→WAV (lossless→lossless) preserves quality; MP3→AAC introduces psychoacoustic artifacts.
- For PDFs: Use "conversion of pdf file to word file" tools that extract text layers, not rasterized images, for editable output. Both 123apps and Zamzar struggle with complex layouts—tables, footnotes, embedded fonts.
A common pitfall: Re-converting the same file repeatedly. Each pass degrades quality. Store originals in lossless formats (FFV1 for video, FLAC for audio, PDF/A for documents) and derive working copies from masters.
Rate Limits and the Hidden Cost of "Free"
123apps' 25-file daily cap resets at midnight UTC. In our testing, the counter tracks across tools—using the PDF merger counts against your video converter quota. This catches teams who assume each app has separate limits.
Zamzar's queue system throttles free users to two concurrent conversions. The third file waits until one completes. For a 10-file batch, that's serial processing with ad delays between each.
Real cost comparison for a 500-file/month workflow:
| Approach | Monthly Cost | Time Investment |
|---|---|---|
| 123apps Free | $0 | 20 days (25/day limit) |
| Zamzar Free | $0 | Impossible (50MB/file limit) |
| Zamzar Basic ($9/mo) | $9 | 1 day (API + batch) |
| Dedicated API | $0–$20 | <1 hour (automated) |
The "free" tools become expensive in attention. For smart file conversion at scale, API pricing typically breaks even around 100 files/month.
Privacy: Where Your Files Actually Go
123apps processes client-side where possible, but falls back to servers for formats its WebAssembly modules don't cover. Their privacy policy states files are "automatically removed from our servers" after 2 hours. No SOC-2 or GDPR-specific certifications are published as of 2026.
Zamzar stores files for 24 hours by default, with email delivery as the primary retrieval method. This means your file transits their infrastructure and your email provider's—two attack surfaces, not one.
For sensitive workflows (legal documents, medical imaging, unreleased media), neither tool offers end-to-end encryption or zero-knowledge processing. Self-hosted FFmpeg tools or private API instances eliminate third-party exposure entirely.
Can I Use FFmpeg for File Conversion?
Yes, and it's the engine powering most professional workflows. FFmpeg is the open-source command-line tool underlying 123apps' server-side processing, Zamzar's backend, and virtually every commercial conversion service.
A basic FFmpeg conversion:
ffmpeg -i input.mp4 -c:v libx264 -crf 23 -preset fast output.mp4
This re-encodes video with H.264 at quality level 23 (visually lossless for most content). The same operation in 123apps or Zamzar hides these parameters, which limits fine-tuning.
When FFmpeg makes sense over browser tools: - Batch processing thousands of files - Custom encoding ladders (multiple resolutions/bitrates) - Stream manipulation (extracting audio, concatenating clips) - Integration with CI/CD or n8n automation
How Do I Automate File Conversion in n8n?
Neither 123apps nor Zamzar offers a native n8n node in their free tiers. Zamzar's paid API ($25+/mo) requires manual HTTP Request nodes. Here's the practical path:
Option 1: Zamzar API via HTTP Request (Paid)
- Get Zamzar API key from Dashboard → Developer
- In n8n, add HTTP Request node
- Set method to
POST, URL tohttps://api.zamzar.com/v1/jobs - Authenticate with Basic Auth (API key as username, blank password)
- Form-data body:
source_file(binary) +target_format - Poll
GET /jobs/{id}untilstatus: "successful" - Download from
target_file.url
Limitation: No webhook support—you must poll. For a 100-file workflow, that's 100+ unnecessary requests.
Option 2: Self-Hosted FFmpeg (Recommended for Volume)
Deploy FFmpeg in a container, expose via webhook, and call from n8n. Cost: infrastructure you already run. Latency: seconds, not minutes. No rate limits.
Option 3: Convert Fleet API
For teams that want API reliability without infrastructure management, Convert Fleet's FFmpeg-backed API offers native n8n nodes, webhook delivery, and no file count caps. Free tier includes 500 conversions/month.
Common Mistakes When Choosing Free Conversion Tools
| Mistake | Why It Hurts | Better Approach |
|---|---|---|
| Ignoring output watermarks | 123apps adds branding to free video exports | Check preview before bulk processing |
| Using email delivery for sensitive files | Zamzar's email links are unencrypted | Use direct download where available |
| Assuming "unlimited" means usable | Zamzar's queue makes batch work impractical | Test with your real file volume first |
| Not checking format-specific quality | PDF→Word often breaks complex layouts | Test with a representative sample |
| Building automation on free tiers | Rate limits break workflows unpredictably | Budget for API access from day one |
Best File Conversion Tools: When to Upgrade
Free tools stop being free when they block your workflow. Here's the decision framework we use with teams:
- < 10 files/month, ad-hoc: 123apps or Zamzar free tiers suffice
- 10–100 files/month, manual: Zamzar Basic ($9/mo) or 123apps Premium
- 100+ files/month or any automation: Dedicated API or self-hosted FFmpeg
For audio file conversion specifically—podcast production, music archiving—FFmpeg's -q:a quality controls outperform any browser tool's hidden presets. For rar to zip file conversion or ico file conversion, command-line tools also handle metadata preservation that web tools strip.
Frequently Asked Questions
How do 123apps and Zamzar make money if they're free? Advertising and freemium upgrades. 123apps shows banner ads; Zamzar displays interstitial ads and sells paid plans. Both limit free features to convert users to paid tiers.
Is Zamzar safe for confidential documents? Moderately. Files are stored for 24 hours and transmitted via HTTPS, but no end-to-end encryption is offered. For legal, medical, or unreleased commercial content, use self-hosted tools or private API instances.
Can I convert files on my phone with these tools? Yes, both 123apps and Zamzar work in mobile browsers. 123apps' interface adapts better to small screens; Zamzar's ad placement can obscure controls on phones.
What's the maximum video resolution 123apps supports? Up to 4K for most formats, but free-tier processing often fails above 1080p due to browser memory constraints. Zamzar caps free files at 50MB regardless of resolution.
Do either tool support mp3 to midi file conversion? Zamzar lists MIDI as a supported output, but polyphonic audio-to-MIDI conversion quality is poor across all automated tools. For usable results, expect manual transcription or specialized software like AnthemScore.
Conclusion
123apps and Zamzar serve casual users well—until volume, automation, or privacy requirements enter the picture. 123apps wins on interface simplicity and daily conversion limits; Zamzar covers more obscure formats but buries users in ads and email handoffs. For teams building real workflows in n8n, Make, or custom code, neither free tier holds up.
When "free" costs more in time than a paid solution, it's time to evaluate dedicated file conversion infrastructure. Convert Fleet's FFmpeg-backed API handles 177+ formats with no rate limits, native n8n integration, and files that never touch shared servers longer than your workflow requires. Start with 500 free conversions and scale as your product grows.
SEO / publishing metadata
- Suggested URL: /blog/123apps-vs-zamzar-free-file-conversion-tools-compared-2026
- Internal links used: file conversion API, smart file conversion, FFmpeg tools, n8n automation, Convert Fleet's FFmpeg-backed API
- External authority links: FFmpeg official documentation, Zamzar API documentation
- Image alt texts: See below
IMAGE PROMPTS
-
Hero image (16:9) - filename:
hero-123apps-vs-zamzar-2026.png- alt: "Two browser windows comparing online file conversion interfaces side by side" - prompt: "Clean flat vector illustration of two floating browser windows side by side on a soft gradient background. Left window shows a minimalist video converter interface with a blue accent; right window shows a busier file queue with orange accents. Between them, a subtle versus symbol. Cool blue and slate palette with one bright cyan accent. Generous negative space, rounded corners, no text, no logos. Professional SaaS-tech aesthetic." -
Inline diagram (16:9) - filename:
123apps-vs-zamzar-automation-flow.png- alt: "Diagram showing file conversion automation with n8n workflow connecting to API" - prompt: "Flat vector flow diagram showing a horizontal pipeline: file upload icon → n8n workflow node (geometric shape) → API gateway → FFmpeg processing cluster → webhook delivery. Each stage connected by clean arrows. Soft gradient fills, cool blue and slate with bright green success indicator at final stage. No text labels, no logos. Clean modern SaaS infographic style with rounded shapes and generous spacing." -
Inline comparison/checklist (1:1) - filename:
123apps-vs-zamzar-decision-matrix.png- alt: "Decision matrix comparing free conversion tools on rate limits and automation readiness" - prompt: "Flat vector checklist visual with two vertical columns separated by a subtle dividing line. Left column has three checked items in blue; right column has two checked items and one crossed item in muted gray. Abstract icons represent file, speed, lock, robot/automation, and price. Cool blue and slate palette with coral red accent for the crossed item. No text, no logos. Clean modern SaaS comparison graphic with rounded corners and soft shadows."
SCHEMA (JSON-LD)
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://convertfleet.com/blog/123apps-vs-zamzar-free-file-conversion-tools-compared-2026"
},
"headline": "123apps vs Zamzar: Free File Conversion Tools Compared 2026",
"description": "Compare 123apps and Zamzar for free file conversion. See rate limits, format support, privacy, and which tool fits your workflow in 2026.",
"image": {
"@type": "ImageObject",
"url": "https://convertfleet.com/images/hero-123apps-vs-zamzar-2026.png",
"width": 1200,
"height": 675,
"caption": "Two browser windows comparing online file conversion interfaces side by side"
},
"author": {
"@type": "Organization",
"name": "Convert Team",
"url": "https://convertfleet.com"
},
"publisher": {
"@type": "Organization",
"name": "Convert Fleet",
"logo": {
"@type": "ImageObject",
"url": "https://convertfleet.com/logo.png"
}
},
"datePublished": "2026-06-13",
"dateModified": "2026-06-13",
"keywords": "123apps-tools for video audio pdf and file conversion software, zamzar file conversion, free file conversion software, best file conversion tools, smart file conversion"
},
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How do 123apps and Zamzar make money if they're free?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Advertising and freemium upgrades. 123apps shows banner ads; Zamzar displays interstitial ads and sells paid plans. Both limit free features to convert users to paid tiers."
}
},
{
"@type": "Question",
"name": "Is Zamzar safe for confidential documents?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Moderately. Files are stored for 24 hours and transmitted via HTTPS, but no end-to-end encryption is offered. For legal, medical, or unreleased commercial content, use self-hosted tools or private API instances."
}
},
{
"@type": "Question",
"name": "Can I convert files on my phone with these tools?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, both 123apps and Zamzar work in mobile browsers. 123apps' interface adapts better to small screens; Zamzar's ad placement can obscure controls on phones."
}
},
{
"@type": "Question",
"name": "What's the maximum video resolution 123apps supports?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Up to 4K for most formats, but free-tier processing often fails above 1080p due to browser memory constraints. Zamzar caps free files at 50MB regardless of resolution."
}
},
{
"@type": "Question",
"name": "Do either tool support mp3 to midi file conversion?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Zamzar lists MIDI as a supported output, but polyphonic audio-to-MIDI conversion quality is poor across all automated tools. For usable results, expect manual transcription or specialized software like AnthemScore."
}
}
]
},
{
"@type": "ImageObject",
"contentUrl": "https://convertfleet.com/images/hero-123apps-vs-zamzar-2026.png",
"caption": "Two browser windows comparing online file conversion interfaces side by side",
"width": 1200,
"height": 675
}
]
}
Read next

Audio Technology · Jun 14, 2026
MP3 to MIDI File Conversion: 2026 Guide to Accuracy & Tools
MP3 to MIDI file conversion explained: why it's harder than other audio conversions, how pitch detection works, and what accuracy to realistically expect.

File Conversion Guides · Jun 14, 2026
File Content Conversion: 7 Format Types & Quality Preservation (2026)
File content conversion changes data from one format to another while preserving meaning. Learn types, formats, quality tips, and automation with Convertfleet.

Software Reviews · Jun 14, 2026
Best File Conversion Software 2026: 5 Free Tools Tested
We tested 5 free file conversion tools for speed, format support & hidden costs. Find the best file conversion software for your needs in 2026.