Register Guidelines E-Books Today's Posts Search

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

Notices

Reply
 
Thread Tools Search this Thread
Old 01-09-2011, 03:07 PM   #1
DillonBladez
Junior Member
DillonBladez began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jan 2011
Device: PRS-650
Reading Manga

Hi, I'm new to these forums, but I hope that once I'm done covering the basics, I can start helping other people too.

My first problem is that I have downloaded some manga, all in jpg. One image covers two pages, and the book reads right to left. I first converted to zip>cbz>epub. But when reading on the device, i get say page 6 before page 5. I know I could manually fix this but it's a little time consuming and I was wondering if there was a way I could get calibre to do this automatically. I'm sorry if this has already been discussed, but I wasn't really sure what to search...

And I was wondering how I could get the time to appear on my reader (prs-650). Currently, the only way I can check the time is to go into system settings, or by going into a book and pressing home (it shows when you last read your book).

And lastly, I was wondering if anybody could list a couple hacks and custom firmwares available for the PRS-650. I want to use them, but I don't know if it's safe to do so.

Anyways, thanks in advance for any replies.
DillonBladez is offline   Reply With Quote
Old 01-09-2011, 07:48 PM   #2
Soul_Est
Gadgetic Young Man
Soul_Est has a complete set of Star Wars action figures.Soul_Est has a complete set of Star Wars action figures.Soul_Est has a complete set of Star Wars action figures.Soul_Est has a complete set of Star Wars action figures.
 
Soul_Est's Avatar
 
Posts: 58
Karma: 300
Join Date: Nov 2010
Location: Toronto, Ontario, Canada
Device: BlackBerry Z30, Sony PRS-650, Samsung Galaxy Note 10.1
Hi DillonBladez and welcome to MobileRead. As for the manga's pages coming in the wrong order, I don't read them on my PRS-650 as the aspect ratio of the ones I want to read would be a better fit for the PRS-950. As for displaying the time on your PRS-650, you can simply press the OPTIONS button where ever you are in the Reader. Under the Context Menu that shows up will be the current time in the same black bar as the battery indicator.

Hope this helps.
Soul_Est is offline   Reply With Quote
Old 01-09-2011, 09:47 PM   #3
viviena
Evangelist
viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.viviena ought to be getting tired of karma fortunes by now.
 
Posts: 412
Karma: 520610
Join Date: May 2010
Location: Canberra, Australia
Device: Currently Kobo Clara HD and Aura One, iPad
Quote:
Originally Posted by DillonBladez View Post
But when reading on the device, i get say page 6 before page 5. I know I could manually fix this but it's a little time consuming and I was wondering if there was a way I could get calibre to do this automatically.
I've used Calibre to convert manga collections before with few problems on the default settings -- no page-in-backwards-order problems anyway. Have you taken a look at the Comic Input screen of the conversion process to see if options such as Right to left are ticked?
viviena is offline   Reply With Quote
Old 01-10-2011, 01:08 AM   #4
farrioth
Enthusiast
farrioth began at the beginning.
 
Posts: 36
Karma: 12
Join Date: Aug 2010
Device: Kobo eReader
Quote:
Originally Posted by DillonBladez View Post
My first problem is that I have downloaded some manga, all in jpg. One image covers two pages, and the book reads right to left. I first converted to zip>cbz>epub. But when reading on the device, i get say page 6 before page 5. I know I could manually fix this but it's a little time consuming and I was wondering if there was a way I could get calibre to do this automatically. I'm sorry if this has already been discussed, but I wasn't really sure what to search...
Extract your cbz file, use a script like the below to rename the images, then recompress the cbz.

The script assumes your original images are being cropped so that there is one page per image, and the filenames are of the format image1.jpg; change pren and postn below as appropriate. There should be no line breaks in the script and it should be run in the directory containing the images.

Code:
pren=image; postn=.jpg ; for i in $(seq 1 2 $(ls | wc -l)) ; do mv $pren$i$postn foo ; mv $pren$(($i+1))$postn $pren$i$postn ; mv foo $pren$(($i+1))$postn ; done
farrioth is offline   Reply With Quote
Old 01-10-2011, 05:34 PM   #5
DillonBladez
Junior Member
DillonBladez began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jan 2011
Device: PRS-650
Quote:
Originally Posted by farrioth View Post
Extract your cbz file, use a script like the below to rename the images, then recompress the cbz.

