mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-05-24 12:21:42 +00:00
Add audible.com.br (Audible Brasil) as a book metadata provider
This commit is contained in:
parent
7c0ca44727
commit
087bb58dc8
4 changed files with 5 additions and 3 deletions
|
|
@ -347,7 +347,7 @@ export default {
|
||||||
asinError: null,
|
asinError: null,
|
||||||
removeBranding: false,
|
removeBranding: false,
|
||||||
showSecondInputs: false,
|
showSecondInputs: false,
|
||||||
audibleRegions: ['US', 'CA', 'UK', 'AU', 'FR', 'DE', 'JP', 'IT', 'IN', 'ES'],
|
audibleRegions: ['US', 'CA', 'UK', 'AU', 'FR', 'DE', 'JP', 'IT', 'IN', 'ES', 'BR'],
|
||||||
hasChanges: false,
|
hasChanges: false,
|
||||||
timeIncrementAmount: 1,
|
timeIncrementAmount: 1,
|
||||||
elapsedTime: 0,
|
elapsedTime: 0,
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ const providerMap = {
|
||||||
'audible.it': 'Audible.it',
|
'audible.it': 'Audible.it',
|
||||||
'audible.in': 'Audible.in',
|
'audible.in': 'Audible.in',
|
||||||
'audible.es': 'Audible.es',
|
'audible.es': 'Audible.es',
|
||||||
|
'audible.br': 'Audible.com.br',
|
||||||
audnexus: 'Audnexus'
|
audnexus: 'Audnexus'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ class BookFinder {
|
||||||
this.audiobookCovers = new AudiobookCovers()
|
this.audiobookCovers = new AudiobookCovers()
|
||||||
this.customProviderAdapter = new CustomProviderAdapter()
|
this.customProviderAdapter = new CustomProviderAdapter()
|
||||||
|
|
||||||
this.providers = ['google', 'itunes', 'openlibrary', 'fantlab', 'audiobookcovers', 'audible', 'audible.ca', 'audible.uk', 'audible.au', 'audible.fr', 'audible.de', 'audible.jp', 'audible.it', 'audible.in', 'audible.es']
|
this.providers = ['google', 'itunes', 'openlibrary', 'fantlab', 'audiobookcovers', 'audible', 'audible.ca', 'audible.uk', 'audible.au', 'audible.fr', 'audible.de', 'audible.jp', 'audible.it', 'audible.in', 'audible.es', 'audible.br']
|
||||||
|
|
||||||
this.verbose = false
|
this.verbose = false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,8 @@ class Audible {
|
||||||
jp: '.co.jp',
|
jp: '.co.jp',
|
||||||
it: '.it',
|
it: '.it',
|
||||||
in: '.in',
|
in: '.in',
|
||||||
es: '.es'
|
es: '.es',
|
||||||
|
br: '.com.br'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue