Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre

Notices

Reply
 
Thread Tools Search this Thread
Old 04-28-2023, 05:05 PM   #1
gldnbrwncouches
Enthusiast
gldnbrwncouches doesn't littergldnbrwncouches doesn't litter
 
Posts: 40
Karma: 132
Join Date: Mar 2019
Device: Kobo Forma, Libra H2O & Clara HD, Nook ST w/GL, GL+ (2015), Kindle PW4
Calibre File Type Management (Kindle formatted Epub)

I've recently been getting books I purchase delivered through a service called Bookfunnel. They offer downloading a book in multiple formats if available for that book. Among the standard formats (epub, mobi, kepub, pdf, etc) there's also an option to download a "Kindle Epub file".

The kepub file downloads as "<bookname>.kepub.epub". In my experience, leaving it in this dual-extension style filename format will only show up as an "epub" in Calibre and it only stores one of each format per book. So I remove the ".epub" at the end and import it into Calibre as a ".kepub" file for the book, which allows for storing both the kepub and epub files and it works as expected when transferring it to my Kobo devices.

Similarly, the "Kindle Epub file" looks like "<bookname>.kindle.epub". I've been doing the same thing as the kepub so it ends up getting stored as a ".kindle" extension file for the book in Calibre. However, this means there's no real way for Calibre to interpret using it since ".kindle" isn't a real ebook format, but I keep it just in case it actually has better formatting structure for Kindle readers. Ideally, if it is actually better than the regular epub for kindle readers, this is the file I'd want to use for syncing over usb or sending to kindle via email, now that epub is actually supported there.

Two questions about this:

1. Is there a better way to import or store these so that I could more easily use them with Calibre and a Kindle device?

2. Does anyone whose seen these ".kindle.epub" files know if they carry any meaningful difference in formatting or structure than the regular epub files?
gldnbrwncouches is offline   Reply With Quote
Old 04-28-2023, 06:55 PM   #2
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,771
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
KePub is nothing to do with a Kindle. It's a Kobo ePub file. There are two programs on a Kobo for rendering ePub or KePub.
JSWolf is offline   Reply With Quote
Advert
Old 04-28-2023, 08:26 PM   #3
gldnbrwncouches
Enthusiast
gldnbrwncouches doesn't littergldnbrwncouches doesn't litter
 
Posts: 40
Karma: 132
Join Date: Mar 2019
Device: Kobo Forma, Libra H2O & Clara HD, Nook ST w/GL, GL+ (2015), Kindle PW4
Quote:
Originally Posted by JSWolf View Post
KePub is nothing to do with a Kindle. It's a Kobo ePub file. There are two programs on a Kobo for rendering ePub or KePub.
Yes, I'm aware of that. Perhaps my previous post was unclear, but I was comparing the two download options the site gives. They are both epub files in the end. The ".kepub.epub" file is just an epub with the Kobo extra span tags and such for tracking reading progress and rendering better/faster on kobo devices. ".kepub" is a recognized extension in Calibre and I can transfer to my Kobo devices because it's recognized as such.

Contrast that with their "Kindle Epub file" download option that downloads another epub file, but with the ".kindle.epub" extension. If I do the same filename modification, I end up with a ".kindle" file that is an epub inside, but programs like Calibre that interpret based on file extension won't know what to with that since ".kindle" isn't really a recognized ebook extension like mobi, epub, or even kepub.

Question 1 is how to store/use this in Calibre without overwriting the regular epub file since it's basically one extension type per book in my experience and even though it won't complain about storing a ".kindle" filename, it won't be able to do anything with it either.

Question 2 asks if anyone has seen this before and if they know if they are actually any different than the regular epub file in a meaningful way, maybe similar to how a kepub carries those extra tags and such for their readers, but in this case for a kindle? I'm not an expert on internal epub structure or formatting, but I can tell you it has a different md5sum than the regular epub file download option, so something is different, just unclear what and if it's worth keeping the extra file, or just using the regular epub when using "Send to Kindle" or loading via Calibre.
gldnbrwncouches is offline   Reply With Quote
Old 04-29-2023, 02:22 AM   #4
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,288
Karma: 169098402
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by gldnbrwncouches View Post
2. Does anyone whose seen these ".kindle.epub" files know if they carry any meaningful difference in formatting or structure than the regular epub files?
The structure is basically the same but the .kindle.epub will use media queries to allow proper sizing for images when using Send to Kindle and it's kin. You will see various images that have larger version that is used for KF8/azw3 and a smaller version intended for mobi. The media queries will specify the sizing for the images sizes and margins for KF8/azw3 in percentages/em while those for mobi will specify these in pixels. The media queries will have multiple versions such as:

Code:
@media amzn-mobi {

@media not amzn-mobi {

@media amzn-kf8 {

@media amzn-mobi {
    div.title-page-title-subtitle-block {
        margin-bottom: 96px;
    }

@media not amzn-mobi {
    div.title-page-title-subtitle-block {
        margin-bottom: 3em;
    }
DNSB is offline   Reply With Quote
Old 04-29-2023, 07:05 PM   #5
gldnbrwncouches
Enthusiast
gldnbrwncouches doesn't littergldnbrwncouches doesn't litter
 
Posts: 40
Karma: 132
Join Date: Mar 2019
Device: Kobo Forma, Libra H2O & Clara HD, Nook ST w/GL, GL+ (2015), Kindle PW4
Awesome, so I guess that answers number 2. The file is at least minorly different in a way that's beneficial for Kindle readers.

Any idea on question 1? Is there a better way to store them so they're easier used by Calibre when I connect my Kindle or use Send to Kindle?
gldnbrwncouches is offline   Reply With Quote
Advert
Old 04-29-2023, 09:48 PM   #6
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,288
Karma: 169098402
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
For the friend of mine who has been downloading them to use with Send to Kindle, he just adds them to calibre and either converts to azw3 to sideload to their Kindle or sends to Amazon for them to convert and then sync to the Kindle. Amazon does not know or care about the .kindle.epub file extension. For the most part, their opinion has become that calibre does a better job of conversion than Amazon though they lose the ability to sync between their Kindle and their Kindle as they phrase it. Basically, one device makes the ability to sync reading progress a bit useless.
DNSB is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Calibre is changing the file type of my zip files qwertyuio Library Management 3 12-30-2020 07:06 PM
Multiple epub:type roles for a file in landmarks nav jcsalomon Sigil 0 02-20-2018 02:08 PM
Can a file have multiple semantic tags (epub:type, reference type="…")? jcsalomon ePub 7 02-19-2018 11:40 AM
File size of epub formatted books Epubber Library Management 4 01-21-2012 07:04 AM
Questions about best practices: InDesign CS5 to ePub (file formatted for printing) mtrahan ePub 15 06-17-2011 03:43 AM


All times are GMT -4. The time now is 10:11 PM.


MobileRead.com is a privately owned, operated and funded community.