Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

225
Visualizações
audio duration is undefined

I'm trying to make a simple web app for audiobooks listening. And I'm trying to set a timeline length. I wanted to do it by summing up duration of all chapters. But when I do it this way:

let timelineLength = 0;
let chapterLength;
currentPart.forEach(chapter => {
    chapterLength = chapter.duration;
    timelineLength += chapterLength;
});

chapterLength is NaN so timelineLength is also NaN. When I type chapters[index].duration in chrome console after the app's been loaded it works just fine. I have no idea what I'm doing wrong.

about 4 years ago · Santiago Gelvez
1 Respostas
Responde à pergunta

0

This worked:

currentPart.forEach(chapter => {
    chapter.addEventListener('loadeddata', () => {
    chapterLength = chapter.duration;
    timelineLength += chapterLength;
    });
});

I had to wait for the data to load.

about 4 years ago · Santiago Gelvez Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda