En İyi Özgür Ebook Döndürme
EPUB, MOBI, AZW3, PDF ve daha fazlası arasında e-kitapları Calibre ile dönüştürün - ücretsiz, su işareti yok, kayıt yok.
Nasıl çalışıyor?
- Yükle. Bir ebook dosyasını seçin - EPUB, MOBI, AZW3 ve daha fazlası (100 MB'a kadar).
- Bir biçim seç. Çıkış biçimini seçin: EPUB, MOBI, AZW3, PDF, DOCX veya TXT.
- İndir. Çevrilen e-kitap otomatik olarak indirilir; hiçbir şey depolanmaz.
Bu araç hakkında
Ebook Converter changes an ebook from one format to another using Calibre on the server: convert an EPUB to MOBI or AZW3 for a Kindle, turn a MOBI into a standard EPUB, or export to PDF, DOCX or plain text. Calibre preserves the book's chapters and structure, reflowing the text for the target format. It's the easy way to read a book on a device that wants a different format. Each conversion runs under a size cap and a hard time limit. No watermark, no signup, deleted right after.
İnsanlar ne için kullanıyor?
- EPUB'yi Kindle için MOBI veya AZW3'e dönüştürün
- MOBI'yi standart EPUB'ye dönüştürün
- Yazmak için bir e-kitabı PDF'ye ihraç et
- E-kitabı sıradan metin veya DOCX'e dönüştürün
Geliştirici API
Bu aracı kendi kodunuzdan otomatikleştirin. Aşağıdaki son noktaya bir POST isteği gönderin ve web aracı ürettiği sonuçla aynısını alın. IP başına hız sınırlıdır ve kayıt gerektirmez - daha yüksek limitler için API anahtarları gelecek.
https://best.free/api/tools/ebook-converter/
| Parametreler | Örnek | Gerekir | Notlar |
|---|---|---|---|
file (dosya) |
book.mobi |
Evet | Ebook file, ≤25 MB. |
format |
epub |
Hayır. | epub / mobi / azw3 / pdf / docx / txt. |
curl -X POST https://best.free/api/tools/ebook-converter/ \
-F 'file=@book.mobi' \
-F 'format=epub' \
-o book.epub
import requests
files = {"file": open("book.mobi", "rb")}
data = {"format": "epub"}
r = requests.post("https://best.free/api/tools/ebook-converter/", files=files, data=data)
with open("book.epub", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("format", "epub");
const r = await fetch("https://best.free/api/tools/ebook-converter/", { method: "POST", body: fd });
const blob = await r.blob(); // the book.epub
Cevap: The converted ebook.