Get audio duration on Chrome for Android

前端 未结 2 1902
清歌不尽
清歌不尽 2020-12-31 14:14

I\'m getting the audio/video duration of a file without appending it to the screen. \"Using the same code\", when I try to get the video duration on both si

相关标签:
2条回答
  • 2020-12-31 14:39

    There is a different approach you can try but, if duration doesn't work with your device (which IMO is a bug) then it's likely this doesn't either; worth a shot though:

    audio.seekable.end(audio.seekable.length-1);
    

    or even

    audio.buffered.end(audio.buffered.length-1);
    

    though the latter is dependent on content being loaded which in this case probably then won't help.

    0 讨论(0)
  • 2020-12-31 14:43

    EDIT: Using the durationchange event is much easier. First the 0 is being output, but as soon as the file is loaded (that's where loadedmetadata fails I guess) the updated and real duration will be output.

    audio.addEventListener('durationchange', function(e) {
        console.log(e.target.duration); //FIRST 0, THEN REAL DURATION
    });
    



    OLD WAY (ABOVE IS MUCH FASTER)

    Looks like this "bug" (if this is actually a real bug) is still around. Chrome (40) for Android still outputs 0 as the audio files duration. Researching the web didn't get me a solution but I found out the bug also occurs on iOS. I figured I should post my fix here for you guys.

    While audio.duration outputs 0, logging audio outputs the object and you can see that the duration is displayed just right there. All this is happening in the loadedmetadata event.

    audio.addEventListener('loadedmetadata', function(e) {
        console.log(e.target.duration); //0
    });
    

    If you log audio.duration in the timeupdate event though, the real duration is being output. To only output it once you could do something like:

    var fix = true;
    audio.addEventListener('timeupdate', function(e) {
        if(fix === true) {
            console.log(e.target.duration); //REAL DURATION
            fix = false;
        }
        console.log(e.target.currentTime); //UPDATED TIME POSITION
    });
    

    I'm not sure why all this is happening. But let's be happy it's nothing serious.

    0 讨论(0)
提交回复
热议问题