02-10-2012, 06:51 PM | #1 |
Junior Member
Posts: 5
Karma: 10
Join Date: Jan 2012
Device: none
|
Using Calibre to catalog AudioBooks
I have about 200 audiobooks I would love to put into Calibre but is very manual intensive.
I first create and .m3U for the audiobook then add that to Calibre. I have installed the "Read mp3 Audiobook metadata" Plugin but I'm not using it right or creating my m3u files so the plugin can read it. I still have to basically manual update the metadata. Is there a way to import a list of my books in some format that will update better? All help will be greatly appreciated. Last edited by read113; 02-10-2012 at 06:54 PM. Reason: bad spellig |
02-12-2012, 08:58 AM | #2 |
Addict
Posts: 288
Karma: 1003542
Join Date: May 2011
Device: Google Nexus 7 16GB
|
http://hangvogel.hypermart.net/txt2fil/
Would that help Then just import the empty txtfiles and update metadata in bulk, maybe add a custom column with a checkbox to denote they are audio files. edit - changed link to better one, there are many programs that will do same Last edited by transmitthis; 02-12-2012 at 09:08 AM. |
02-17-2012, 12:14 PM | #3 |
Junior Member
Posts: 5
Karma: 10
Join Date: Jan 2012
Device: none
|
Do not understand how this would work?
transmitthis; Thank you for your help but I don't see how this works. I followed your link and understand how to created empty files, but how would you import them and get them to run a m3u file.
|
02-17-2012, 01:17 PM | #4 |
Well trained by Cats
Posts: 30,442
Karma: 58055868
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
|
Maybe you can get Kiwidude to allow Openwith PI to launch your favorite media player for type m3u
for unknown (book) types , could Openwith just call the OS default handler as a "use OS default" for the program |
04-10-2012, 06:32 PM | #5 | |
Junior Member
Posts: 3
Karma: 10
Join Date: Jul 2008
Device: nook simple and kindle
|
Quote:
Thanks a lot. Mary H. |
|
04-12-2012, 08:09 PM | #6 | |
Addict
Posts: 288
Karma: 1003542
Join Date: May 2011
Device: Google Nexus 7 16GB
|
Hi Mary,
Below is the relevant post from this thread https://www.mobileread.com/forums/sho...d.php?t=168064 Just as an update, here is an easy way to do this, instead of messing about with other programs or cmd. Create a new folder called test in C:\ open your list in excel - see image Alt+F11 to open up the VBA editor. Select insert Module - In the box add this code Code:
Sub Test() For N = 1 To Cells(Rows.Count, 1).End(xlUp).Row Open "C:\temp\" & Cells(N, 1) & ".txt" For Output As #1 Close #1 Next N End Sub Click on view then macros, and run it Go to that test folder you created, and you will see its full of txt files (all named from each cell ready for you to add to calibre Don't ask me about the code, as I just edited some I found, (as you do) and don't fully understand it. one tip, just use alphanumeric . and - are ok, but dont have a ":" in the text Oh - while I'm here: This is probably relevent to anyone coming here from a search Create File list from folder structure ie Text list of Folders Quote:
Last edited by transmitthis; 04-12-2012 at 08:16 PM. |
|
04-13-2012, 10:05 AM | #7 |
Chief Inspector Gamache
Posts: 123
Karma: 12
Join Date: May 2010
Location: Canada eh!
Device: Viewsonic
|
@transmitthis
Thanks for the info but I'm missing something - how would you add this to Calibre? Thanks |
04-13-2012, 05:16 PM | #8 |
Addict
Posts: 288
Karma: 1003542
Join Date: May 2011
Device: Google Nexus 7 16GB
|
@JCSullivan Just drag the txt files to main calibre window
The above will get you txt files to add empty book records, you can then get the metadata for them, automatically as normal Then you create another entry, by making a m3u file of items you want in your VLC player or whatever you use. Put the m3u playlist file on desktop and just drag it to calibre's main window, check it works, by clicking on the coverview image. Now you just have to merge the two entries - ie keep the metadata from one and the shortcut from the other - simple (click on the metadata rich entry then ctrclick on the on the m3u entry, press ALT+Shift+M) For audiobooks, I just have a checkmark column instead - but I use this method for Video playback of series I have kept as it's really useful. Just click on the image and the series opens up in the player. You can also use it for URL's, to open sites etc. Probably not explained it very well. Last edited by transmitthis; 04-13-2012 at 06:20 PM. |
04-13-2012, 08:39 PM | #9 |
Junior Member
Posts: 3
Karma: 10
Join Date: Jul 2008
Device: nook simple and kindle
|
transmitthis
thank you for your reply. But, my audiobook folders are named rather sloppily, like agatha christie - murder on orient express agatha christie - partners in crime and then some have years and series names. No way to import it neatly into excel columns. But I did finally come up with a solution. Elegant it isn't! Use Karen's directory printer freeware (or something) to generate a text file of folder names only. agatha christie - murder on orient express agatha christie - partners in crime Using Notepad++ hold Alt key down and click/drag mouse in a straight line down in front of the first character in each line. That will leave you with a long skinny cursor blinking. Type these letters: type nul>" They will magically appear in front of each line. type nul>"agatha christie - murder on orient express type nul>"agatha christie - partners in crime Then, click edit/select all then search/replace on the replace tab enter (.)$ in the find what window and \1.txt" in the replace with window In the middle of that tab, put a check mark by In Selection and at the bottom check the button in front of regular expression. Click Replace all. type nul>"agatha christie - murder on orient express.txt" type nul>"agatha christie - partners in crime.txt" Now insert as a first line: @echo off and I put a last line with the word pause so the cmd window won't close and I can read error messages if any. Save the file with a .bat extension (make sure to select "all" in the drop down box by "save as type". ) @echo off type nul>"agatha christie - murder on orient express.txt" type nul>"agatha christie - partners in crime.txt" pause Put this file in a folder by itself, double click to run and all the text files should appear in that same folder. Then you can add them all to Calibre. This probably looks atrocious to anybody with a lick of programming skills. But I was very proud of myself for figuring it out. Mary H. |
04-14-2012, 03:32 AM | #10 |
Chief Inspector Gamache
Posts: 123
Karma: 12
Join Date: May 2010
Location: Canada eh!
Device: Viewsonic
|
Thanks for the trouble of getting a screen shot and the help - it is appreciated.
Telling me I can drag and drop has made it a lot easier. If you're confident with a expressions can you help with this - I'm trying to get the expression to ignore anything before the author's name. Thanks |
04-15-2012, 02:38 PM | #11 |
Addict
Posts: 288
Karma: 1003542
Join Date: May 2011
Device: Google Nexus 7 16GB
|
Not sure what you did there Mary, but glad it worked out for you, you could probably have done it easily via dos tree Directory command, and then use the extensive sorting you can do in excel
But that don't really matter as long as you got it done, and bonus learn't a lot doing it too - congrats @JC - sorry I'm just not confident with expressions, I have a few python books to read but their at the end of my reading list. Ask in a new thread, and you will get noticed and sorted I'm sure. |
04-17-2012, 04:47 AM | #12 |
Chief Inspector Gamache
Posts: 123
Karma: 12
Join Date: May 2010
Location: Canada eh!
Device: Viewsonic
|
Thanks transmitthis, I've done that.
|
03-18-2018, 06:08 AM | #13 |
Zealot
Posts: 121
Karma: 5508
Join Date: Dec 2012
Location: Singapore
Device: Kindle Paperwhite 1 & 3
|
any easier way?
|
03-18-2018, 06:56 AM | #14 |
null operator (he/him)
Posts: 20,995
Karma: 27620706
Join Date: Mar 2012
Location: Sydney Australia
Device: none
|
Have a look at the following, if you've not already done so:
MP3/Audio Book file-management feature? Media File Importer Read MP3 AudioBook metadata BR |
03-29-2018, 06:10 PM | #15 |
Addict
Posts: 260
Karma: 139980
Join Date: Mar 2014
Device: Android
|
Just a suggestion depending on your files...
I tried various ways to manage these and settled on one that has worked VERY well. I keep all of my actual audiobook files in folders or as a single file. All of these are kept in a main directory. They are easy to find or 'search' when needed. Because of the variation of file types and number of files, this has been better than trying to keep the actual audiobooks within Calibre's structure. But for library record management.... Before moving my audiofiles/folder to a main in directory, I simply right click on them and create shortcuts (lnk files). I then drag these to my Calibre library in order to add a bunch at once. Now, how they import and any further management depends on the file or folder names to which you created a shortcut and how your stuff is set to import into Calibre. I clean mine up through various operations in Calibre as needed. I also can then do a metadata and cover download using Calibre. In my case, I use a tag "AUDIOBOOK" in a custom tags column for library management (not genre/content tags). I no longer keep the actual "lnk" file in the library. That is easy to delete individually or in bulk. If I want more tags for audiobook management, I just add them to the same custom tags field (examples, in some cases I like to label the type of audio files ..Aud-mp4... or where I purchased it ..AudiblePURCH.. ). These tags are great if you have actual files on you computer or just want to record where they are located (CD's, cassettes, Audible, etc..) Now, if I have a new book, I can add as described above OR just as a tag to an entry I already have for the actual book. Tags for library management like this are far less cumbersome that many columns. Also, they can trigger custom colors or icons which makes library management even easier with visual cues. Last edited by jecilop; 03-29-2018 at 06:13 PM. |
Tags |
audiobooks, mp3 |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Audiobooks saved in Calibre | prsnrs | Calibre | 0 | 11-08-2011 01:36 PM |
Calibre catalog format | skipray | Library Management | 1 | 02-17-2011 02:10 AM |
Calibre as Catalog? | jekkii | Library Management | 11 | 01-08-2011 01:15 PM |
Problem with Catalog in Calibre | clockmaker | Library Management | 1 | 10-05-2010 07:27 AM |
Classic Trook Catalog and Calibre | jhempel24 | Nook Developer's Corner | 2 | 09-07-2010 12:56 AM |