09-07-2022, 05:24 AM | #31 |
Member
Posts: 22
Karma: 190
Join Date: Sep 2021
Device: Kobo Libra 2
|
Hey, I have a problem here.
I've recently switched to Linux, so I'm kinda noob all-around. So to my problem: I use kepubify with my book -> it outputs as kepub.epub -> I add it to Calibre -> send it to my device (Libra 1, latest firmware). For some reason, the book shows up as a regular epub on Libra, not as kobo epub. What am I doing wrong here? I've tried it with several books, with both online and downloaded kepubify versions. I seem to remember it working fine on Windows. I assume it's something Calibre-related, been awhile since I've messed with it. What am I missing? Teach me your masterful ways, please |
09-07-2022, 06:16 AM | #32 |
Resident Curmudgeon
Posts: 76,448
Karma: 136564696
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
Maybe missing Windows.
|
Advert | |
|
09-07-2022, 11:02 AM | #33 | |
Guru
Posts: 739
Karma: 7025494
Join Date: Aug 2017
Location: Italy
Device: Kindle Paperwhite, Kobo Elipsa, Pocketbook Inkpad 4, Inkpad Color
|
Quote:
May be that calibre itself send the normal epub and not the *.kepub.epub book to Your Libra. Did You set the driver configuration to send the kepub file? I seldom use kepubify but when I use it I create a *.kepub file using the --calibre option (and the -i option) and then I add it to calibre. At the end I sideload it to my Kobo. Calibre will send it as *.kepub.epub file. Last edited by ps67; 09-07-2022 at 11:06 AM. |
|
09-07-2022, 05:23 PM | #34 | |
Member
Posts: 22
Karma: 190
Join Date: Sep 2021
Device: Kobo Libra 2
|
Quote:
|
|
09-13-2022, 03:48 PM | #35 |
Zealot
Posts: 105
Karma: 37418
Join Date: Jan 2013
Device: Kobo Glo, Aura, H2OE2, Libra 2
|
From the kepubify web site I've tried the instruction to convert my calibre library with kepubify. All went well until the last line (add to calibredb) which took ages to complete, something like 30 minuets, is there something wrong with line No4.
Just adding one epub and converting it to kepub it again takes ages to add the database, there must be a better way. Kepubify BTW is fantastic and doesn't have the problems I was having with the kepub converter plugin. Open PowerShell. Type $library = "C:\path\to\Calibre Library\", setting your library path accordingly, and press enter. This will set the path used in the next two commands. Type C:\path\to\kepubify.exe --calibre --update --inplace "$library", setting the path to kepubify accordingly, and press enter. This will convert any unconverted books. If you also want to re-convert books which are already converted, remove the --update. Type dir -Path "$library" -Filter *.kepub -Recurse | %{calibredb add -m 'ignore' $_.FullName} and press enter. This will add the converted books to the Calibre database. |
Advert | |
|
09-13-2022, 11:22 PM | #36 | |
Wizard
Posts: 2,792
Karma: 6990707
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
|
Quote:
|
|
09-14-2022, 03:51 PM | #37 |
Zealot
Posts: 105
Karma: 37418
Join Date: Jan 2013
Device: Kobo Glo, Aura, H2OE2, Libra 2
|
Thank for the reply, it works but has the following problem.
Unfortunately if it's run without first closing Calibre (easy mistake to make) then it throws a error after the conversion and stops before adding to the db, running again to add the kepubs to the database fails presumably because the date/time check fails the date of the previously converted books. Also converting a large number (tested with 100 books), some must fail the date/time check because not all are added to the database. The only way I found to recover from this is to run the original script. If you find time to look in to this, can I suggest running kepubify in "verbose" mode may be a way forward, the log this produces lists the converted books which need to be added to the db. |
09-21-2022, 11:33 AM | #38 |
Zealot
Posts: 105
Karma: 37418
Join Date: Jan 2013
Device: Kobo Glo, Aura, H2OE2, Libra 2
|
For completeness:
I settled on the following small change to the above script. This allows a one hour window to complete adding the newly created kepub's to calibre's database. $ts = New-TimeSpan -Days 0 -Hours 1 -Minutes 0 $library = "D:\Calibre_Library\" $curdate = (get-date) - $ts D:\kepubify\kepubify-windows-64bit.exe --calibre --update --inplace "$library" dir -Path "$library" -Filter *.kepub -Recurse | Where-Object { $_.CreationTime -gt $curdate} | %{calibredb add -m 'ignore' $_.FullName} |
11-13-2022, 01:35 AM | #39 |
Wizard
Posts: 1,431
Karma: 16297052
Join Date: Sep 2022
Device: Kobo Libra 2
|
I don't know if kepubify is supposed to do this, but I had an EPUB that wouldn't allow me to change the font face, and after using kepubify on it, I'm able to change the font, so thank you!
|
11-19-2022, 10:36 AM | #40 | |
Groupie
Posts: 195
Karma: 245
Join Date: Aug 2009
Location: USA
Device: Kobo Clara Blue PRS 350
|
Quote:
Any idea why that works? God bless davidfor, I miss him. |
|
12-16-2023, 06:42 PM | #41 |
Member
Posts: 13
Karma: 10
Join Date: Oct 2019
Device: Kobo Aura HD; Kobo Libra H20
|
Unsuccessful getting Kepubify to work with Mint 21.2
I'm embarrassed I can't get kepubify to work. D/led the 64bit Linux version, run chmod -x on the binary, but am stuck because kepubify doesn't respond to drag and drop and (not surprisingly) the terminal doesn't recognize the kepubify command--does it belong in a special directory? Any help appreciated.
|
12-16-2023, 11:05 PM | #42 |
Grand Sorcerer
Posts: 12,754
Karma: 75000002
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
|
From the command line you can either specify the whole path to where the program is /home/me/downloaded/kepubify
Or if you're IIN the same directory as it ./kepubify Now did you mean chmod -x (remove executable setting) or chmod +x (set executable setting)? Sent from my Pixel 6a using Tapatalk |
12-22-2023, 10:51 AM | #43 | |
Member
Posts: 13
Karma: 10
Join Date: Oct 2019
Device: Kobo Aura HD; Kobo Libra H20
|
Quote:
|
|
12-24-2023, 11:15 AM | #44 |
Groupie
Posts: 159
Karma: 330000
Join Date: Aug 2010
Location: Tampa, Florida
Device: Kobo Libre 2 Galaxy Tab S7 Plus Kobo Libre Colour
|
what in the wide world of sports is the difference between epub and kepub?????? why would i care? inquiring minds want to know.
|
12-24-2023, 11:15 AM | #45 |
Groupie
Posts: 159
Karma: 330000
Join Date: Aug 2010
Location: Tampa, Florida
Device: Kobo Libre 2 Galaxy Tab S7 Plus Kobo Libre Colour
|
oh and merry christmas
|
Tags |
conversion, epub, kepub, kepubify |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
kepubify v3: A fast, standalone EPUB to KEPUB converter (plus covergen/seriesmeta) | geek1011 | Kobo Reader | 227 | 07-29-2023 12:25 PM |
kepubify 2.0 - A standalone tool to convert ePubs to Kepubs | geek1011 | Kobo Reader | 149 | 10-03-2020 05:12 PM |
kepubify - A standalone tool to convert ePubs into Kobo ePubs | geek1011 | Kobo Reader | 114 | 03-04-2018 11:30 AM |
Please recommend the best Pdf To epub Converter for mini kobo reader ... | vanminh | Kobo Reader | 29 | 06-07-2014 10:05 AM |
Aspose standalone converter Word to Epub | ErikG | ePub | 1 | 05-25-2011 03:13 AM |