<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: A substitute audio player</title>
	<atom:link href="http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: A Debian server at 150Mhz, 32Mb &#171; Motho ke motho ka botho</title>
		<link>http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-44432</link>
		<dc:creator><![CDATA[A Debian server at 150Mhz, 32Mb &#171; Motho ke motho ka botho]]></dc:creator>
		<pubDate>Sun, 25 Jul 2010 12:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-44432</guid>
		<description><![CDATA[[...] one, it too suffers from stuttering music playback with both mocp and other console-based media players, let alone the graphical ones. I have seen this on three different machines now and a half-dozen [...]]]></description>
		<content:encoded><![CDATA[<p>[...] one, it too suffers from stuttering music playback with both mocp and other console-based media players, let alone the graphical ones. I have seen this on three different machines now and a half-dozen [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sound&#8217;s ironic &#171; Motho ke motho ka botho</title>
		<link>http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-42560</link>
		<dc:creator><![CDATA[Sound&#8217;s ironic &#171; Motho ke motho ka botho]]></dc:creator>
		<pubDate>Mon, 05 Apr 2010 01:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-42560</guid>
		<description><![CDATA[[...] and pauses, much as it did in Debian with the same setup, or in Crux with mocp, or even with Orpheus &#8212; although to be honest, that last one was probably the best. mpd is particularly [...]]]></description>
		<content:encoded><![CDATA[<p>[...] and pauses, much as it did in Debian with the same setup, or in Crux with mocp, or even with Orpheus &#8212; although to be honest, that last one was probably the best. mpd is particularly [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jose Catre-Vandis</title>
		<link>http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-42021</link>
		<dc:creator><![CDATA[Jose Catre-Vandis]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 18:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-42021</guid>
		<description><![CDATA[Damn, sorry. You need to add this as the first line to the script:

####################
touch ${PWD##*/}.m3u
####################]]></description>
		<content:encoded><![CDATA[<p>Damn, sorry. You need to add this as the first line to the script:</p>
<p>####################<br />
touch ${PWD##*/}.m3u<br />
####################</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jose Catre-Vandis</title>
		<link>http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-42020</link>
		<dc:creator><![CDATA[Jose Catre-Vandis]]></dc:creator>
		<pubDate>Thu, 18 Feb 2010 18:41:23 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-42020</guid>
		<description><![CDATA[Making playlists a &quot;simple&quot; script
(went away and figured it out myself with help from code snippets scattered around the interweb)

##################
#!/bin/bash
export IFS=$&#039;\n&#039;
for i in $(find $1 -name &quot;*.mp3&quot; -type f)
do 
echo &quot;$i&quot; &#124;sed &#039;s/..\(.*\)/\1/&#039; &gt;&gt; ${PWD##*/}.m3u
done

shuf ${PWD##*/}.m3u &gt; ${PWD##*/}2.m3u
shuf ${PWD##*/}2.m3u &gt; ${PWD##*/}.m3u
rm ${PWD##*/}2.m3u
###################

You can leave out the last three lines if you don&#039;t want to shuffle the list.

This can also be turned into a thunar custom action if you like that sort of thing :)]]></description>
		<content:encoded><![CDATA[<p>Making playlists a &#8220;simple&#8221; script<br />
(went away and figured it out myself with help from code snippets scattered around the interweb)</p>
<p>##################<br />
#!/bin/bash<br />
export IFS=$&#8217;\n&#8217;<br />
for i in $(find $1 -name &#8220;*.mp3&#8243; -type f)<br />
do<br />
echo &#8220;$i&#8221; |sed &#8216;s/..\(.*\)/\1/&#8217; &gt;&gt; ${PWD##*/}.m3u<br />
done</p>
<p>shuf ${PWD##*/}.m3u &gt; ${PWD##*/}2.m3u<br />
shuf ${PWD##*/}2.m3u &gt; ${PWD##*/}.m3u<br />
rm ${PWD##*/}2.m3u<br />
###################</p>
<p>You can leave out the last three lines if you don&#8217;t want to shuffle the list.</p>
<p>This can also be turned into a thunar custom action if you like that sort of thing <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jose Catre-Vandis</title>
		<link>http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-41992</link>
		<dc:creator><![CDATA[Jose Catre-Vandis]]></dc:creator>
		<pubDate>Tue, 16 Feb 2010 18:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/02/14/a-substitute-audio-player/#comment-41992</guid>
		<description><![CDATA[Really liking orpheus, not having all the bells and whistles that moc has but does the job nevertheless. I like the remote function too. Not sure how you would start it up in the background yet, but will figure that out.

Any easy way to make playlists from a folder/directory (without using a player to load and create? Thinking of a simple command line solution? (also to bear in mind that all my music is accessed remotely via nfs shares.]]></description>
		<content:encoded><![CDATA[<p>Really liking orpheus, not having all the bells and whistles that moc has but does the job nevertheless. I like the remote function too. Not sure how you would start it up in the background yet, but will figure that out.</p>
<p>Any easy way to make playlists from a folder/directory (without using a player to load and create? Thinking of a simple command line solution? (also to bear in mind that all my music is accessed remotely via nfs shares.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
