Quote:
Originally Posted by toancv
I am just wondering if we can batch coverting epub to azw3 by this similar, without using Caliber as Caliber tend to change the css after conversion?
|
Batch file AZW3 conversion would require Python post-processing with KindleUnpack without Calibre.
However, if you install
Kindle Previewer and the
Calibre KFX Output plugin, you could use the following command to convert all your .epub books to .kfx books.
Code:
FOR %%f IN ("*.epub") DO (calibre-debug -r "KFX Output" "%%f" >> conversion.log)
(The KFX Output plugin also uses KindleGen and only changes the original .epub file, if it'd otherwise not compile with KindleGen.)