Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: How do I configure spectrum visualization to display frequencies below 50 Hz? (Read 4453 times) previous topic - next topic - Topic derived from [fb2k v2] SQLite Util...
0 Members and 1 Guest are viewing this topic.

How do I configure spectrum visualization to display frequencies below 50 Hz?

Hello, I am trying to figure out how to configure the spectrum/frequency display to show more lower end frequencies. I'm only getting 50 Hz and I do not see how to make it display lower frequencies. I hope I have the right forum thread. Thank you

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #1
foo_musical_spectrum?

Right-click in it and Options. Ranges C0 to A11 and can even be transposed 12 semitones.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #2
Lower frequencies also requires larger and larger FFT window sizes, which decreases the temporal resolution, ie. how reactive the levels are to changes across time. I've tinkered with this myself in Cog, and ended up settling on a window size of 2048 from 4096 samples, which results in several of the lower bands mostly being a larger lump instead of a well defined set of peaks. This is probably to be expected, anyway.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #3
Thank you Porcus, but when I tried that I got nowhere. Foobar v1.6.10 only displays down to 50Hz on the frequency spectrum by default. Is there a way to have it display down to 20Hz? If so, how do I set that up?
foo_musical_spectrum?

Right-click in it and Options. Ranges C0 to A11 and can even be transposed 12 semitones.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #4
Don't you get it to C0 by the downarrows?

Try the Settings button and import the attachment. What happens?

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #5
Maybe people are getting their wires crossed a bit. here.

The built in spectrogram (called spectrum, shows frequency, level by colour intensity and time) only goes down to 50hz, always has done. Issue has been raised before but doesn't look like it will get fixed.

foo_musical_spectrum is an add on third party component which isn't a spectrogram but a spectrum analyser (frequency and level with each band moving in time), and is super and configurable as mentioned.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #6
Maybe people are getting their wires crossed a bit. here.

That's me. Had even forgotten that there were those built-in visualizations.
Or that the alternatives ( https://wiki.hydrogenaud.io/index.php?title=Category:Foobar2000_visualization_components ) are not in the official component repository.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #7
What's to fix? The spectrogram won't have much useful information below 50Hz anyway.


Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #9
Maybe people are getting their wires crossed a bit. here.

That's me. Had even forgotten that there were those built-in visualizations.
Or that the alternatives ( https://wiki.hydrogenaud.io/index.php?title=Category:Foobar2000_visualization_components ) are not in the official component repository.

Following your link, it appears there is a successor to Musical Spectrum by thw same dev that might do what the OP wants (it also has a configurable Spectrogram), but it hasn't been released yet:

https://wreckit-woodhouse.fandom.com/wiki/Sb-sDFT

Looking forward to this!

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #10
What's to fix? The spectrogram won't have much useful information below 50Hz anyway.

Tell that to the bass guitarist or Trap producer! :)
Fine, it gets 20Hz. Then the bottom 1cm of the entire spectrum view is just a wobbly sine wave with no definitive difference between bands. I'm only talking theoretically, I don't maintain this code.

The other alternative is that it can distinguish a lot of bands down there, but it only updates a few times per second.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #11
Yeah I understand what you mean, depending on FFT size and Scale, but I still think it should be a user option to be able to display at least the whole audio range down to 20Hz, if not lower. But I also realise it's probably very low on the list of priorities for a free app.

My fave Spectrogram for legibility is the one in RX 9 Advanced, loads of user settings and it can assign different FFT sizes to different parts of the frequency band, and depending on zoom level if wanted, so that you can see all parts clearly.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #12
And that requires running multiple FFTs simultaneously and interpolating between them. For example of CPU usage, I already incur 7% of a core doing a 4096 sample -> 2048 point DFT 60 times per second. I suppose I could experiment with doing insane amounts of different sized DFTs per visualization frame to increase the lower frequency detail.


Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #14
Cool: I found a public Git repository containing an implementation of CQT using Accelerate framework, calling itself CQTKit.

Not so cool: No license, headers only contain a copyright notice to the author of the repository.

Re: How do I configure spectrum visualization to display frequencies below 50 Hz?

Reply #15
Maybe people are getting their wires crossed a bit. here.

That's me. Had even forgotten that there were those built-in visualizations.
Or that the alternatives ( https://wiki.hydrogenaud.io/index.php?title=Category:Foobar2000_visualization_components ) are not in the official component repository.

Following your link, it appears there is a successor to Musical Spectrum by thw same dev that might do what the OP wants (it also has a configurable Spectrogram), but it hasn't been released yet:

https://wreckit-woodhouse.fandom.com/wiki/Sb-sDFT

Looking forward to this!
That Sb-sDFT was never a thing (also, the link to the page is dead since Wreck-it Woodhouse was meant to be a test wiki anyway), it was succeeded by CQT Analyzer and the FFT Analyzer can also visualize spectrogram too.

Cool: I found a public Git repository containing an implementation of CQT using Accelerate framework, calling itself CQTKit.

Not so cool: No license, headers only contain a copyright notice to the author of the repository.
Speaking of the constant-Q transform and sliding DFT thing (since calculating musical spectrum using Goertzel transform is painfully slow and offloading it to GPU may not be practical for anything outside PCs designed for gaming or machine learning), there is a sliding implementation of the constant-Q part of calcSpectrum2() function on my sketch called qdft by jurihock, but no variable-Q transform unlike foo_cqt_analyzer