How to stream a remote EPUB from an URL without downloading it? #49
-
I'm working on an app which needs to fetch an epub file from a remote server and display the content. |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 4 replies
-
EDIT: This will be possible in the upcoming Readium 3.0. There's nothing available out of the box for this use case, but there are options:
|
Beta Was this translation helpful? Give feedback.
EDIT: This will be possible in the upcoming Readium 3.0.
There's nothing available out of the box for this use case, but there are options:
HttpFetcher
. You will need to provide toStreamer.open()
a custom implementation ofPublicationAsset
which creates theHttpFetcher
. Look atFileAsset
for an example implementation.ZipFile
API we are using doesn't support remote streaming of a ZIP archive. What you could do is:Archive
…