<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Manual: BeatDetect</title>
	<atom:link href="http://code.compartmental.net/tools/minim/manual-beatdetect/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.compartmental.net</link>
	<description>Prototypes and Other Bits of Code</description>
	<lastBuildDate>Sun, 14 Mar 2010 02:58:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Cerr</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-1754</link>
		<dc:creator>Cerr</dc:creator>
		<pubDate>Sat, 06 Feb 2010 19:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-1754</guid>
		<description>Hi, i am trying to use the beatdetection with an audio live input from the linein. The line in Example works fine, and the Beat detection with an mp3 file works as well. But is it possible to use the beat detection with the linein? I cant get it to work.</description>
		<content:encoded><![CDATA[<p>Hi, i am trying to use the beatdetection with an audio live input from the linein. The line in Example works fine, and the Beat detection with an mp3 file works as well. But is it possible to use the beat detection with the linein? I cant get it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ddf</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-1425</link>
		<dc:creator>ddf</dc:creator>
		<pubDate>Thu, 10 Dec 2009 03:48:31 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-1425</guid>
		<description>BeatListener is a class only defined in the linked example. Follow the link to http://code.compartmental.net/minim/examples/BeatDetect/FrequencyEnergy/ and you will see that page has a link to a pde file with the BeatListener class. BeatListener is NOT a class that is included in Minim.</description>
		<content:encoded><![CDATA[<p>BeatListener is a class only defined in the linked example. Follow the link to <a href="http://code.compartmental.net/minim/examples/BeatDetect/FrequencyEnergy/" rel="nofollow">http://code.compartmental.net/minim/examples/BeatDetect/FrequencyEnergy/</a> and you will see that page has a link to a pde file with the BeatListener class. BeatListener is NOT a class that is included in Minim.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dot.sonic</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-1424</link>
		<dc:creator>dot.sonic</dc:creator>
		<pubDate>Thu, 10 Dec 2009 02:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-1424</guid>
		<description>I&#039;m getting &quot;Cannot find a class or type named “BeatListener” in the example and my own code too.

Can anyone help?!</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting &#8220;Cannot find a class or type named “BeatListener” in the example and my own code too.</p>
<p>Can anyone help?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ddf</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-1259</link>
		<dc:creator>ddf</dc:creator>
		<pubDate>Tue, 17 Nov 2009 14:38:18 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-1259</guid>
		<description>This is how the array accessed by isOnset(int) is created:

&lt;pre&gt;
spect = new FFT(timeSize, sampleRate);
spect.logAverages(60, 3);
int numAvg = spect.avgSize();
fIsOnset = new boolean[numAvg];
&lt;/pre&gt;

The logAverages function is asking the FFT to compute the averages with a minimum bandwidth of 60 Hz and 3 bands per octave. I can&#039;t do the math in my head right at the moment, but you should be able to figure out how many slots that is, considering the highest frequency band in the FFT is likely to be 22050 Hz. 

Regardless, you bring up a good point: there is no way to query for how many onset slots there are. That should be fixed.</description>
		<content:encoded><![CDATA[<p>This is how the array accessed by isOnset(int) is created:</p>
<pre>
spect = new FFT(timeSize, sampleRate);
spect.logAverages(60, 3);
int numAvg = spect.avgSize();
fIsOnset = new boolean[numAvg];
</pre>
<p>The logAverages function is asking the FFT to compute the averages with a minimum bandwidth of 60 Hz and 3 bands per octave. I can&#8217;t do the math in my head right at the moment, but you should be able to figure out how many slots that is, considering the highest frequency band in the FFT is likely to be 22050 Hz. </p>
<p>Regardless, you bring up a good point: there is no way to query for how many onset slots there are. That should be fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-1256</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Tue, 17 Nov 2009 06:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-1256</guid>
		<description>I am not clear on how the isOnset(int i) method works.  

What is the maximum number of frequency bands?   I assumed that the maximum is 32 since the paper you cite uses 32.</description>
		<content:encoded><![CDATA[<p>I am not clear on how the isOnset(int i) method works.  </p>
<p>What is the maximum number of frequency bands?   I assumed that the maximum is 32 since the paper you cite uses 32.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: benjamin</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-972</link>
		<dc:creator>benjamin</dc:creator>
		<pubDate>Sat, 19 Sep 2009 04:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-972</guid>
		<description>Hmmm, getting:  Cannot find a class or type named &quot;BeatListener&quot; in the example and my own code.</description>
		<content:encoded><![CDATA[<p>Hmmm, getting:  Cannot find a class or type named &#8220;BeatListener&#8221; in the example and my own code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sabrina&#8217;s External Brain&#8230; &#124; Week 7: Sound and Sound Input</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-884</link>
		<dc:creator>Sabrina&#8217;s External Brain&#8230; &#124; Week 7: Sound and Sound Input</dc:creator>
		<pubDate>Thu, 14 May 2009 04:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-884</guid>
		<description>[...] The read into beat detection http://code.compartmental.net/tools/minim/manual-beatdetect/ [...]</description>
		<content:encoded><![CDATA[<p>[...] The read into beat detection <a href="http://code.compartmental.net/tools/minim/manual-beatdetect/" rel="nofollow">http://code.compartmental.net/tools/minim/manual-beatdetect/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: z3219928&#8217;s blog &#187; Blog Archive &#187; soooundd - multiWeek7</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-878</link>
		<dc:creator>z3219928&#8217;s blog &#187; Blog Archive &#187; soooundd - multiWeek7</dc:creator>
		<pubDate>Wed, 06 May 2009 04:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-878</guid>
		<description>[...] http://code.compartmental.net/tools/minim/manual-beatdetect/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://code.compartmental.net/tools/minim/manual-beatdetect/" rel="nofollow">http://code.compartmental.net/tools/minim/manual-beatdetect/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Minim and Beat Detection &#124; matthewbrown.net.au</title>
		<link>http://code.compartmental.net/tools/minim/manual-beatdetect/comment-page-1/#comment-617</link>
		<dc:creator>Minim and Beat Detection &#124; matthewbrown.net.au</dc:creator>
		<pubDate>Wed, 17 Sep 2008 12:04:33 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-beatdetect/#comment-617</guid>
		<description>[...] I was looking through the Minim documentation, I came across the built in BeatDetect class that analyses the audio input for beats. My understanding is that it looks for patterns in the [...]</description>
		<content:encoded><![CDATA[<p>[...] I was looking through the Minim documentation, I came across the built in BeatDetect class that analyses the audio input for beats. My understanding is that it looks for patterns in the [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
