Download files immediately after the first chunk
Closed this issue · 3 comments
sinbadxiii commented
Is it possible to make sure that the file has started to swing immediately after the first chunk?
nehalvpatel commented
Do you mean like, save the chunks by just appending them to the first chunk file? Instead of saving them separately then combining them?
sinbadxiii commented
@nehalvpatel sorry for my bad English :) I'll try to explain:
Currently downloader does so:
- It takes an array of chunks with api.periscope
- Downloads chunks into a temporary folder
- Merge into one final file
- Gives to download
Is it possible to download chunks and allow the user to download at the same time? i.e:
- It takes an array of chunks with api.periscope
- Downloads chunks into a temporary folder, Merge into one file AND Gives to download
- Download final file gradually
nehalvpatel commented
I think you can do this by pushing the chunks one at a time to the user. Not exactly sure on the implementation though. What are you going to use this for?