You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the EPUB metadata might be trying to too closely match ONIX in the prerecorded audio section. An onix record can describe an audiobook, but are we really intending to say that there are audio-only EPUBs? Any EPUB has to have its audio synchronized with at least some text and relies on media overlays for playback.
Specifically, this is the check for an audio-only EPUB:
LET all_content_audio be the result of calling check for node on package_document, /package/metadata/meta[@property="schema:accessModeSufficient" and text()="auditory"].
But any epub with text and full audio synchronization is going to have a sufficient access mode of auditory. We say to set this value in the epub accessibility techniques. This is the first output check, so it will override text and audio synchronized publications, causing all synchronized books to be "audio only" (or "Audiobook with no text alternative" if the long form is used).
All we can differentiate with EPUB is a book that has full text and full audio versus a book that has partial text and full audio. I think that can be deduced from the metadata as follows:
if synchronizedTextAudio feature is set and the publication has both auditory and textual sufficient access modes, then full text and audio are available
if synchronizedTextAudio is set and only auditory sufficient access mode, then partial text and full audio is available
The text was updated successfully, but these errors were encountered:
Partial text and full audio makes very little sense in the case of EPUB.
Chapter headings with synchronized audio is the closest you can get to DAISY full audio. I don't expect mainstream publishers will create these, of course.
I think the EPUB metadata might be trying to too closely match ONIX in the prerecorded audio section. An onix record can describe an audiobook, but are we really intending to say that there are audio-only EPUBs? Any EPUB has to have its audio synchronized with at least some text and relies on media overlays for playback.
Specifically, this is the check for an audio-only EPUB:
But any epub with text and full audio synchronization is going to have a sufficient access mode of auditory. We say to set this value in the epub accessibility techniques. This is the first output check, so it will override text and audio synchronized publications, causing all synchronized books to be "audio only" (or "Audiobook with no text alternative" if the long form is used).
All we can differentiate with EPUB is a book that has full text and full audio versus a book that has partial text and full audio. I think that can be deduced from the metadata as follows:
The text was updated successfully, but these errors were encountered: