mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-05-18 01:11:30 +00:00
Merge 989255e957 into 47ea6b5092
This commit is contained in:
commit
61217ac3bb
10 changed files with 408 additions and 6 deletions
|
|
@ -24,6 +24,7 @@ const CoverManager = require('../managers/CoverManager')
|
|||
const LibraryScan = require('./LibraryScan')
|
||||
const OpfFileScanner = require('./OpfFileScanner')
|
||||
const NfoFileScanner = require('./NfoFileScanner')
|
||||
const DaisyFileScanner = require('./DaisyFileScanner')
|
||||
const AbsMetadataFileScanner = require('./AbsMetadataFileScanner')
|
||||
|
||||
/**
|
||||
|
|
@ -797,6 +798,14 @@ class BookScanner {
|
|||
await OpfFileScanner.scanBookOpfFile(this.libraryItemData.metadataOpfLibraryFile, this.bookMetadata)
|
||||
}
|
||||
|
||||
/**
|
||||
* Metadata from DAISY ncc.html file
|
||||
*/
|
||||
async daisyFile() {
|
||||
if (!this.libraryItemData.metadataDaisyNccLibraryFile) return
|
||||
await DaisyFileScanner.scanBookDaisyFile(this.libraryItemData.metadataDaisyNccLibraryFile, this.bookMetadata, this.audioFiles)
|
||||
}
|
||||
|
||||
/**
|
||||
* Metadata from metadata.json
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue