-
Notifications
You must be signed in to change notification settings - Fork 188
Support for multiple renditions #656
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
From @mutterback We are exploring multiple renditions with UNICEF as a way to manage content inside 1 ebook for all learners. For deaf students there would be sign language videos, and for Intellectually Impaired students, simplified language. I've seen a demo of Readium JS with a multiple rendition menu in the settings, so I know it's there somewhere. Saw the note http://idpf.org/forum/topic-3444 about very little content to test with. I agree - and our plans would include some content development. Could you give me a quick pointer to the multiple renditions code in JS and any feedback on the roadmap for support in R2? Very open to your feedback on how we could best contribute to make multiple renditions work well in R2. |
from @danielweck Readium 1: Link to the latest prototype build from the "Multiple Renditions" This is the only EPUB3 Multiple Renditions demo book I know of (it Readium 2: No plans to include support for EPUB3 Multiple Renditions in the |
from @mutterback @danielweck: Let me ask a clarifying question re "Special handling would be needed on the reading system side to fetch + process What you are saying is that you would pull content from book 1 (standard text) + book 2 (sign language video) into the reading system. For the user, it looks like 1 book. Where would the "superstructure" live? ebook, streamer, navigator code if I have the main moving parts right in my head? |
from @HadrienGardeur It would live in the model, which is shared by all the moving parts in R2. Since a multiple renditions publication is almost like working with multiple publications, this could be represented as a special kind of OPDS 2.0 feed, one where we also provide a collection for mapping resources across publications together. |
For reference, the Pull Request is: |
A Multiple Renditions EPUB really consists in a publication container The Readium1 prototype implementation handles such multi-package In my opinion: in Readium2 "webpub manifest", instead of merging the I haven't spent much time brainstorming about this, but this where I |
There's not a lot of additional metadata in If we re-use {
"publications": [
{
"metadata": {
"title": "Basic rendition"
},
"spine": [
{"href": "text.html", "type": "text/html"}
]
},
{
"metadata": {
"title": "Braille rendition"
},
"spine": [
{"href": "braille.html", "type": "text/html"}
]
},
]
} |
To each of your comments:
|
From @danielweck |
This issue is a Enhancement
This issue is derived from an email thread here.
Related issue(s) and/or pull request(s)
None
Test file(s)
Only one MR book is known (though there may be others out in the wild we do not know of). It is here (??)
Product
Only an experimental readium-js-viewer demo is known.
The branch is here.
The demo itself is here.
Additional information
None at this time
The text was updated successfully, but these errors were encountered: