<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Using AS3&#8217;s computeSpectrum</title>
	<link>http://parentnode.org/flash/using-as3s-computespectrum/</link>
	<description>The building blocks of a solid frontend.</description>
	<pubDate>Wed, 10 Mar 2010 03:14:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: ruud</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-19705</link>
		<author>ruud</author>
		<pubDate>Thu, 11 Jun 2009 19:00:14 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-19705</guid>
		<description>herman is right... thnx!</description>
		<content:encoded><![CDATA[<p>herman is right&#8230; thnx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhanu</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-17586</link>
		<author>Bhanu</author>
		<pubDate>Fri, 17 Apr 2009 08:31:15 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-17586</guid>
		<description>Is it possible to display the spectrum of Mic input in flash?</description>
		<content:encoded><![CDATA[<p>Is it possible to display the spectrum of Mic input in flash?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wesley</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-15741</link>
		<author>Wesley</author>
		<pubDate>Tue, 27 Jan 2009 22:17:13 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-15741</guid>
		<description>Sick brother Scaffolding it now and will post what I come up with ~ Basic</description>
		<content:encoded><![CDATA[<p>Sick brother Scaffolding it now and will post what I come up with ~ Basic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-14517</link>
		<author>Adam</author>
		<pubDate>Wed, 15 Oct 2008 07:43:54 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-14517</guid>
		<description>This applies for both Morten and Sumant... 

The "ba" variables values from 0 to 255 are for left, 256 to 512 are right channel.  

Divide these two ranges into three sections (0-85, 85-170, 170-255 for Left Low, Left Mid, Left High) and sum these values.  Keep in mind that sound is logarithmic though, 0-85 will probably be FAR too large a range to show bass.  

Once you can find these individual values, you could log them through the entire song or clip.  Only problem is, this only displays values for sounds currently playing, so you would have to actually PLAY through the whole thing to poll all the values.  

One question.... Why do you need something this complex?  Top of the line studio software doesn't really even have high/low timeline waveform display, why should you need it in flash?!?</description>
		<content:encoded><![CDATA[<p>This applies for both Morten and Sumant&#8230; </p>
<p>The &#8220;ba&#8221; variables values from 0 to 255 are for left, 256 to 512 are right channel.  </p>
<p>Divide these two ranges into three sections (0-85, 85-170, 170-255 for Left Low, Left Mid, Left High) and sum these values.  Keep in mind that sound is logarithmic though, 0-85 will probably be FAR too large a range to show bass.  </p>
<p>Once you can find these individual values, you could log them through the entire song or clip.  Only problem is, this only displays values for sounds currently playing, so you would have to actually PLAY through the whole thing to poll all the values.  </p>
<p>One question&#8230;. Why do you need something this complex?  Top of the line studio software doesn&#8217;t really even have high/low timeline waveform display, why should you need it in flash?!?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: herman</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-12882</link>
		<author>herman</author>
		<pubDate>Mon, 28 Jul 2008 05:56:05 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-12882</guid>
		<description>Hi Prince, 
I think you should add 'public' on SpectruAnalyzer class 
public class SpectrumAnalyzer extends Sprite { .....</description>
		<content:encoded><![CDATA[<p>Hi Prince,<br />
I think you should add &#8216;public&#8217; on SpectruAnalyzer class<br />
public class SpectrumAnalyzer extends Sprite { &#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jakub</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-12408</link>
		<author>jakub</author>
		<pubDate>Fri, 04 Jul 2008 14:49:49 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-12408</guid>
		<description>if anyone will find it hlepful...
to avoid error 1046, write
public class SpectrumAnalyzer extends Sprite
instead of
class SpectrumAnalyzer extends Sprite
to make class public to be seeable from outside its package.</description>
		<content:encoded><![CDATA[<p>if anyone will find it hlepful&#8230;<br />
to avoid error 1046, write<br />
public class SpectrumAnalyzer extends Sprite<br />
instead of<br />
class SpectrumAnalyzer extends Sprite<br />
to make class public to be seeable from outside its package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damian</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-11699</link>
		<author>Damian</author>
		<pubDate>Thu, 29 May 2008 01:49:35 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-11699</guid>
		<description>So does the class (sorry for double post)</description>
		<content:encoded><![CDATA[<p>So does the class (sorry for double post)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prince</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-8270</link>
		<author>Prince</author>
		<pubDate>Thu, 17 Jan 2008 05:40:35 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-8270</guid>
		<description>Hi,

I'm working with Flash 8 for nearly 1 year.  I could understand the AS2 but to the AS3 I'm a newbie. Tried your code but it shows this,

"1046: Type was not found or was not a compile-time constant: SpectrumAnalyzer."

Could you give a solution

Thanks

Prince</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m working with Flash 8 for nearly 1 year.  I could understand the AS2 but to the AS3 I&#8217;m a newbie. Tried your code but it shows this,</p>
<p>&#8220;1046: Type was not found or was not a compile-time constant: SpectrumAnalyzer.&#8221;</p>
<p>Could you give a solution</p>
<p>Thanks</p>
<p>Prince</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sumant</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-5909</link>
		<author>Sumant</author>
		<pubDate>Thu, 25 Oct 2007 12:26:15 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-5909</guid>
		<description>Thanks,

this is a very nice and helpful article. I got a lot of informations.

But, I want to know how can I get the bass, midtone and high frequencies from the sound or the left/right channels of the soundchannel object.

I was trying to set the visible property true/false according to the music(actually according to the bass and other frequency values). I did, but I don't think the way I am following is the proper way.

If there is any helpful article like the above then please help me.


Sumant</description>
		<content:encoded><![CDATA[<p>Thanks,</p>
<p>this is a very nice and helpful article. I got a lot of informations.</p>
<p>But, I want to know how can I get the bass, midtone and high frequencies from the sound or the left/right channels of the soundchannel object.</p>
<p>I was trying to set the visible property true/false according to the music(actually according to the bass and other frequency values). I did, but I don&#8217;t think the way I am following is the proper way.</p>
<p>If there is any helpful article like the above then please help me.</p>
<p>Sumant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morten Skogly</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-4745</link>
		<author>Morten Skogly</author>
		<pubDate>Mon, 10 Sep 2007 13:21:36 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-4745</guid>
		<description>Is it possible to use computeSpectrum to analyze the track and display a waveform that shows the soundlevels etc for the entire file, and not just whats going on right then and there? I need something like that for a radio archive project.</description>
		<content:encoded><![CDATA[<p>Is it possible to use computeSpectrum to analyze the track and display a waveform that shows the soundlevels etc for the entire file, and not just whats going on right then and there? I need something like that for a radio archive project.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
