<?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: AudioInput</title>
	<atom:link href="http://code.compartmental.net/tools/minim/manual-audioinput/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.compartmental.net</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 07:48:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: ddf</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-3728</link>
		<dc:creator>ddf</dc:creator>
		<pubDate>Wed, 17 Nov 2010 05:06:13 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-3728</guid>
		<description>Most likely by telling Java the input mixer you want to use. Check out the section &quot;Setting the System Mixers&quot; on this page: http://code.compartmental.net/tools/minim/manual-minim/</description>
		<content:encoded><![CDATA[<p>Most likely by telling Java the input mixer you want to use. Check out the section &#8220;Setting the System Mixers&#8221; on this page: <a href="http://code.compartmental.net/tools/minim/manual-minim/" rel="nofollow">http://code.compartmental.net/tools/minim/manual-minim/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-3519</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Mon, 01 Nov 2010 00:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-3519</guid>
		<description>How can I get the an external USB mic as the audio input?</description>
		<content:encoded><![CDATA[<p>How can I get the an external USB mic as the audio input?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-3112</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 19 Sep 2010 00:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-3112</guid>
		<description>The Minim library works fine with PulseAudio on Linux!
Using Pulse Audio you can route minim&#039;s audio input to whatever sound source is available(mic,line in,monitor of the soundcard output,etc).

Unfortunatelly the official Oracle java 1.6 does not support pulseaudio for JavaSound.But there is an SPI and a native library included in the IcedTea project.

It would be ideal if Minim could use Jack Audio for sound input-output,which is designed for pro-audio realtime applications.</description>
		<content:encoded><![CDATA[<p>The Minim library works fine with PulseAudio on Linux!<br />
Using Pulse Audio you can route minim&#8217;s audio input to whatever sound source is available(mic,line in,monitor of the soundcard output,etc).</p>
<p>Unfortunatelly the official Oracle java 1.6 does not support pulseaudio for JavaSound.But there is an SPI and a native library included in the IcedTea project.</p>
<p>It would be ideal if Minim could use Jack Audio for sound input-output,which is designed for pro-audio realtime applications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ddf</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-2638</link>
		<dc:creator>ddf</dc:creator>
		<pubDate>Sun, 18 Jul 2010 07:49:24 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-2638</guid>
		<description>What this class does is give you access to the audio data from the active input on the computer. If you want to analyze the samples to get the frequency spectrum, you&#039;d use an FFT object and pass in the mix buffer of your input. It&#039;d be the same code as shown on the the FFT manual page (http://code.compartmental.net/tools/minim/manual-fft/), only you use an AudioInput instead of an AudioPlayer.

The easiest way to pipe the input to the output is now the LiveInput UGen (http://code.compartmental.net/minim-beta/javadoc/ddf/minim/ugens/LiveInput.html), which you can use by downloading the Beta release on the main Minim page. Start at the Music Programming Intro section of the manual to learn about that new framework.</description>
		<content:encoded><![CDATA[<p>What this class does is give you access to the audio data from the active input on the computer. If you want to analyze the samples to get the frequency spectrum, you&#8217;d use an FFT object and pass in the mix buffer of your input. It&#8217;d be the same code as shown on the the FFT manual page (<a href="http://code.compartmental.net/tools/minim/manual-fft/" rel="nofollow">http://code.compartmental.net/tools/minim/manual-fft/</a>), only you use an AudioInput instead of an AudioPlayer.</p>
<p>The easiest way to pipe the input to the output is now the LiveInput UGen (<a href="http://code.compartmental.net/minim-beta/javadoc/ddf/minim/ugens/LiveInput.html" rel="nofollow">http://code.compartmental.net/minim-beta/javadoc/ddf/minim/ugens/LiveInput.html</a>), which you can use by downloading the Beta release on the main Minim page. Start at the Music Programming Intro section of the manual to learn about that new framework.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wes</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-2635</link>
		<dc:creator>wes</dc:creator>
		<pubDate>Sat, 17 Jul 2010 23:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-2635</guid>
		<description>does anybody know how to analyze frequencies from audio input? seems like this class, along with waveformrenderer, only analyzes individual samples.</description>
		<content:encoded><![CDATA[<p>does anybody know how to analyze frequencies from audio input? seems like this class, along with waveformrenderer, only analyzes individual samples.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wes</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-2632</link>
		<dc:creator>wes</dc:creator>
		<pubDate>Sat, 17 Jul 2010 22:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-2632</guid>
		<description>&quot;To do that, you’d need to pipe the input back through an AudioOutput object.&quot;

trying to figure out how to do this. audiooutput takes in audiosignal objects, and i&#039;m not sure how to convert audioinput to audiosignal, if that makes any sense. anybody have any pointers?</description>
		<content:encoded><![CDATA[<p>&#8220;To do that, you’d need to pipe the input back through an AudioOutput object.&#8221;</p>
<p>trying to figure out how to do this. audiooutput takes in audiosignal objects, and i&#8217;m not sure how to convert audioinput to audiosignal, if that makes any sense. anybody have any pointers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Troop</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-2500</link>
		<dc:creator>Troop</dc:creator>
		<pubDate>Wed, 23 Jun 2010 14:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-2500</guid>
		<description>i found this library because i was looking for a alternative to sonia+soniaHelper, so im quite curious what your progress was on the implementation.

thnx</description>
		<content:encoded><![CDATA[<p>i found this library because i was looking for a alternative to sonia+soniaHelper, so im quite curious what your progress was on the implementation.</p>
<p>thnx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ddf</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-2204</link>
		<dc:creator>ddf</dc:creator>
		<pubDate>Sat, 24 Apr 2010 02:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-2204</guid>
		<description>1) I&#039;ve not used SoniaHelper so I don&#039;t know exactly what the damper you are talking about would be for. In the beta release that just went out you will find a Damp UGen in the UGen framework, which might be what you are looking for.

2) If you were to use the SoniaHelper damper in an AudioEffect, you&#039;d write a AudioEffect for yourself that wraps the SoniaHelper damper. The float array you are looking for would be passed to the process method of your effect.

Hope that helps!</description>
		<content:encoded><![CDATA[<p>1) I&#8217;ve not used SoniaHelper so I don&#8217;t know exactly what the damper you are talking about would be for. In the beta release that just went out you will find a Damp UGen in the UGen framework, which might be what you are looking for.</p>
<p>2) If you were to use the SoniaHelper damper in an AudioEffect, you&#8217;d write a AudioEffect for yourself that wraps the SoniaHelper damper. The float array you are looking for would be passed to the process method of your effect.</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jonobr1</title>
		<link>http://code.compartmental.net/tools/minim/manual-audioinput/comment-page-1/#comment-2074</link>
		<dc:creator>jonobr1</dc:creator>
		<pubDate>Wed, 14 Apr 2010 00:16:35 +0000</pubDate>
		<guid isPermaLink="false">http://code.compartmental.net/tools/minim/manual-audioinput/#comment-2074</guid>
		<description>I recently switched from Sonia to Minim and I&#039;d like to laud the work done on the library. Previously when I would use Sonia I would use it in conjunction with Marius Watz SoniaHelper to add a damper. I have a couple of questions concerning this:

1. Does Minim have an equivalent?

2. I didn&#039;t find one so I started tinkering with the two together. SoniaHelper requires a float[] for it&#039;s audio input values. I checked the some of the Javadocs (namely for FFT) and didn&#039;t see any methods that returned a float[]. Could you point me in the right direction?

I think if the answer to the first question is no, I might try my hands to port SoniaHelper to a MinimHelper. Cheers</description>
		<content:encoded><![CDATA[<p>I recently switched from Sonia to Minim and I&#8217;d like to laud the work done on the library. Previously when I would use Sonia I would use it in conjunction with Marius Watz SoniaHelper to add a damper. I have a couple of questions concerning this:</p>
<p>1. Does Minim have an equivalent?</p>
<p>2. I didn&#8217;t find one so I started tinkering with the two together. SoniaHelper requires a float[] for it&#8217;s audio input values. I checked the some of the Javadocs (namely for FFT) and didn&#8217;t see any methods that returned a float[]. Could you point me in the right direction?</p>
<p>I think if the answer to the first question is no, I might try my hands to port SoniaHelper to a MinimHelper. Cheers</p>
]]></content:encoded>
	</item>
</channel>
</rss>

