 
<?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: Making Sprint Ringtones with Linux</title>
	<atom:link href="http://www.paradoxinc.net/linux/making-sprint-ringtones-with-linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.paradoxinc.net/linux/making-sprint-ringtones-with-linux</link>
	<description>If it is true it must be false</description>
	<lastBuildDate>Fri, 03 Oct 2008 00:08:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: barcode</title>
		<link>http://www.paradoxinc.net/linux/making-sprint-ringtones-with-linux/comment-page-1#comment-26</link>
		<dc:creator>barcode</dc:creator>
		<pubDate>Tue, 21 Nov 2006 00:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxinc.net/users/icarus/linux/making-sprint-ringtones-with-linux/#comment-26</guid>
		<description>sorry about the typos in the script.  My spelling is horrible @ 3am after a few pints.</description>
		<content:encoded><![CDATA[<p>sorry about the typos in the script.  My spelling is horrible @ 3am after a few pints.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barcode</title>
		<link>http://www.paradoxinc.net/linux/making-sprint-ringtones-with-linux/comment-page-1#comment-25</link>
		<dc:creator>barcode</dc:creator>
		<pubDate>Mon, 20 Nov 2006 23:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxinc.net/users/icarus/linux/making-sprint-ringtones-with-linux/#comment-25</guid>
		<description>Also, I wrote a script to help those of us sprint/linux users.  If you take the pvconv program and stick it in /usr/bin/ you can use this little handy script to help automate the process.  Edit to meet your needs.


#!/bin/bash
# Author Danny Brown 
# Additions by Fabio Erculiani 
# This converts a .wav to a .qcp file

# Params check
if [ -z &quot;$1&quot; ]; then
  echo &quot;Error. Not enough paramaters&quot;
  exit 1
fi

# Set variable
file=$1

# File check
if [ -z &quot;`echo $file &#124; grep .wav`&quot; ]; then
  echo &quot;Error, this is not a .wav file&quot;
  exit2
fi

# Re-encoding
if [ -f &quot;$file&quot; ]; then
  sox &quot;$file&quot; -r8000 -c1 -w output.wav
else
  echo &quot;Error. File not Found&quot;
  echo $file
  exit 3
fi

# Converting the sox file to pure voice file and moving it ot the users Desktop
pvconv output.wav
mv output.qcp /home/`whoami`/Desktop/new-ringtone.qcp

# Delete the sox file - this is for clean up reasons only
rm output.wav


Hope this helps!
Danny</description>
		<content:encoded><![CDATA[<p>Also, I wrote a script to help those of us sprint/linux users.  If you take the pvconv program and stick it in /usr/bin/ you can use this little handy script to help automate the process.  Edit to meet your needs.</p>
<p>#!/bin/bash<br />
# Author Danny Brown<br />
# Additions by Fabio Erculiani<br />
# This converts a .wav to a .qcp file</p>
<p># Params check<br />
if [ -z "$1" ]; then<br />
  echo &#8220;Error. Not enough paramaters&#8221;<br />
  exit 1<br />
fi</p>
<p># Set variable<br />
file=$1</p>
<p># File check<br />
if [ -z "`echo $file | grep .wav`" ]; then<br />
  echo &#8220;Error, this is not a .wav file&#8221;<br />
  exit2<br />
fi</p>
<p># Re-encoding<br />
if [ -f "$file" ]; then<br />
  sox &#8220;$file&#8221; -r8000 -c1 -w output.wav<br />
else<br />
  echo &#8220;Error. File not Found&#8221;<br />
  echo $file<br />
  exit 3<br />
fi</p>
<p># Converting the sox file to pure voice file and moving it ot the users Desktop<br />
pvconv output.wav<br />
mv output.qcp /home/`whoami`/Desktop/new-ringtone.qcp</p>
<p># Delete the sox file &#8211; this is for clean up reasons only<br />
rm output.wav</p>
<p>Hope this helps!<br />
Danny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: icarus</title>
		<link>http://www.paradoxinc.net/linux/making-sprint-ringtones-with-linux/comment-page-1#comment-23</link>
		<dc:creator>icarus</dc:creator>
		<pubDate>Mon, 13 Nov 2006 17:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxinc.net/users/icarus/linux/making-sprint-ringtones-with-linux/#comment-23</guid>
		<description>That&#039;s a bummer, I&#039;ll look for an alternate source or just re-tar the stuff I have and post that

You can get it right from Qualcomm who makes it, it would be the &quot;PureVoice Converter 3.1 for Linux&quot; http://www.cdmatech.com/products/purevoice_download.jsp

This has also been changed in the original post, thanks for pointing it out!</description>
		<content:encoded><![CDATA[<p>That&#8217;s a bummer, I&#8217;ll look for an alternate source or just re-tar the stuff I have and post that</p>
<p>You can get it right from Qualcomm who makes it, it would be the &#8220;PureVoice Converter 3.1 for Linux&#8221; <a href="http://www.cdmatech.com/products/purevoice_download.jsp" rel="nofollow">http://www.cdmatech.com/products/purevoice_download.jsp</a></p>
<p>This has also been changed in the original post, thanks for pointing it out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: barcode</title>
		<link>http://www.paradoxinc.net/linux/making-sprint-ringtones-with-linux/comment-page-1#comment-16</link>
		<dc:creator>barcode</dc:creator>
		<pubDate>Sat, 11 Nov 2006 02:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.paradoxinc.net/users/icarus/linux/making-sprint-ringtones-with-linux/#comment-16</guid>
		<description>Beautiful how-to!  But you might want to find another url for the pvconv program.  It seems as though your source is no more.</description>
		<content:encoded><![CDATA[<p>Beautiful how-to!  But you might want to find another url for the pvconv program.  It seems as though your source is no more.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
