When you download a file from the MEGA service, you are shown a pretty download progress bar within the browser. Once this progress bar reaches 100%, your browser then begins to download the file. That is, only once the graphical download is complete, your browser's normal download process is started. What exactly is going on here?
Tell me more
×
Web Applications Stack Exchange is a question and answer site for
power users of web applications. It's 100% free, no registration required.
|
It uses the fileSystem api: http://developer.chrome.com/apps/fileSystem.html Which basically writes the file to a sandboxed section of your local file system:
|
|||||||
|
|
All the downloads on MEGA are encrypted using a private key that only you have. When you choose to share a file, you have to give them the key, or you have an option to include it in your download link url. The download must be decrypted using this key before it can actually be downloaded. This is what is most likely happening during this time. Larger files may take longer to decrypt. |
|||
|