Import Librivox editions (and updates)
Bug #605121 reported by
George
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Open Library |
New
|
High
|
raj |
Bug Description
Let's add new editions to our works for Librivox recordings. The Librivox folks are happy to give us whatever we need.
---
Lead Librivox tech: Chris Goringe, chris.goringe @ gmail.com
Hugh McGuire, hugh @ bookoven.com
A complete MARC record gets created (and made publicly available) daily here:
http://
To post a comment you must log in.
From Chris:
Attached is a mysqldump of our database. I've excluded one table,
because it includes email addresses of our volunteers; that table has
the form:
CREATE TABLE `People` (
`PeopleID` int(8) NOT NULL auto_increment,
`Name` char(80) character set utf8 default NULL,
`Nickname` char(80) character set utf8 default NULL,
`EMail` char(80) default NULL,
`URL` char(150) default NULL,
`MaxMC` int(2) NOT NULL DEFAULT 0,
PRIMARY KEY (`PeopleID`),
UNIQUE KEY `Name` (`Name`)
) ENGINE=MyISAM AUTO_INCREMENT=3334 DEFAULT CHARSET=latin1;
If you want any help interpreting the data, let me know! One unobvious
bit of information which will help: in the Files table, a FileNumber
of 0 is used to hold project level information. You'll also find
duplication or near-duplication between the Projects table and the
Files table; this is an artifact of the way the system has developed.
The Files table is probably generally to be preferred.