Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre

Notices

Reply
 
Thread Tools Search this Thread
Old 07-07-2015, 07:30 PM   #1
mark_e_h
Connoisseur
mark_e_h began at the beginning.
 
Posts: 95
Karma: 20
Join Date: Aug 2011
Device: Kindle Paperwhite/IpadMini
see space would use in Kindle?

Is there a way using Calibre to select a group of books, and having Calibre show how much space they would take if downloaded to my Kindle??

thnx,



.
mark_e_h is offline   Reply With Quote
Old 07-07-2015, 09:44 PM   #2
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
You will need to use a custom column:

Code:
program:

sizes = formats_sizes();

ifempty(
	select(sizes, 'AZW3'),
	select(sizes, 'MOBI')
);
This will return the size of the book in bytes, preferring AZW3 over MOBI just like the device driver.

You will need to add up the sizes manually, as custom columns are not aware of the metadata for other books.


Or for Kilobytes:
Code:
program:

sizes = formats_sizes();

final_size = ifempty(
	select(sizes, 'AZW3'),
	select(sizes, 'MOBI')
);

kilobytes = list_item(
	divide(final_size, '1024'),
	'0',
	'.'
);

Last edited by eschwartz; 07-08-2015 at 03:01 AM. Reason: clarify -- "*manually*"
eschwartz is offline   Reply With Quote
Advert
Old 07-07-2015, 11:13 PM   #3
BetterRed
null operator (he/him)
BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.
 
Posts: 21,725
Karma: 29711016
Join Date: Mar 2012
Location: Sydney Australia
Device: none
Quote:
Originally Posted by eschwartz View Post
You will need to use a custom column:


@mark_e_h - if it's a lot of books you could create a CSV catalogue that includes the custom column, then read the CSV into a spreadsheet and get it to sum the column.

BR
BetterRed is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Space Captain Smith of the British Space Empire Kacetwo Deals and Resources (No Self-Promotion or Affiliate Links) 4 07-02-2012 03:41 AM
Kindle 3 / Space Problem? theexplodingboy2 Amazon Kindle 3 07-12-2011 05:10 PM
kindle-3 available space mikeayers Amazon Kindle 4 12-12-2010 12:43 AM
Kindle Space Bar fiftyg Amazon Kindle 2 07-03-2010 09:16 PM


All times are GMT -4. The time now is 05:54 PM.


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