Giter VIP home page Giter VIP logo

Comments (7)

sonoalex avatar sonoalex commented on May 18, 2024 3

Here you can find some minimal node examples: Essentia benchmarks . Hope it helps!

from essentia.js.

albincorreya avatar albincorreya commented on May 18, 2024 1

@jakiestfu You need to decode the mp3 file buffer into audio data. See some node.js examples with wav files here.
You might need to use external libraries to decode mp3 file (eg: https://github.com/audiojs/audio-decode)

from essentia.js.

jhartquist avatar jhartquist commented on May 18, 2024

+1 -- I was also looking for a way to include the TS types in a Node project.

from essentia.js.

jakiestfu avatar jakiestfu commented on May 18, 2024

I've been having a hard time getting this to run in a node environment.

const url = 'https://site.com/song.mp3'

const buffer = await fetch(url)
  .then((r) => r.arrayBuffer())
  .then(Buffer.from)

const results = await essentia.KeyExtractor(essentia.arrayToVector(buffer))

This yields the wrong key always. What is the recommended approach to providing the expected data to the API, @sonoalex @albincorreya ?

from essentia.js.

jakiestfu avatar jakiestfu commented on May 18, 2024

Fantastic, @albincorreya Thank you for that reference. Does essentia only support wav containers or are other formats supported as well?

from essentia.js.

jakiestfu avatar jakiestfu commented on May 18, 2024

@albincorreya Would you expect for this to be a correct implementation for a remote resource? I'm still getting incorrect keys and scales for MP3 audio.

import decodeAudio from 'audio-decode'
import fetch from 'node-fetch'

const main = async () => {
  const url = 'https://site.com/song.mp3'

  const buffer = await fetch(url).then((r) => r.arrayBuffer())
  const decodedAudio = await decodeAudio(buffer)

  const vector = essentia.arrayToVector(decodedAudio._data)

  const { key, scale, strength } = await essentia.KeyExtractor(vector)
}

main()

from essentia.js.

silentrob avatar silentrob commented on May 18, 2024

For completion, there are also some examples for Node.js here. https://github.com/MTG/essentia.js-benchmarks/tree/master/node/benchmark

Back to the OP question. I also can't seem to get the KeyExtractor to give me the right key using a WAV or MP3 (node-lame). Based on what some online key detectors say anyway.

from essentia.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.