The script assumes your original images are being cropped so that there is one page per image, and the filenames are of the format image1.jpg; change pren and postn below as appropriate. There should be no line breaks in the script and it should be run in the directory containing the images.

Code:
pren=image; postn=.jpg ; for i in $(seq 1 2 $(ls | wc -l)) ; do mv $pren$i$postn foo ; mv $pren$(($i+1))$postn $pren$i$postn ; mv foo $pren$(($i+1))$postn ; done
Okay. Would this be used in Calibre, or...? Sorry, I just got into the whole digital reading thing. And if it is supposed to be used in Calibre, where would it be used?

Quote:
Originally Posted by viviena View Post
I've used Calibre to convert manga collections before with few problems on the default settings -- no page-in-backwards-order problems anyway. Have you taken a look at the Comic Input screen of the conversion process to see if options such as Right to left are ticked?
Jeez, I feel like such an idiot. Thanks for your help guys.
DillonBladez is offline   Reply With Quote
Old 01-10-2011, 09:01 PM   #6
grogthegreat
Member
grogthegreat began at the beginning.
 
Posts: 15
Karma: 10
Join Date: Sep 2010
Device: none
I have been reading manga on my 950 and the best program that I have found so far is Canti. Calibre had problems with cutting off too much of the image.
http://www.bitcake.com/?x=entry:entry110104-101146
grogthegreat is offline   Reply With Quote
Old 01-10-2011, 09:23 PM   #7
farrioth
Enthusiast
farrioth began at the beginning.
 
Posts: 36
Karma: 12
Join Date: Aug 2010
Device: Kobo eReader
Quote:
Originally Posted by DillonBladez View Post
Okay. Would this be used in Calibre, or...? Sorry, I just got into the whole digital reading thing. And if it is supposed to be used in Calibre, where would it be used?
This should be run after making the cbz file. A cbz file can be extracted like a zip file, and will give you a bunch of jpgs (or sometimes other image files). Run the script in the folder with the images in it, and then make them back into a cbz file (the same way you'd make a zip file).

This shouldn't be needed if viviena's solution works for you.
farrioth is offline   Reply With Quote
Old 01-11-2011, 08:32 PM   #8
DillonBladez
Junior Member
DillonBladez began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Jan 2011
Device: PRS-650
Quote:
Originally Posted by farrioth View Post
This should be run after making the cbz file. A cbz file can be extracted like a zip file, and will give you a bunch of jpgs (or sometimes other image files). Run the script in the folder with the images in it, and then make them back into a cbz file (the same way you'd make a zip file).

This shouldn't be needed if viviena's solution works for you.
How do I run a script? Sorry if this is supposed to be common knowledge. If there's a FAQ or something of the sort I can read about this, then please link.

And also, Is there a way to merge multiple cbz/cbr files? All the images inside have the same names. To rename each would be a big pain in the butt.

Thanks for all your help so far.
DillonBladez is offline   Reply With Quote
Old 01-13-2011, 10:29 PM   #9
farrioth
Enthusiast
farrioth began at the beginning.
 
Posts: 36
Karma: 12
Join Date: Aug 2010
Device: Kobo eReader
Quote:
Originally Posted by DillonBladez View Post
How do I run a script? Sorry if this is supposed to be common knowledge.
This is my fault for assuming that this is common knowledge, and also for assuming that you are running Linux. Is this correct?
farrioth is offline   Reply With Quote
Reply

Tags
calibre, manga, noob, prs-650


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
What is the best current e-reader for reading japanese manga only? Heinstein Which one should I buy? 6 01-09-2011 09:50 AM
Reading Manga in Pocketbook Logseman PocketBook 5 07-07-2010 08:09 PM
Question: Reading manga on Sony readers Wyclef Sony Reader 5 09-24-2009 03:26 AM
Environmental study: 30 min of e-paper reading = 30 mins of print reading Steven Lyle Jordan News 36 12-14-2007 03:29 PM
The definite review: reading manga, comics, comic books on the Sony Reader athlonkmf Sony Reader 25 07-04-2007 10:15 AM


All times are GMT -4. The time now is 03:14 AM.


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