Giter Club home page Giter Club logo

Comments (9)

jussi-kalliokoski avatar jussi-kalliokoski commented on July 21, 2024

+1

from aurora.js.

geoffjukes avatar geoffjukes commented on July 21, 2024

+1 - I don't usually post like this, but seeking, either in chunks (+/- 5 seconds) or in slider form would be extremely useful.

from aurora.js.

comster avatar comster commented on July 21, 2024

+1 me too

from aurora.js.

gmaliar avatar gmaliar commented on July 21, 2024

+1

:-)

from aurora.js.

indiloop avatar indiloop commented on July 21, 2024

+1

Would it be possible to somehow start decoding from a arbitrary position in an mp3 file. I'm trying to implement real time decoding of an mp3, so I can feed the decoded pcm data directly into a JavascriptAudioNode's output.

//example

var startTime = 5; // in seconds

var byteOffset = timeToByte(startTime); // convert seconds to byte location?

asset.on('decodeStart', function() {
var list = new BufferList;

asset.on('data', function(buffer) {
list.push(new Buffer(buffer));
asset.decoder.readChunk();
});

asset.decoder.readChunk();
}, byteOffset);

asset.start();

I'm fairly new to this type of low level audio programming, so if this is way off base please let me know. :)

from aurora.js.

boatmeme avatar boatmeme commented on July 21, 2024

+1

from aurora.js.

devongovett avatar devongovett commented on July 21, 2024

As of 2ec2d60, basic support for seeking has been added to the namespace branch. It works fairly well as long as you don't try seeking to part of a file that hasn't been loaded yet - still need to work on that.

Basically, uncompressed formats seek by using the format's bytesPerPacket and framesPerPacket properties, and compressed formats seek using a seek table generated by the demuxer. The player converts the timestamp from milliseconds to a sample number, and asks the decoder to seek to that sample number. In turn, the decoder asks the demuxer for a seek point closest to the given sample and jumps to that offset, and playback resumes at the new time.

Let me know if you have improvements or suggestions. Leaving this open for now. Cheers!

from aurora.js.

karlbloedorn avatar karlbloedorn commented on July 21, 2024

Will the changes for seeking be moved into master? I noticed that this project has been inactive for 3 months. Is there a reason development has fallen off?

from aurora.js.

devongovett avatar devongovett commented on July 21, 2024

Yes, they will. I've just been busy with other things lately. I'll get to it soon, but for now, I'd suggest just using the namespace branch instead of master.

from aurora.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.