Skip to content

Display audio download progress #107

Open
@gabrielwolf

Description

@gabrielwolf

As higher order Ambisonics files are big in size, I want the user to see the download progress.

Maybe the function BufferList.prototype._launchAsyncLoadTaskXHR has to be extended for this.

I added the following lines right before xhr.send(); (line 282 in omnitone.esm.js at the time of writing)

  xhr.onprogress = function(event) {
    if (event.lengthComputable) {
      Utils.log(`Received ${event.loaded} of ${event.total} bytes`);
    } else {
      Utils.log(`Received ${event.loaded} bytes`); // no Content-Length
    }
  };

The result is a console display of the desired values.

Has anybody advice on how to read event.loaded and event.total outside of the Omnitone library?

Thank you in advance!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions