Replies: 1 comment 3 replies
-
I've been building the parser based on examples that I have. I haven't looked much at the specs. Can you send me an example? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm just starting with ABS and so far liking it. For ebooks I lean towards providing metadata embedded in
content.opf
for epub, or in a folder as an externalmetadata.opf
next to pdf.The problem I observe is that for
<package version="3.0" ...
of metadata the parsing fails as is clear from the code, e.g.:audiobookshelf/server/utils/parsers/parseOpfMetadata.js
Line 17 in a3cd9e4
The code looks for
opf:...
attributes whereas v3.0 provides that info via<meta refines="#id-to-refine-here" property="prop-name-here">prop-value-here</meta>
type elements.I can elaborate further. Just wondering whether this problem was recognized as a cursory search didn't reveal anything.
Beta Was this translation helpful? Give feedback.
All reactions