<?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: 15 Awesome Examples to Manipulate Audio Files Using Sound eXchange (SoX)</title>
	<atom:link href="http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/</link>
	<description>Guides, HowTos and Tips for Technology Geeks</description>
	<lastBuildDate>Thu, 09 Feb 2012 13:04:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: tom</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-181388</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Fri, 20 Jan 2012 21:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-181388</guid>
		<description>How can I get Sox to play from a point? For example, begin playing at two seconds in. I bet I can create a new file with the audio i want and play that, but it seems obtuse</description>
		<content:encoded><![CDATA[<p>How can I get Sox to play from a point? For example, begin playing at two seconds in. I bet I can create a new file with the audio i want and play that, but it seems obtuse</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ted</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-180999</link>
		<dc:creator>ted</dc:creator>
		<pubDate>Thu, 19 Jan 2012 21:03:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-180999</guid>
		<description>fyi- example #4 does not work. 
i have SoX installed on Mac OSX.</description>
		<content:encoded><![CDATA[<p>fyi- example #4 does not work.<br />
i have SoX installed on Mac OSX.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Hoadley</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-100970</link>
		<dc:creator>Jim Hoadley</dc:creator>
		<pubDate>Tue, 26 Apr 2011 22:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-100970</guid>
		<description>Your instructions for decreasing the volume are incorrect. Positive numbers less the 1 decrease the volume. You can make those numbers negative, but that will just invert the phase; it has no effect on volume. I would suggest you replace your examples with these:

$ sox -v 0.5 srcfile.wav test05.wav
$ sox -v 0.1 srcfile.wav test01.wav

The first command reduces the gain by 50%, the second by 90%.

Feel free to check the sox man page to verify my comments. Thanks!</description>
		<content:encoded><![CDATA[<p>Your instructions for decreasing the volume are incorrect. Positive numbers less the 1 decrease the volume. You can make those numbers negative, but that will just invert the phase; it has no effect on volume. I would suggest you replace your examples with these:</p>
<p>$ sox -v 0.5 srcfile.wav test05.wav<br />
$ sox -v 0.1 srcfile.wav test01.wav</p>
<p>The first command reduces the gain by 50%, the second by 90%.</p>
<p>Feel free to check the sox man page to verify my comments. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-85075</link>
		<dc:creator>daniel</dc:creator>
		<pubDate>Wed, 09 Feb 2011 14:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-85075</guid>
		<description>wow, nice article...

although i didnt find a reference to the general &quot;problem&quot; of combining 2 audio file, one is voice and the other is background music, in a way that the volume of the music is reduced when the voice is &quot;speaking&quot;...

is it possiable to perform using SoX?

thanks alot

Daniel</description>
		<content:encoded><![CDATA[<p>wow, nice article&#8230;</p>
<p>although i didnt find a reference to the general &#8220;problem&#8221; of combining 2 audio file, one is voice and the other is background music, in a way that the volume of the music is reduced when the voice is &#8220;speaking&#8221;&#8230;</p>
<p>is it possiable to perform using SoX?</p>
<p>thanks alot</p>
<p>Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-77692</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 06 Jan 2011 22:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-77692</guid>
		<description>Need some help. I am trying to execute the soxmix command from a php call, but it does nothing... can you show me how to do it?

$output = array();
$result = -1;
exec(&#039;/usr/bin/soxmix test/exports/audiotest1.wav audio/003-half.wav test/exports/mixedaudio.wav&#039;, $output, $result);
var_dump($output, $result);</description>
		<content:encoded><![CDATA[<p>Need some help. I am trying to execute the soxmix command from a php call, but it does nothing&#8230; can you show me how to do it?</p>
<p>$output = array();<br />
$result = -1;<br />
exec(&#8216;/usr/bin/soxmix test/exports/audiotest1.wav audio/003-half.wav test/exports/mixedaudio.wav&#8217;, $output, $result);<br />
var_dump($output, $result);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anon</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-70504</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Sun, 21 Nov 2010 17:40:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-70504</guid>
		<description>Thanks for the tutorial, also thanks Marios for the update about &#039;avg&#039;...!</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial, also thanks Marios for the update about &#8216;avg&#8217;&#8230;!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marios</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-64753</link>
		<dc:creator>Marios</dc:creator>
		<pubDate>Wed, 29 Sep 2010 16:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-64753</guid>
		<description>Phil G

avg has been deprecated but has been replaced by mixer.

To get the left channel from stereo try:
sox stereo.wav -c 1 mono.wav  mixer -l

for more info look at the mixer notes here:
http://sox.sourceforge.net/sox.html</description>
		<content:encoded><![CDATA[<p>Phil G</p>
<p>avg has been deprecated but has been replaced by mixer.</p>
<p>To get the left channel from stereo try:<br />
sox stereo.wav -c 1 mono.wav  mixer -l</p>
<p>for more info look at the mixer notes here:<br />
<a href="http://sox.sourceforge.net/sox.html" rel="nofollow">http://sox.sourceforge.net/sox.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roy7</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-59671</link>
		<dc:creator>roy7</dc:creator>
		<pubDate>Wed, 18 Aug 2010 16:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-59671</guid>
		<description>Ian Vaughan, you can do that with Audacity. I think it&#039;s in their FAQ.</description>
		<content:encoded><![CDATA[<p>Ian Vaughan, you can do that with Audacity. I think it&#8217;s in their FAQ.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gib</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-47210</link>
		<dc:creator>Gib</dc:creator>
		<pubDate>Mon, 17 May 2010 17:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-47210</guid>
		<description>sox foo.wav -e stat -&gt; Will not work on the latest versions of sox.

Must use -n instead of -e      e.g.
sox foo.wav -n stat</description>
		<content:encoded><![CDATA[<p>sox foo.wav -e stat -&gt; Will not work on the latest versions of sox.</p>
<p>Must use -n instead of -e      e.g.<br />
sox foo.wav -n stat</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rakesh</title>
		<link>http://www.thegeekstuff.com/2009/05/sound-exchange-sox-15-examples-to-manipulate-audio-files/comment-page-1/#comment-46026</link>
		<dc:creator>rakesh</dc:creator>
		<pubDate>Thu, 06 May 2010 12:18:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.thegeekstuff.com/?p=486#comment-46026</guid>
		<description>Hello ,

Is SOX support to convert any music file to ringtone extenstion like midi,mmf,aac ,poliphonic ringtone,mono pholic ring tone etc.
please help on that point

Thanks in advanced</description>
		<content:encoded><![CDATA[<p>Hello ,</p>
<p>Is SOX support to convert any music file to ringtone extenstion like midi,mmf,aac ,poliphonic ringtone,mono pholic ring tone etc.<br />
please help on that point</p>
<p>Thanks in advanced</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: static.thegeekstuff.com

Served from: www.thegeekstuff.com @ 2012-02-09 13:46:03 -->
