Skip to main content
Back to Blog

File ConversionJul 15, 20265 min read

123apps vs Zamzar: 7 Free File Conversion Limits Exposed (2026)

Hasnain NisarAutomation engineer · Nisar Automates
123apps vs Zamzar: 7 Free File Conversion Limits Exposed (2026)

123apps vs Zamzar: 7 Free File Conversion Limits Exposed (2026)

TL;DR: - 123apps runs 120+ core formats through a cleaner browser interface, but throttles free users to 25 files daily and watermarks some video outputs. - Zamzar covers ~1,200 format combinations including obscure legacy types, yet caps free files at 50MB and forces email-based delivery with heavy ad friction. - Neither free tier offers an API; automation demands paid plans or external infrastructure, making both poor fits for n8n or Make workflows. - For teams processing more than 100 files monthly, a dedicated file conversion API with FFmpeg backing typically breaks even on labor costs alone.

Who this is for: developers, founders, and operations teams evaluating free conversion tools for occasional use—and calculating the real cost once automation enters the picture. We'll compare 123apps and Zamzar head-to-head, expose the limits most reviews gloss over, and 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. Processing happens client-side via WebAssembly where possible, with server fallback for formats the browser cannot handle. The platform fragments into discrete single-purpose apps: Video Converter, Audio Converter, PDF Tools, Merge PDF, and others. Free users hit a hard 25-file daily cap across all tools combined; some video outputs carry watermarks.

Zamzar, founded in 2006 by Mike and Chris Smith in the UK, is among the oldest online file conversion services still operating. It supports over 1,200 format combinations spanning document, image, audio, video, and CAD categories. The free tier permits files up to 50MB with mandatory email delivery; paid plans raise limits, remove ads, and unlock API access.

Both tools target casual users, not automation. That distinction matters more than most comparisons acknowledge—and it shapes every decision that follows.


123apps vs Zamzar: Feature Comparison

Dimension 123apps Zamzar
Free conversions/day 25 files (cross-tool) Unlimited (2-file queue)
Max free file size ~100MB practical; 500MB paid 50MB
Core formats ~120+ ~1,200 combinations
API access None Paid ($25+/mo)
Output watermarks Some video, free tier No
Registration Not required Email mandatory
Ad level Low (banners) High (interstitials, timers)
File retention 2 hours 24 hours
n8n/Make native node No No
Batch processing Limited Paid only
Client-side processing Partial (WebAssembly) No (server-only)

The decision this table enables: Occasional small-file users who hate ads lean toward 123apps. Anyone needing obscure format coverage—think .mdl, .dwg, or legacy Apple II formats—faces Zamzar's deeper catalog. For automation, neither free tier works; even Zamzar's paid API lacks native integration with popular workflow tools.


How Do I Convert Files Without Losing Quality?

Preserve source settings and avoid re-encoding whenever possible. Quality loss concentrates in transcoding—converting H.264 MP4 to AVI, for instance, decodes and re-encodes the entire video stream. For archival or editing workflows, prefer remuxing ("passthrough" or "copy" modes) that swap containers without touching the underlying stream.

Practical steps:

  1. Match your output codec to input. In 123apps' video converter, select identical codecs (H.264→H.264) to minimize generation loss. Zamzar hides codec controls entirely.
  2. Lock resolution and bitrate. Downsampling 4K to 1080p discards data permanently. Upsampling 1080p to 4K adds zero real detail—just bigger files.
  3. For audio: FLAC→WAV (lossless→lossless) preserves quality; MP3→AAC introduces psychoacoustic artifacts that compound with each conversion.
  4. For PDFs: Tools that extract text layers outperform those rasterizing pages to images. Both 123apps and Zamzar struggle with complex layouts—tables, footnotes, embedded fonts, multi-column text.

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. Most users learn this after losing irreplaceable footage to a chain of "quick conversions."


Rate Limits and the Hidden Cost of "Free"

123apps' 25-file daily cap resets at midnight UTC and tracks across all tools. Use the PDF merger for three files, the audio cutter for two, piercing the cap silently. Teams assuming each app carries separate limits get burned.

Zamzar's queue system throttles free users to two concurrent conversions. File three waits until one completes. For a 10-file batch, that's serial processing with ad delays between each—often 5–10 minutes per file.

Real cost comparison for a 500-file monthly 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. At 500 files, a developer billing $75/hour spends more on manual waiting than a paid API costs. For smart file conversion at scale, API pricing typically breaks even around 100 files monthly—sooner if you value sleep.


Privacy: Where Your Files Actually Go

123apps processes client-side where WebAssembly modules allow, falling back to remote servers for unsupported formats. Their privacy policy states files are "automatically removed from our servers" after 2 hours. No SOC 2 Type II report, GDPR-specific Data Processing Agreement, or ISO 27001 certification is published as of mid-2026.

Zamzar stores files for 24 hours by default, with email delivery as primary retrieval. Your file transits their infrastructure and your email provider's—two attack surfaces, not one. Their privacy policy mentions HTTPS transit but lacks end-to-end encryption specifics.

For sensitive workflows—legal documents, medical imaging, unreleased media, financial records—neither tool offers zero-knowledge processing or client-side encryption. Self-hosted FFmpeg tools or private API instances eliminate third-party exposure entirely. One healthcare startup we advised switched from browser tools to containerized FFmpeg after discovering patient scans lingered on conversion servers for hours.


Can I Use FFmpeg for File Conversion?

Yes, and it's the engine powering virtually every professional workflow. FFmpeg is the open-source command-line tool underlying 123apps' server-side processing, Zamzar's backend, and most commercial conversion services. First released in 2000, it now supports over 150 codecs and 100 container formats.

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 outperforms browser tools: - Batch processing thousands of files overnight - Custom encoding ladders (multiple resolutions/bitrates for adaptive streaming) - Stream manipulation (extracting audio tracks, concatenating clips, adding subtitles) - Integration with CI/CD pipelines or n8n automation

The trade-off: FFmpeg demands command-line comfort. For teams without DevOps capacity, managed APIs bridge the gap.


How Do I Automate File Conversion in n8n?

Neither 123apps nor Zamzar offers a native n8n node in free tiers. Zamzar's paid API ($25+/mo) requires manual HTTP Request nodes with polling loops. Here's the practical path:

Option 1: Zamzar API via HTTP Request (Paid)

  1. Generate API key from Dashboard → Developer
  2. Add n8n HTTP Request node
  3. Set method POST, URL https://api.zamzar.com/v1/jobs
  4. Authenticate with Basic Auth (API key as username, blank password)
  5. Form-data body: source_file (binary) + target_format
  6. Poll GET /jobs/{id} until status: "successful"
  7. Download from target_file.url

Limitation: No webhook support—you must poll. For a 100-file workflow, that's 100+ unnecessary requests plus polling overhead.

Option 2: Self-Hosted FFmpeg (Recommended for Volume)

Deploy FFmpeg in a container, expose via webhook, call from n8n. Cost: infrastructure you already run. Latency: seconds, not minutes. No rate limits. One media agency we work with processes 10,000+ files daily this way.

Option 3: Convert Fleet API

For teams wanting 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 usable6 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
Overlooking retention windows Files sit on third-party servers for hours Set internal policy: max 2-hour retention

Best File Conversion Tools: When to Upgrade

Free tools stop being free when they block规格 your workflow. Here's the 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 preserve metadata 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 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 tolerable daily 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.

Share

Read next