Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader

Notices

Reply
 
Thread Tools Search this Thread
Old 10-31-2017, 05:28 PM   #61
ferossan
Member
ferossan began at the beginning.
 
ferossan's Avatar
 
Posts: 14
Karma: 10
Join Date: Sep 2009
Device: EZ Reader Pocket PRO, Nook Simple Touch, Nexus 7, Kobo Glo HD
Quote:
Originally Posted by geek1011 View Post
A .bin.

1. chmod +x /path/to/kepubify-linux-64bit
2. /path/to/kepubify-linux-64bit /path/to/source.epub

It will output to the current dir.
Thank you.
Didn't work at first. But adding the ./ at the beginning did it:
2. /path/to/./kepubify-linux-64bit /path/to/source.epub

Just tried a random epub file and put it on my reader. Works very good.
Excellent alternative to the calibre plugin.
Thanks a lot!
ferossan is offline   Reply With Quote
Old 10-31-2017, 05:52 PM   #62
ferossan
Member
ferossan began at the beginning.
 
ferossan's Avatar
 
Posts: 14
Karma: 10
Join Date: Sep 2009
Device: EZ Reader Pocket PRO, Nook Simple Touch, Nexus 7, Kobo Glo HD
[QUOTE=patrik;3559636]
Quote:
Originally Posted by trekk View Post
Conversion is very fast, but without the possibility of a batch conversion, Calibre is faster when converting multiple files. Nice tool though!


Code:
#!/bin/bash
for i in *.epub; do kepubify "$i"; done
Multiple files works for me using:
Code:
for i in *.epub; do ./kepubify-linux-64bit "$i"; done
ferossan is offline   Reply With Quote
Advert
Old 12-14-2017, 02:52 PM   #63
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,730
Karma: 6675565
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Talking

OMG YES!!!!!!!! WHY DID THIS TAKE ME SO LONG TO REALIZE!!!!!

I think I have found the issue on Windows. I think I forgot to clean the path; it is storing backslashes as the path separator on Windows, which is invalid in a zip file which can only contain forward slashes according to the spec. I didn't find the issue on Windows because windows explorer thinks backslashes are fine and shows them as first. Same with other windows based zip archive viewers. Now, I just need to test this issue and I think I can fix it!

Many thanks to Semwize, who sent me some of the problematic ebooks.

And this reliazation is due to my file manager app on android conforming to the spec, and by the mere chance of accidently opening the ebook with my file manager on my phone.

FINALLY I think I have found the source, or at least one part of the source of this problem.
Attached Thumbnails
Click image for larger version

Name:	Screenshot_20171214-143503.png
Views:	313
Size:	202.0 KB
ID:	160630   Click image for larger version

Name:	comparision.png
Views:	314
Size:	74.0 KB
ID:	160632  

Last edited by geek1011; 12-14-2017 at 04:06 PM.
geek1011 is offline   Reply With Quote
Old 12-14-2017, 04:39 PM   #64
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,730
Karma: 6675565
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Yay! I have fixed the conversion issues in Windows in v1.2.0!
geek1011 is offline   Reply With Quote
Old 12-14-2017, 05:44 PM   #65
Semwize
Guru
Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.
 
Posts: 873
Karma: 252902
Join Date: Jun 2016
Device: Kobo
works great, thank you
Semwize is offline   Reply With Quote
Advert
Old 12-14-2017, 06:03 PM   #66
darryl
Wizard
darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.darryl ought to be getting tired of karma fortunes by now.
 
darryl's Avatar
 
Posts: 3,108
Karma: 60231510
Join Date: Nov 2011
Location: Australia
Device: Kobo Aura H2O, Kindle Oasis, Huwei Ascend Mate 7
@geek1011. I haven't tried this yet as most of my current reading is on my Oasis rather than my H2O. But I do prefer kepub on Kobo and will eventually give this a try. Thanks for all of your hard work. That Windows problem must have had you tearing your hair out. It's one of those esoteric problems often found only by sheer luck.
darryl is offline   Reply With Quote
Old 12-14-2017, 06:14 PM   #67
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,730
Karma: 6675565
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by darryl View Post
@geek1011. I haven't tried this yet as most of my current reading is on my Oasis rather than my H2O. But I do prefer kepub on Kobo and will eventually give this a try. Thanks for all of your hard work. That Windows problem must have had you tearing your hair out. It's one of those esoteric problems often found only by sheer luck.
Thanks! And yes, I was tearing my hair out. I actually gave up for the last few months. I was surely lucky to have opened an ebook in my file manager instead of my reader on my phone. Darn windows. I hope microsoft will someday learn to follow specs properly...
geek1011 is offline   Reply With Quote
Old 12-14-2017, 07:57 PM   #68
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,730
Karma: 6675565
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
I have released a new major update. Kepubify now uses all cores for 3x faster conversion. Also now supports converting a whole folder.

