Removed a noisy log and limit chapter embedding to items with only 1 audiofile

This commit is contained in:
Keagan Hilliard 2022-11-03 10:09:49 -06:00
parent d57effe97c
commit 586c8a550a
2 changed files with 2 additions and 4 deletions

View File

@ -49,7 +49,7 @@ class AudioMetadataMangaer {
try {
toneJsonPath = Path.join(itemCacheDir, 'metadata.json')
await toneHelpers.writeToneMetadataJsonFile(libraryItem, toneJsonPath)
await toneHelpers.writeToneMetadataJsonFile(libraryItem, audioFiles.length == 1 && libraryItem.media.chapters, toneJsonPath)
} catch (error) {
Logger.error(`[AudioMetadataManager] Write metadata.json failed`, error)
toneJsonPath = null

View File

@ -72,10 +72,9 @@ module.exports.getToneMetadataObject = (libraryItem, chaptersFile) => {
return metadataObject
}
module.exports.writeToneMetadataJsonFile = (libraryItem, filePath) => {
module.exports.writeToneMetadataJsonFile = (libraryItem, chapters, filePath) => {
const bookMetadata = libraryItem.media.metadata
const coverPath = libraryItem.media.coverPath
const chapters = libraryItem.media.chapters
const metadataObject = {
'album': bookMetadata.title || '',
@ -139,7 +138,6 @@ module.exports.writeToneMetadataJsonFile = (libraryItem, filePath) => {
module.exports.tagAudioFile = (filePath, payload) => {
return tone.tag(filePath, payload).then((data) => {
Logger.info('Tone results: ', data)
return true
}).catch((error) => {
Logger.error(`[toneHelpers] tagAudioFile: Failed for "${filePath}"`, error)