<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Confessions of a Guru &#187; linux mp3 wma convert</title>
	<atom:link href="http://www.guru.net.nz/blog/category/linux-mp3-wma-convert/feed" rel="self" type="application/rss+xml" />
	<link>http://www.guru.net.nz/blog</link>
	<description>Random stuff from a Dunedin (NZ) based web developer, beer drinker and dad</description>
	<lastBuildDate>Wed, 14 Dec 2011 09:18:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ubuntu: Convert wma to mp3</title>
		<link>http://www.guru.net.nz/blog/2007/01/ubuntu-convert-wma-to-mp3.html</link>
		<comments>http://www.guru.net.nz/blog/2007/01/ubuntu-convert-wma-to-mp3.html#comments</comments>
		<pubDate>Sun, 21 Jan 2007 12:20:00 +0000</pubDate>
		<dc:creator>GuruBob</dc:creator>
				<category><![CDATA[linux mp3 wma convert]]></category>

		<guid isPermaLink="false">http://www.guru.net.nz/newblog/?p=139</guid>
		<description><![CDATA[This bash script should create a .mp3 file for all .wma files in the current directory. Note that you need mplayer and lame installed &#8211; a &#8216;sudo apt-get install lame mplayer&#8217; should sort that out for you. Remember to chmod +x convert.sh your script to run it. &#8212; convert.sh &#8212;#!/bin/bashfor i in *.wma ; do [...]]]></description>
			<content:encoded><![CDATA[<p>This bash script should create a .mp3 file for all .wma files in the current directory.  Note that you need mplayer and lame installed &#8211; a &#8216;sudo apt-get install lame mplayer&#8217; should sort that out for you.  Remember to chmod +x convert.sh your script to run it.</p>
<p>&#8212; convert.sh &#8212;<br /><code><br />#!/bin/bash<br />for i in *.wma ; do mplayer -vo null -vc dummy -af resample=44100 -ao pcm:waveheader "$i" &#038;&#038; lame -m s temp.wav -o "`basename "$i" .wma`.mp3" ; done<br />rm temp.wav<br /></code></p>
<p>Note that the encoded MP3&#8242;s will have no ID tags on them.  I&#8217;ll try to work that out when I&#8217;m more awake &#8230; Zzzzz &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guru.net.nz/blog/2007/01/ubuntu-convert-wma-to-mp3.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

