MOBI is the ebook format that defined Kindle's early dominance. Understanding MOBI — its origins, structure, limitations, and how it relates to the newer AZW and AZW3 formats — is essential for anyone managing an ebook library or converting files for Kindle devices.
What Is MOBI?
MOBI (short for Mobipocket) is an ebook format based on the older PalmDOC format, developed by the French company Mobipocket SA in 2000. Amazon acquired Mobipocket in 2005 and used the format as the foundation for the first Kindle devices launched in 2007.
A MOBI file is essentially a PalmDOC database containing compressed HTML markup (a very early, simplified HTML subset), images in their original format, and metadata (title, author, publisher, ISBN). The markup is rudimentary by modern standards — essentially the HTML equivalent of the early web.
MOBI vs AZW vs AZW3: Understanding the Difference
Amazon's Kindle format history is confusing because the naming evolved over time:
| Format | Year | Technical Base | DRM | Status |
|---|---|---|---|---|
| MOBI | 2000 | PalmDOC + HTML | None (usually) | Legacy |
| AZW | 2007 | MOBI + Amazon DRM | Mandatory | Legacy |
| AZW3 (KF8) | 2011 | HTML5 + CSS3 (ZIP-based) | Optional | Current |
| KFX | 2015 | Proprietary binary | Optional | Premium content |
AZW is simply MOBI with Amazon's DRM encryption layer added on top. Technically, AZW files are MOBI files. If you strip the DRM (which is legally complex and varies by jurisdiction), an AZW file becomes a MOBI file.
AZW3 (also called KF8 or Kindle Format 8) is a complete redesign introduced with the Kindle Fire in 2011. AZW3 supports modern HTML5 and CSS3, fixed-layout books (like children's books and comics), embedded fonts, and complex typography. It's far superior to MOBI technically.
What Devices Read MOBI?
- All Kindle devices and apps (MOBI support added from day one)
- Most e-reader apps: Moon+ Reader, FBReader, Aldiko (Android/iOS)
- Calibre (desktop management)
- Older Palm OS devices (the original target platform)
Note: Amazon began dropping MOBI support for new Kindle content around 2022. Personal documents still work, but the recommended format for Kindle is now AZW3 or EPUB (via Kindle app on iOS/Android).
Converting MOBI Files
MOBI to EPUB (for Kobo, Apple Books, etc.):
ebook-convert book.mobi book.epub
Calibre handles the conversion cleanly. The resulting EPUB will reflect MOBI's limited styling — don't expect rich CSS layouts from old MOBI files.
MOBI to PDF:
ebook-convert book.mobi book.pdf
For better PDF formatting, consider converting MOBI → EPUB first, then EPUB → PDF with pandoc for more control.
MOBI to AZW3:
ebook-convert book.mobi book.azw3
This upgrades the format to the modern Kindle format while stripping any DRM (if the file has no DRM — Calibre cannot strip Amazon DRM).
Batch conversion with Calibre CLI:
for f in *.mobi; do
ebook-convert "$f" "${f%.mobi}.epub"
done
MOBI Limitations
- No CSS support: MOBI's HTML subset has no stylesheets — formatting is limited to inline attributes
- No fixed layout: cannot create children's books, comics, or magazine layouts
- No embedded fonts: system fonts only, readers choose the typeface
- Image limitations: low-resolution images only; no SVG
- No JavaScript: modern interactive elements not supported
- Single flow: text reflows but doesn't support complex multi-column layouts
These limitations are why Amazon moved to AZW3/KF8 for modern publishing.
DRM and MOBI
Most MOBI files in the wild are DRM-free (personal documents, side-loaded files, Project Gutenberg books, many independent author publications). Amazon's DRM is applied to purchased Kindle books as AZW files, not plain MOBI.
If you bought a Kindle book and want to convert it, the DRM must be addressed first. The legal situation varies by country — consult local copyright law regarding personal-use format shifting.
Tips for Kindle MOBI Users
- Use Calibre as your ebook library manager — it converts between all formats and syncs to Kindle via USB
- Send MOBI via email: Amazon's personal document service (Send to Kindle) accepts MOBI files — email to your @kindle.com address
- Prefer AZW3 for new content — better formatting, smaller file sizes
- Gutenberg books: Project Gutenberg offers many public domain books in MOBI format — download the EPUB version and convert if needed
- Check for DRM before converting: if Calibre says "DRM-encrypted," the file cannot be converted without additional tools
Related conversions
Document conversions that follow this topic naturally: