Link to home
Start Free TrialLog in
Avatar of Hamidreza Vakilian
Hamidreza Vakilian

asked on

Creating a Manual Audio Spectrum Visualization

Hi Experts!

How to create a manual audio spectrum viz (e.g by using Tpaintbox) for WAVE files?

--- What's FFT ?

Thanks in advance

Avatar of calinutz
calinutz
Flag of Romania image

I suggest you use the TeeChart component, or other charting components you can find googleing or on torry

Regards
object Chart1: TChart
  Left = 404
  Top = 168
  Width = 400
  Height = 250
  BackWall.Brush.Color = clWhite
  BackWall.Brush.Style = bsClear
  Title.Text.Strings = (
    'TChart')
  TabOrder = 3
  object Series1: TFastLineSeries
    Marks.ArrowLength = 8
    Marks.Visible = False
    SeriesColor = clRed
    LinePen.Color = clRed
    XValues.DateTime = False
    XValues.Name = 'X'
    XValues.Multiplier = 1.000000000000000000
    XValues.Order = loAscending
    YValues.DateTime = False
    YValues.Name = 'Y'
    YValues.Multiplier = 1.000000000000000000
    YValues.Order = loNone
  end
end
Avatar of Hamidreza Vakilian
Hamidreza Vakilian

ASKER

hahhh.....I think you didn't understand my question...: How to make a WAVE audio player which has something like Winamps visualizations.... but I want to create the spectrum visualizer by myself... (like TBassplayer,MMTools,... Components)
I don't know how should I grab the sound information required for a visualizer from WAVE files....
ASKER CERTIFIED SOLUTION
Avatar of calinutz
calinutz
Flag of Romania image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial