<?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: Sine Wave Frequency Sweep with Audacity</title>
	<atom:link href="http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/</link>
	<description>Web Design News &#38; Tutorials</description>
	<lastBuildDate>Tue, 07 Feb 2012 18:42:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Steve</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-176</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 24 Aug 2010 02:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-176</guid>
		<description>That&#039;s a neat idea using fmosc to generate a sweep.
This plug-in was brought to my attention today (so your work lives on :)) by a post on the Audacity help forum. The post was by someone wanting to combine this sweep generator with a tremolo effect. You can find the result here if you are interested: http://forum.audacityteam.org/viewtopic.php?f=39&amp;t=38426

Steve</description>
		<content:encoded><![CDATA[<p>That&#8217;s a neat idea using fmosc to generate a sweep.<br />
This plug-in was brought to my attention today (so your work lives on :)) by a post on the Audacity help forum. The post was by someone wanting to combine this sweep generator with a tremolo effect. You can find the result here if you are interested: <a href="http://forum.audacityteam.org/viewtopic.php?f=39&#038;t=38426" rel="nofollow">http://forum.audacityteam.org/viewtopic.php?f=39&#038;t=38426</a></p>
<p>Steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sajowe</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-175</link>
		<dc:creator>Sajowe</dc:creator>
		<pubDate>Sun, 06 Sep 2009 11:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-175</guid>
		<description>After I had just worked out how to do this log freq sweep by myself I thought I&#039;d Google it ... and well here I am.  I hadn&#039;t though of adding the level controller &amp; now have worked out how to make is a generator rather than a process plugin.

But what I really wanted to say was just a note for the corruptness: when you copy it from the web browser into notepad the quotation marks (ie. &quot;&quot;) are not the proper ones.  Just check to see if they are as I&#039;ve also come across coping stuff from Web Browsers (&amp; also MS Word) to notepad the &quot;&quot;s are actually a different character as such.  When pasted they become directional &quot;&quot;s but with programming they should be the same at each end of the quote.

Here&#039;s my version anyway (the units have been fixed up a bit too)
;nyquist plug-in
;version 1
;type generate
;name &quot;Freq Sweep&quot;
;action &quot;Log Freq Sweep...&quot;
;info &quot;by Sajowe&quot;

;control frest &quot;Start freq&quot; real &quot;Hz&quot; 20 5 20480
;control frefl &quot;Final freq&quot; real &quot;Hz&quot; 20480 5 20480
;control swpduration &quot;Duration&quot; real &quot;sec&quot; 20 1 300
;control level &quot;Level (dBFS)&quot; real &quot;dBFS&quot; -3 -40 0

(scale-db level (fmosc 0 (pwe 0.000001 frest swpduration frefl 5.001)))</description>
		<content:encoded><![CDATA[<p>After I had just worked out how to do this log freq sweep by myself I thought I&#8217;d Google it &#8230; and well here I am.  I hadn&#8217;t though of adding the level controller &amp; now have worked out how to make is a generator rather than a process plugin.</p>
<p>But what I really wanted to say was just a note for the corruptness: when you copy it from the web browser into notepad the quotation marks (ie. &#8220;&#8221;) are not the proper ones.  Just check to see if they are as I&#8217;ve also come across coping stuff from Web Browsers (&amp; also MS Word) to notepad the &#8220;&#8221;s are actually a different character as such.  When pasted they become directional &#8220;&#8221;s but with programming they should be the same at each end of the quote.</p>
<p>Here&#8217;s my version anyway (the units have been fixed up a bit too)<br />
;nyquist plug-in<br />
;version 1<br />
;type generate<br />
;name &#8220;Freq Sweep&#8221;<br />
;action &#8220;Log Freq Sweep&#8230;&#8221;<br />
;info &#8220;by Sajowe&#8221;</p>
<p>;control frest &#8220;Start freq&#8221; real &#8220;Hz&#8221; 20 5 20480<br />
;control frefl &#8220;Final freq&#8221; real &#8220;Hz&#8221; 20480 5 20480<br />
;control swpduration &#8220;Duration&#8221; real &#8220;sec&#8221; 20 1 300<br />
;control level &#8220;Level (dBFS)&#8221; real &#8220;dBFS&#8221; -3 -40 0</p>
<p>(scale-db level (fmosc 0 (pwe 0.000001 frest swpduration frefl 5.001)))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Pope</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-174</link>
		<dc:creator>Adam Pope</dc:creator>
		<pubDate>Mon, 31 Aug 2009 16:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-174</guid>
		<description>Hi Austin, I would recommend downloading a better text editor.  Something like Notepad++ (http://notepad-plus.sourceforge.net/uk/site.htm) will allow you to save a file with arbitrary file extensions (as well as being very useful for a lot of other jobs!)</description>
		<content:encoded><![CDATA[<p>Hi Austin, I would recommend downloading a better text editor.  Something like Notepad++ (<a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">http://notepad-plus.sourceforge.net/uk/site.htm</a>) will allow you to save a file with arbitrary file extensions (as well as being very useful for a lot of other jobs!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Austin</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-173</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Mon, 31 Aug 2009 16:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-173</guid>
		<description>hi i am trying to save the .ny file but i cannot. i am running windows vista 32 bit. i tried using notepad but it saves it as a .txt file...and i know that isnt what i want.</description>
		<content:encoded><![CDATA[<p>hi i am trying to save the .ny file but i cannot. i am running windows vista 32 bit. i tried using notepad but it saves it as a .txt file&#8230;and i know that isnt what i want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tangofish</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-172</link>
		<dc:creator>tangofish</dc:creator>
		<pubDate>Thu, 27 Aug 2009 18:19:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-172</guid>
		<description>The &quot;cut and paste code&quot; above seems to be a bit corrupt for some reason?
After fixing it up the code is working for me now, thanks to Adam and Paul for
the good work!

;nyquist plug-in
;version 1
;type generate
;name &quot;Frequency Sweep...&quot;
;action &quot;Producing frequency sweep...&quot;
;info &quot;version 1.2 by Adam Pope and Paul Schimmel (fixed by tangofish)&quot;

;control startf &quot;Start Frequency (Hz)&quot; real &quot;&quot; 20 20 20000
;control endf &quot;End Frequency (Hz)&quot; real &quot;&quot; 20000 20 20000
;control duration &quot;Duration (secs)&quot; real &quot;&quot; 30 1 300
;control level &quot;Level (dBFS)&quot; real &quot; &quot; 0 -40 0
;control type &quot;Sweep scale [1=Linear, 2=Exponential]&quot; int &quot;&quot; 2 1 2


(if (= type 2)(scale-db level (fmosc 0 (pwev startf duration endf))) (scale-db level (fmosc 0 (pwlv startf duration endf))) )</description>
		<content:encoded><![CDATA[<p>The &#8220;cut and paste code&#8221; above seems to be a bit corrupt for some reason?<br />
After fixing it up the code is working for me now, thanks to Adam and Paul for<br />
the good work!</p>
<p>;nyquist plug-in<br />
;version 1<br />
;type generate<br />
;name &#8220;Frequency Sweep&#8230;&#8221;<br />
;action &#8220;Producing frequency sweep&#8230;&#8221;<br />
;info &#8220;version 1.2 by Adam Pope and Paul Schimmel (fixed by tangofish)&#8221;</p>
<p>;control startf &#8220;Start Frequency (Hz)&#8221; real &#8220;&#8221; 20 20 20000<br />
;control endf &#8220;End Frequency (Hz)&#8221; real &#8220;&#8221; 20000 20 20000<br />
;control duration &#8220;Duration (secs)&#8221; real &#8220;&#8221; 30 1 300<br />
;control level &#8220;Level (dBFS)&#8221; real &#8221; &#8221; 0 -40 0<br />
;control type &#8220;Sweep scale [1=Linear, 2=Exponential]&#8221; int &#8220;&#8221; 2 1 2</p>
<p>(if (= type 2)(scale-db level (fmosc 0 (pwev startf duration endf))) (scale-db level (fmosc 0 (pwlv startf duration endf))) )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeb</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-171</link>
		<dc:creator>Zeb</dc:creator>
		<pubDate>Thu, 27 Aug 2009 16:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-171</guid>
		<description>Hello Adam, thanks for writing this plugin. I&#039;ve searched everywhere for a frequency sweep plugin and this is the only place that I&#039;ve found info for it.

That being said, I can&#039;t get it to work! I&#039;ve tried both of the versions that you have posted up above and everytime I do either one I get an error chime and a widow pops up (in Audacity) that says &quot;Nyquist returned the value: 0.00000&quot;. I have noticed that when I change the level slider in version 2 (for example from 0.0dBFS to -3.5dBFS) the error message will say &quot;Nyquist returned the value: -3.500000. Any idea what could be causing this?

I&#039;m running Audacity 1.26 on Windows Vista

If I hit the debug button it gives me the same error and then pops up another window that says:

error: unbound variable - TYPE
if continued: try evaluating symbol again
Function: #
Arguments:
  (= TYPE 2)
  (SCALE-DB LEVEL (FMOSC 0 (PWEV STARTF DURATION ENDF)))
  (SCALE-DB LEVEL (FMOSC 0 (PWLV STARTF DURATION ENDF)))
1&gt; [ gc: total 18640, 3673 free; samples 1KB, 0KB free ]

I&#039;m definitely not a programmer so this is greek to me! Thanks for you help!</description>
		<content:encoded><![CDATA[<p>Hello Adam, thanks for writing this plugin. I&#8217;ve searched everywhere for a frequency sweep plugin and this is the only place that I&#8217;ve found info for it.</p>
<p>That being said, I can&#8217;t get it to work! I&#8217;ve tried both of the versions that you have posted up above and everytime I do either one I get an error chime and a widow pops up (in Audacity) that says &#8220;Nyquist returned the value: 0.00000&#8243;. I have noticed that when I change the level slider in version 2 (for example from 0.0dBFS to -3.5dBFS) the error message will say &#8220;Nyquist returned the value: -3.500000. Any idea what could be causing this?</p>
<p>I&#8217;m running Audacity 1.26 on Windows Vista</p>
<p>If I hit the debug button it gives me the same error and then pops up another window that says:</p>
<p>error: unbound variable &#8211; TYPE<br />
if continued: try evaluating symbol again<br />
Function: #<br />
Arguments:<br />
  (= TYPE 2)<br />
  (SCALE-DB LEVEL (FMOSC 0 (PWEV STARTF DURATION ENDF)))<br />
  (SCALE-DB LEVEL (FMOSC 0 (PWLV STARTF DURATION ENDF)))<br />
1&gt; [ gc: total 18640, 3673 free; samples 1KB, 0KB free ]</p>
<p>I&#8217;m definitely not a programmer so this is greek to me! Thanks for you help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Pope</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-170</link>
		<dc:creator>Adam Pope</dc:creator>
		<pubDate>Sat, 02 May 2009 13:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-170</guid>
		<description>Kaylea, you need to copy the code into a new file with a name like frequencysweep.ny and place it in to your Audacity plug-ins directory.

http://audacityteam.org/wiki/index.php?title=Nyquist_Plug-ins</description>
		<content:encoded><![CDATA[<p>Kaylea, you need to copy the code into a new file with a name like frequencysweep.ny and place it in to your Audacity plug-ins directory.</p>
<p><a href="http://audacityteam.org/wiki/index.php?title=Nyquist_Plug-ins" rel="nofollow">http://audacityteam.org/wiki/index.php?title=Nyquist_Plug-ins</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nomis</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-169</link>
		<dc:creator>nomis</dc:creator>
		<pubDate>Fri, 01 May 2009 22:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-169</guid>
		<description>To get this working int he current Audacity build, just change the code so it reads on the second line version 1 instead of 3</description>
		<content:encoded><![CDATA[<p>To get this working int he current Audacity build, just change the code so it reads on the second line version 1 instead of 3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaylea</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-168</link>
		<dc:creator>kaylea</dc:creator>
		<pubDate>Tue, 28 Apr 2009 21:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-168</guid>
		<description>i dont understand where i put the code to make it frequency sweap
can someone help please.</description>
		<content:encoded><![CDATA[<p>i dont understand where i put the code to make it frequency sweap<br />
can someone help please.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.storm-consultancy.com/development/tutorials/sine-wave-frequency-sweep-with-audacity/#comment-167</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 06 Nov 2008 22:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.izonedesign.co.uk/blog/?p=80#comment-167</guid>
		<description>Sorry Adam, you only managed to recreate Generate -&gt; Chirp...

Better luck next time!</description>
		<content:encoded><![CDATA[<p>Sorry Adam, you only managed to recreate Generate -&gt; Chirp&#8230;</p>
<p>Better luck next time!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

