Henrique Vianna

Results 60 comments of Henrique Vianna

Thank you for letting me know about these techniques! Looks like I have a lot to catch on! 😅 Also, thank you for sharing your sketch! It made me realize...

This is now available in [version 4.0.0-beta.0](https://github.com/hvianna/audioMotion-analyzer/releases/tag/4.0.0-beta.0) Import module directly from Skypack CDN: ```js import AudioMotionAnalyzer from 'https://cdn.skypack.dev/audiomotion-analyzer@beta?min'; ``` Or install via npm on beta tag: ```shell npm i audiomotion-analyzer@beta...

You mean for waveform visualization? **Edit:** You can connect audioMotion's output to an AnalyserNode to get the time-domain data. See [this pen](https://codepen.io/hvianna/pen/NWXdYWa).

Maybe related to mixed-content restriction (HTTP x HTTPS). Check the browser console for error messages.

Not sure I get the idea. Do you have any reference images?

Hello! It should work if you have access to the audio element created by the player, or if it provides a WebAudio-compatible output node you can use as source to...

Hello, JavaScript security policies impose a lot of restrictions in local file mode - you can't import ES6 modules or read music files if not using http/https protocols. You can...

It would require some rework, as the project heavily relies on WebAudio API built-in functionalities. Basically, you'd have to replace `getByteFrequencyData()` [here](https://github.com/hvianna/audioMotion-analyzer/blob/2.1.0/dist/audioMotion-analyzer.js#L615) to read from your stream and then adjust...

Hello Jonathan! The analyzer bands are created using the equal temperament scale, based on the 440Hz pitch (A4) standard - [see reference frequency table here](https://pages.mtu.edu/~suits/notefreqs.html). Using the equal temperament scale...

@jonathan-annett > In other words I'd like to display the area of the spectrum that will be > directly affected by each physical slider on the device. Ah, I see!...