<?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: FLAC -&gt; MP3</title>
	<atom:link href="http://illusoryfollies.com/flac-mp3/feed/" rel="self" type="application/rss+xml" />
	<link>http://illusoryfollies.com/flac-mp3/</link>
	<description>Code, Technology, and Ramblings</description>
	<pubDate>Tue, 06 Jan 2009 04:46:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dave Feucht</title>
		<link>http://illusoryfollies.com/flac-mp3/comment-page-1/#comment-874</link>
		<dc:creator>Dave Feucht</dc:creator>
		<pubDate>Wed, 07 Nov 2007 20:20:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.illusoryfollies.com/2007/04/28/flac-mp3/#comment-874</guid>
		<description>oh, oops, some of that got lost in the posting...

everything below -b should have double hyphens, and I had stuff in brackets after them, which I realized disappeared. those are the options to set the ID tag info, they are (in order), title, artist, album, year, track number and genre :)</description>
		<content:encoded><![CDATA[<p>oh, oops, some of that got lost in the posting&#8230;</p>
<p>everything below -b should have double hyphens, and I had stuff in brackets after them, which I realized disappeared. those are the options to set the ID tag info, they are (in order), title, artist, album, year, track number and genre <img src='http://illusoryfollies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Feucht</title>
		<link>http://illusoryfollies.com/flac-mp3/comment-page-1/#comment-873</link>
		<dc:creator>Dave Feucht</dc:creator>
		<pubDate>Wed, 07 Nov 2007 20:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.illusoryfollies.com/2007/04/28/flac-mp3/#comment-873</guid>
		<description>Some useful options for lame:

-h (high quality) 
-v (tells it to do variable bitrate) 
-b 192 (sets the average bitrate in this case, or the bitrate if you're doing constant) 
--tt  
--ta  
--tl  
--ty  
--tn  
--tg 

:)</description>
		<content:encoded><![CDATA[<p>Some useful options for lame:</p>
<p>-h (high quality)<br />
-v (tells it to do variable bitrate)<br />
-b 192 (sets the average bitrate in this case, or the bitrate if you&#8217;re doing constant)<br />
&#8211;tt<br />
&#8211;ta<br />
&#8211;tl<br />
&#8211;ty<br />
&#8211;tn<br />
&#8211;tg </p>
<p> <img src='http://illusoryfollies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Flanagan</title>
		<link>http://illusoryfollies.com/flac-mp3/comment-page-1/#comment-869</link>
		<dc:creator>Andrew Flanagan</dc:creator>
		<pubDate>Wed, 07 Nov 2007 16:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.illusoryfollies.com/2007/04/28/flac-mp3/#comment-869</guid>
		<description>Dave -- I had *thought* that the ffmpeg package was actually used LAME (which I've heard is the best). I was going to take a look and compare speeds on these... However, the interesting thing is that since I ran this script, the updated version of ffmpeg (at least the ebuild for Gentoo) no longer supports mp3 natively. So... the new solution (that would definitely be using LAME) would be something like:

flac -d -c FLACFILE.flac &#124; lame -V2 - output.mp3

Thanks! :-)</description>
		<content:encoded><![CDATA[<p>Dave &#8212; I had *thought* that the ffmpeg package was actually used LAME (which I&#8217;ve heard is the best). I was going to take a look and compare speeds on these&#8230; However, the interesting thing is that since I ran this script, the updated version of ffmpeg (at least the ebuild for Gentoo) no longer supports mp3 natively. So&#8230; the new solution (that would definitely be using LAME) would be something like:</p>
<p>flac -d -c FLACFILE.flac | lame -V2 - output.mp3</p>
<p>Thanks! <img src='http://illusoryfollies.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Feucht</title>
		<link>http://illusoryfollies.com/flac-mp3/comment-page-1/#comment-865</link>
		<dc:creator>Dave Feucht</dc:creator>
		<pubDate>Tue, 06 Nov 2007 23:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.illusoryfollies.com/2007/04/28/flac-mp3/#comment-865</guid>
		<description>I'd recommend using LAME to encode them (you can find OSX binaries or you can compile it yourself), and do them 192 or 256k variable bitrate, you end up keeping the quality but getting smaller filesizes because it will use lower bitrates for parts of the music that have less information. A lot of online sellers are starting to do this (eMusic, Amazon, etc...). I'm not entirely sure if LAME will automatically grab the ID tags from the FLAC files, but it at least has commandline options to set them at encoding time, so you could do something similar to that last script to pull out the ID tags and stick them in the commandline to LAME :)</description>
		<content:encoded><![CDATA[<p>I&#8217;d recommend using LAME to encode them (you can find OSX binaries or you can compile it yourself), and do them 192 or 256k variable bitrate, you end up keeping the quality but getting smaller filesizes because it will use lower bitrates for parts of the music that have less information. A lot of online sellers are starting to do this (eMusic, Amazon, etc&#8230;). I&#8217;m not entirely sure if LAME will automatically grab the ID tags from the FLAC files, but it at least has commandline options to set them at encoding time, so you could do something similar to that last script to pull out the ID tags and stick them in the commandline to LAME <img src='http://illusoryfollies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diane Feucht</title>
		<link>http://illusoryfollies.com/flac-mp3/comment-page-1/#comment-807</link>
		<dc:creator>Diane Feucht</dc:creator>
		<pubDate>Sun, 29 Apr 2007 02:15:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.illusoryfollies.com/2007/04/28/flac-mp3/#comment-807</guid>
		<description>Wow andrew... that was very exciting. I wish I knew what it all meant. :)</description>
		<content:encoded><![CDATA[<p>Wow andrew&#8230; that was very exciting. I wish I knew what it all meant. <img src='http://illusoryfollies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