To convert a whole directory of books: kepubify /path/to/books /path/to/output
The output dir must be nonexistent. The directory structure of books from the source folder will be maintained. Errors will be queued until all books have been converted, at which point, they will be displayed.

v1.3.0
bf6c4fa Added option to convert whole folder of books (closes #8)
af05328 Updated README.md
2a6cfad Fixed segfault when printlog false
4a53aeb Only delay exit on Windows if started with drag and drop
c0e081a Use all CPU cores for conversion (closes #7)
geek1011 is offline   Reply With Quote
Old 12-14-2017, 07:58 PM   #69
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,730
Karma: 6675565
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by trekk View Post
I got a "no permission" message in my terminal, so I had to chmod kepubify on my mac. Conversion is very fast, but without the possibility of a batch conversion, Calibre is faster when converting multiple files. Nice tool though!

Edit: I also realized that the new .kepubs don't show a thumbnail of the cover on my KA1.
I have added support for batch conversion.
geek1011 is offline   Reply With Quote
Old 12-15-2017, 05:36 AM   #70
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: 73,858
Karma: 128597114
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Is batch conversion what's new in 1.3.1?
JSWolf is offline   Reply With Quote
Old 12-15-2017, 08:07 AM   #71
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,730
Karma: 6675565
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by JSWolf View Post
Is batch conversion what's new in 1.3.1?
No, that was a fix for batch conversion on Windows. I am getting really exasperated with Microsoft now.

V1.3.1 was batch conversion folder creation issues on windows
V1.3.0 was batch and 2x faster conversion (multi core)
V1.2.0 was windows fixes for packing epub

Next, I'll be working on a new site, and then I'll be making another performance improvement (probably about .5s faster per book, which adds up) of storing the extracted ebook in memory.

Last edited by geek1011; 12-15-2017 at 08:10 AM.
geek1011 is offline   Reply With Quote
Old 12-15-2017, 09:51 AM   #72
patrik
Guru
patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.patrik ought to be getting tired of karma fortunes by now.
 
Posts: 652
Karma: 4568205
Join Date: Jan 2010
Location: Sweden
Device: Kobo Forma
Thank you for your great work geek1011!
patrik is offline   Reply With Quote
Old 12-15-2017, 10:01 AM   #73
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,730
Karma: 6675565
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by patrik View Post
Thank you for your great work geek1011!
No problem! It's quite fun actually.
geek1011 is offline   Reply With Quote
Old 12-15-2017, 11:44 AM   #74
jcn363
absolute beginner
jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.jcn363 ought to be getting tired of karma fortunes by now.
 
jcn363's Avatar
 
Posts: 323
Karma: 1750999
Join Date: May 2017
Location: Go with the wind (43°19'17.7"N 2°00'19.4"W)
Device: ka1
Quote:
Originally Posted by geek1011 View Post
v1.3.0
jcn363 is offline   Reply With Quote
Old 12-15-2017, 01:25 PM   #75
Akbar
Enthusiast
Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.Akbar ought to be getting tired of karma fortunes by now.
 
Posts: 30
Karma: 513784
Join Date: Sep 2016
Device: Kobo Aura One, Galaxy tab s3
My Aura One could finally see the file .kepub converted using the latest version. I prefer to use this software since I get "error connecting device" message in Calibre from time to time. Thank you.
Akbar is offline   Reply With Quote
Reply

Tags
conversion, epub, kepub, tool

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Aura H2O Font size mismatch (downloaded epubs via Calibre vs. Kobo epubs & articles) Oolong Kobo Reader 36 01-25-2019 06:00 AM
Tool to automatically download and check epubs skreutzer Workshop 26 12-14-2015 12:28 PM
Touch Problem with all epubs, my epubs, or my kobo? (line clipping) plague006 Kobo Reader 14 12-02-2011 11:32 PM
Epub check tool: ePubs do not pass Portnull Calibre 32 11-04-2009 08:27 AM


All times are GMT -4. The time now is 06:49 PM.


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