<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>exaile &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/exaile/</link>
	<description>Feed of posts on WordPress.com tagged "exaile"</description>
	<pubDate>Tue, 01 Dec 2009 08:46:09 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[mpg321]]></title>
<link>http://bleuwinter.wordpress.com/2009/11/28/mpg321/</link>
<pubDate>Sat, 28 Nov 2009 02:10:42 +0000</pubDate>
<dc:creator>Bleuwinter</dc:creator>
<guid>http://bleuwinter.wordpress.com/2009/11/28/mpg321/</guid>
<description><![CDATA[mpg321 is a command-line mp3 player. Why &amp; when to use it? * On old computers * If your GUI stop]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="separator" style="clear:both;text-align:center;">
<a href="http://i633.photobucket.com/albums/uu53/bleuwinter/mpg321.png" target="_blank"><img src="http://i633.photobucket.com/albums/uu53/bleuwinter/th_mpg321.png" border="0" alt="mp3,cli,Ubuntu,Linux"></a>
</div>
<p><span style="font-size:large;"><a href="http://mpg321.sourceforge.net/">mpg321</a></span> is a command-line mp3 player.</p>
<p><em>Why &#38; when to use it?</em><br />
* On old computers<br />
* If your <a href="http://en.wikipedia.org/wiki/Graphical_user_interface">GUI</a> stops working and you need some music while you are solving the problem<br />
* Play music from your server<br />
* Learn command line and practice it<br />
* For fun</p>
<p><em>How to install it on Ubuntu?:</em><br />
Open the Terminal (Applications → Accessories → Terminal) and type the following command: </p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 sudo apt-get install mpg321
</div>
<p>Key in <strong>Y</strong> and press <strong>Enter</strong> when you&#8217;re asked to install other required packages.</p>
<p><strong>How to use?</strong><br />
<em>Access the help menu: </em><br />
Open the Terminal (Applications → Accessories → Terminal) and type the following command:<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 --help</div>
<p></code></p>
<p>You will get a list of codes which you can use with mpg321.<br />
<code><br />
 --verbose or -v          Increase verbosity<br />
   --quiet or -q            Quiet mode (no title or boilerplate)<br />
   --gain N or -g N         Set gain (audio volume) to N (0-100)<br />
   --skip N or -k N         Skip N frames into the file<br />
   --verbose or -v          Be more verbose in playing files<br />
   -o dt                    Set output devicetype to dt<br />
                                [esd,alsa(09),arts,sun,oss]<br />
   --audiodevice N or -a N  Use N for audio-out<br />
   --stdout or -s           Use stdout for audio-out<br />
   --au N                   Use au file N for output<br />
   --cdr N                  Use wave file N for output<br />
   --wav N or -w N          Use wave file N for output<br />
   --test or -t             Test only; do no audio output<br />
   --list N or -@ N         Use playlist N as list of MP3 files<br />
   --random or -Z           Play files randomly until interrupted<br />
   --shuffle or -z          Shuffle list of files before playing<br />
   -R                       Use remote control interface<br />
   --aggressive             Try to get higher priority<br />
   --help or --longhelp     Print this help screen<br />
   --version or -V          Print version information<br />
</code></p>
<p>Example:</p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -q filename</div>
<p>This code allows you to play a song without any details.</p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -v filename</div>
<p>This code allows you to play a song with information of the file.</p>
<p>Of course it would be <em>ridiculous</em> to play music one by one file so we have to create <strong>playlists</strong>:</p>
<p>Open the Terminal (Applications → Accessories → Terminal) and type the following command:</p>
<p>(Find the location of your mp3 files by the command <strong>dir</strong>,<strong> cd</strong>, and <strong>cd..</strong>.)<br />
<em>dir</em> : Shows a list of all the files available in that directory<br />
<em>cd</em> <strong>folder</strong>: Goes to <strong>folder</strong> directory (Replace <strong>folder</strong> with the name of a folder that you want to access)<br />
<em>cd..</em> Goes to previous directory</p>
<p> Example: Your music is located in <em>/home/yourusername/Music</em> so you should type cd /home/yourusername/Music</p>
<p>Then, create a playlist of all songs in this folder:<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 ls *.mp3 &#62; playlist.txt</div>
<p></code></p>
<p>or create a playlist based on artist(Example <em>abz</em>)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 ls &#124; grep abz &#62; abzplaylist.txt</div>
<p></code><br />
*Tips: Replace <em>abz</em> with the artist name</p>
<p><strong>To play the playlist:</strong><br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 --list playlist.txt</div>
<p></code><br />
<strong>Play it randomly:</strong><br />
*Little shuffle mode (Plays every file once in a random order)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -z --list playlist.txt</div>
<p></code><br />
*Big shuffle mode (Plays a random file and then plays another random file. mpg321 will go on until you stop it.)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -Z *</div>
<p></code></p>
<p>Resources:<br />
<a href="http://commandline.org.uk/command-line/command-line-audio-players-mpg321-and-mpg123/">Command Line Warriors</a><br />
<a href="http://linuxdevcenter.com/pub/a/linux/2001/11/15/learnunixos.html">Linux Dev Center</a></p>
<p><strong>Its alternatives:</strong><br />
1. <a href="http://amarok.kde.org">Amarok </a>(If you&#8217;re using KDE/Kubuntu as it suites the theme and environment)<br />
2. <a href="http://www.getsongbird.com/">Songbird</a> &#8211; My favourite, read the <a href="http://bleuwinter.wordpress.com/2009/05/16/songbird-music-player/">review.</a><br />
3. <a href="http://audacious-media-player.org/">Audacious</a> &#8211; Lightweight and Winamp like, read the <a href="http://bleuwinter.wordpress.com/2009/11/27/audacious/">review.</a><br />
4. <a href="http://projects.gnome.org/rhythmbox/">Rhythmbox</a> &#8211; It comes pre-installed on Ubuntu<br />
5. <a href="http://www.listen-project.org/">Listen Audio Player</a><br />
6. <a href="http://www.exaile.org/">Exaile</a> &#8211; Music Player for GTK+<br />
7. <a href="http://banshee-project.org/">Banshee</a> &#8211; Play music and videos. Sync your ipod and G1.<br />
8. <a href="http://thekonst.net/en/orpheus">orpheus</a> &#8211; another <a href="http://en.wikipedia.org/wiki/Command-line_interface">Command-Line Interface(CLI)</a> audio player</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Audacious]]></title>
<link>http://bleuwinter.wordpress.com/2009/11/27/audacious/</link>
<pubDate>Fri, 27 Nov 2009 01:57:36 +0000</pubDate>
<dc:creator>Bleuwinter</dc:creator>
<guid>http://bleuwinter.wordpress.com/2009/11/27/audacious/</guid>
<description><![CDATA[Audacious: * Lightweight &amp; Simple * Multiple audio support * Old Winamp alike * Shorcuts similar]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="separator" style="clear:both;text-align:center;">
<a href="http://i633.photobucket.com/albums/uu53/bleuwinter/Audacious.png" target="_blank"><img src="http://i633.photobucket.com/albums/uu53/bleuwinter/th_Audacious.png" border="0" alt="Linux,Audio,Multimedia"></a></div>
<p><span style="font-size:large;"><a href="http://audacious-media-player.org/">Audacious:</a></span><br />
* Lightweight &#38; Simple<br />
* Multiple audio support<br />
* Old <a href="http://www.winamp.com/">Winamp</a> alike<br />
* Shorcuts similar as <a href="http://www.winamp.com/">Winamp</a><br />
* Streaming support &#38; more<br />
* Last.fm Scrobbling</p>
<p><em>To install it on Ubuntu:</em><br />
open the Terminal (Applications → Accessories → Terminal) and type the following command: </p>
<div style="border:1px dashed grey;height:20px;width:400px;">
sudo apt-get install audacious
</div>
<p>Key in <strong>Y</strong> and press <strong>Enter</strong> when you&#8217;re asked to install other required packages.</p>
<p><strong>Its alternatives:</strong><br />
1. <a href="http://amarok.kde.org">Amarok </a>(If you&#8217;re using KDE/Kubuntu as it suites the theme and environment)<br />
2. <a href="http://www.getsongbird.com/">Songbird</a> &#8211; My favourite, read the <a href="http://bleuwinter.wordpress.com/2009/05/16/songbird-music-player/">review.</a><br />
3. <a href="http://projects.gnome.org/rhythmbox/">Rhythmbox</a> &#8211; It comes pre-installed on Ubuntu<br />
4. <a href="http://www.listen-project.org/">Listen Audio Player</a><br />
5. <a href="http://www.exaile.org/">Exaile</a> &#8211; Music Player for GTK+<br />
6. <a href="http://banshee-project.org/">Banshee</a> &#8211; Play music and videos. Sync your ipod and G1.<br />
7. <a href="http://mpg321.sourceforge.net/">mpg321</a> &#8211; a <a href="http://en.wikipedia.org/wiki/Command-line_interface">Command-Line Interface(CLI)</a> audio player. Read the <a href="http://bleuwinter.wordpress.com/2009/11/28/mpg321/">review</a>.<br />
8. <a href="http://thekonst.net/en/orpheus">orpheus</a> &#8211; another <a href="http://en.wikipedia.org/wiki/Command-line_interface">Command-Line Interface(CLI)</a> audio player</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kohina: web radio di musica dei videogame anni '80]]></title>
<link>http://pimpmylinux.wordpress.com/2009/11/24/kohina-la-web-radio-per-gli-appassionati-di-816bit-music/</link>
<pubDate>Tue, 24 Nov 2009 10:17:24 +0000</pubDate>
<dc:creator>S.M.O.G.</dc:creator>
<guid>http://pimpmylinux.wordpress.com/2009/11/24/kohina-la-web-radio-per-gli-appassionati-di-816bit-music/</guid>
<description><![CDATA[Impazzite al ricordo di quelle belle colonne sonore che hanno accompagnato le ore di gioco della vos]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-1294" title="kohina" src="http://pimpmylinux.wordpress.com/files/2009/11/kohina.gif" alt="" width="229" height="18" />Impazzite al ricordo di quelle belle colonne sonore che hanno accompagnato le ore di gioco della vostra infanzia? Rivolete evocare i suoni di <a href="http://it.wikipedia.org/wiki/The_Legend_of_Zelda">Zelda</a> o di <a href="http://it.wikipedia.org/wiki/Golden_Axe">Golden Axe</a> ai tempi in cui<em> 5.1</em> e <em>dolby digital surround </em>erano parole assolutamente sconosciute?</p>
<div class="wp-caption alignright" style="width: 330px"><img title="Golden Axe" src="http://hardcoregaming101.net/goldenaxe/goldenaxe-amiga.png" alt="" width="320" height="193" /><p class="wp-caption-text">Golden Axe</p></div>
<p>Allora non potete perdervi <a href="http://www.kohina.com/index.html">Kohina</a>, la <a href="http://it.wikipedia.org/wiki/Webradio"><em>web-radio</em></a> che trasmette 24 ore su 24 <strong>musica di video giochi <em>old school</em></strong> campionati direttamente da macchine come il <a href="http://it.wikipedia.org/wiki/Commodore_64">C64</a>, l&#8217;<a href="http://it.wikipedia.org/wiki/Amiga">Amiga</a>, il <a href="http://it.wikipedia.org/wiki/Mega_drive">Sega Mega Drive</a> e molte altre console e pc dell&#8217;epoca&#8230;</p>
<p>Vi ho incuriosito vero? Bene!</p>
<p>Per ascoltare Kohina ci sono <strong>due possibilità</strong>:</p>
<ul>
<li>Direttamente dal browser (necessario Java abilitato)</li>
<li>Nel proprio player multimediale (in grado di scaricare streaming online)</li>
</ul>
<p><!--more-->Per ascoltare Kohina <strong>direttamente dal browser</strong> basta cliccare su <a href="http://rob.kohina.net/javastream">questo link</a>, dopo essersi accertati di avere Java abilitato.</p>
<p style="text-align:left;">Per ascoltare lo stream <strong>riprodotto dal proprio player multimediale</strong> (<a href="http://amarok.kde.org/">Amarok</a>, <a href="http://www.exaile.org/">Exaile</a>, <a href="http://projects.gnome.org/rhythmbox/">Rhythmbox</a>, <a href="http://www.microsoft.com/windows/windowsmedia/player/11/default.aspx">Windows Media Player</a>,&#8230;) basta scaricare uno degli stream presenti nel <a href="http://www.kohina.com/index.html">sito di Kohina</a> (scegliete fra quelli a 64bit se la vostra connessione è lenta, uno degli gli altri altrimenti) e aprire il file <a href="http://it.wikipedia.org/wiki/M3U">playlist .m3u</a> scaricato con il proprio player.</p>
<p style="text-align:left;">Se doveste avere problemi non esitate a commentare, e non mi resta che augurarvi <strong>buon ascolto</strong>!</p>
<div class="wp-caption aligncenter" style="width: 393px"><img class=" " title="Maniac" src="http://archive.64bits.se/guider/scummvm/maniac_mansion_dungeon.png" alt="" width="383" height="239" /><p class="wp-caption-text">Maniac Mansion</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DoubanCovers has been merged into Exaile-cn]]></title>
<link>http://sunngy.wordpress.com/2009/11/10/doubancovers-has-been-merged-into-exaile-cn/</link>
<pubDate>Tue, 10 Nov 2009 02:17:59 +0000</pubDate>
<dc:creator>sunngy</dc:creator>
<guid>http://sunngy.wordpress.com/2009/11/10/doubancovers-has-been-merged-into-exaile-cn/</guid>
<description><![CDATA[既然是exaile-cn，就不扯蹩脚的英语了。 前天和Exaile-cn的作者进行了一些沟通，现在DoubanCovers插件已经合并到Exaile-CN项目里了。Exaile-CN为Exaile提供]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>既然是exaile-cn，就不扯蹩脚的英语了。</p>
<p>前天和Exaile-cn的作者进行了一些沟通，现在DoubanCovers插件已经合并到Exaile-CN项目里了。<a href="http://code.google.com/p/exaile-cn/">Exaile-CN</a>为Exaile提供符合中文用户习惯的一系列插件，包括歌词插件、迷你模式等。</p>
<p>As exaile-cn has not been adapted to exaile 0.3, the plugin will not be packaged into public release at once. if you use svn, you can checkout the plugin from branch:<br />
<em>svn checkout http://exaile-cn.googlecode.com/svn/branches/0.3/</em></p>
<p>For a ready to use package, download from here as mentioned before:<br />
<a href="http://bitbucket.org/sunng/exailedoubancovers/downloads/">http://bitbucket.org/sunng/exailedoubancovers/downloads/</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OSD Lyrics su Ubuntu/Kubuntu Karmic Koala]]></title>
<link>http://lumacher.wordpress.com/2009/11/06/osd-lyrics-su-ubuntukubuntu-karmic-koala/</link>
<pubDate>Fri, 06 Nov 2009 21:42:25 +0000</pubDate>
<dc:creator>furetta88</dc:creator>
<guid>http://lumacher.wordpress.com/2009/11/06/osd-lyrics-su-ubuntukubuntu-karmic-koala/</guid>
<description><![CDATA[OSD Lyrics è un nuovo progetto in launchpad che permette la visualizzazione del testo della canzone ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>OSD Lyrics è un nuovo progetto in launchpad che permette la visualizzazione del testo della canzone ascoltata direttamente nella scrivania, una specie di karaoke che fa scorrere il testo man mano che il brano musicale viene eseguito</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-359" title="osd" src="http://lumacher.wordpress.com/files/2009/11/osd.png" alt="osd" width="423" height="96" /></p>
<p>Per l&#8217;installazione basta aggiungere i repository launchpad del progetto, quindi eseguiamo in un terminale il comando:</p>
<pre>sudo gedit /etc/apt/sources.list</pre>
<p>(su kubuntu sostituite gedit con kate) e nella finestra di testo che si apre aggiungiamo alla fine i repository:</p>
<p><em>deb http://ppa.launchpad.net/osd-lyrics/ppa/ubuntu karmic main<br />
deb-src http://ppa.launchpad.net/osd-lyrics/ppa/ubuntu karmic main</em></p>
<p>salvate il documento e sempre al terminale aggiungiamo la key pgp per l&#8217;accesso:</p>
<p><em>sudo add-apt-repository ppa:osd-lyrics/ppa</em></p>
<p>lasciamo lavorare il terminale e una volta importata la chiave aggiorniamo il sistema e installiamo il programma:</p>
<p><em>sudo apt-get update &#38;&#38; sudo apt-get install osdlyrics</em></p>
<p>quando ha finito il terminale chiudiamolo.</p>
<p>Il programma si trova su <em>Applicazioni&#62;&#62;Audio e Video</em> e una volta lanciato si posiziona sulla  tray ed è possibile configurarlo in vari modi. Per il momento dispone di due motori di ricerca canzoni(sogou e quianquian) ma altri ne verranno implementati nel futuro e supporta i seguenty player:</p>
<p>Amarok 1.4(con uso cpu elevato)</p>
<p>Amarok 2.0</p>
<p>Banshee</p>
<p>Audacious</p>
<p>Exaile</p>
<p>Rhythmbox</p>
<p><strong><br />
</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Karmic Koala (Kubuntu e Xubuntu 9.10): prova su strada]]></title>
<link>http://linuxbyprofkoji.wordpress.com/2009/11/05/karmic-koala-kubuntu-e-xubuntu-9-10-prova-su-strada/</link>
<pubDate>Thu, 05 Nov 2009 11:57:41 +0000</pubDate>
<dc:creator>profkoji</dc:creator>
<guid>http://linuxbyprofkoji.wordpress.com/2009/11/05/karmic-koala-kubuntu-e-xubuntu-9-10-prova-su-strada/</guid>
<description><![CDATA[Ubuntu nelle sue diverse varianti (Kubuntu e Xubuntu le più note) è senza dubbio la distribuzione GN]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ubuntu nelle sue diverse varianti (Kubuntu e Xubuntu le più note) è senza dubbio la distribuzione GNU/Linux che ha fatto più proseliti, soprattutto tra i newbie, per la sua estrema semplicità d&#8217;uso e per il suo &#8220;parco&#8221; software vastissimo.</p>
<p>Per Kubuntu potete visitare  il <a href="http://www.kubuntu.org/news/9.10-release" target="_blank">sito</a> dove è postato l&#8217;annuncio ufficiale di rilascio ed un (<a href="http://www.seoexpertconsultants.com/index.php?linux&#38;release=Kubuntu%209.10" target="_blank">breve tour</a>) che illustra le caratteristiche salienti di questa versione. Il sito per il download è <a href="http://www.kubuntu.org/getkubuntu" target="_blank">questo</a>.</p>
<p>In modo simile anche per Xubuntu potete leggere <a href="http://www.xubuntu.org/news/9.10-release" target="_blank">l&#8217;annuncio</a>, visualizzare un breve <a href="http://www.seoexpertconsultants.com/index.php?linux&#38;release=Xubuntu%209.10" target="_blank">tour grafico</a> e quindi passare al <a href="http://www.xubuntu.org/get" target="_blank">download</a>.</p>
<p>Su Kubuntu in versione live vengono riconosciute e montate le eventuali partizioni windows presenti, così fin da subito si ha la possibilità di aprire i propri file per testare le applicazioni presenti in questa distribuzione, non invece su Xubuntu.</p>
<p>La scelta di Kubuntu è adatta all&#8217;utente che sa quello che fa, quella di Xubuntu è invece adatta all&#8217;utente che preferisce non correre il rischio di rovinare il file system preesistente sul pc.</p>
<p>Dopo una rapida &#8220;esplorazione&#8221; ci si renderà conto che non è possibile visualizzare correttamente siti con contenuto flash, come ad esempio <a href="http://www.youtube.com" target="_blank">YouTube</a>, e nemmeno potersi godere i propri file musicali ed i propri filmati.</p>
<p>Karmic Koala infatti non include i principali codecs audio e video (nemmeno flash) e nemmeno driver proprietari, quali ad esempio quelli della scheda video.</p>
<p>Ciò potrebbe far scoraggiare l&#8217;utente che sia avvicina per la prima volta al mondo GNU/Linux, ma occorre sottolineare che bastano pochi interventi perché Karmic Koala diventi perfettamente &#8220;usabile&#8221;.</p>
<p>I filmati che vi propongo servono soltanto a mostrare l&#8217;impatto visivo di queste due distribuzioni e fare una carrellata dei principali software che mettono fin da subito a disposizione.</p>
<p>Le durate dei filmati non corrispondono a quelle reali, infatti prima di postarli ho preferito cancellare i &#8220;tempi morti&#8221; di durata eccessiva, anche perché per la registrazione mi sono servito di macchine virtuali che non emulano a dovere le caratteristiche hardware dei pc in circolazione.</p>
<p><strong>Kubuntu</strong></p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/3jFS9wqNRss&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/3jFS9wqNRss&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>L&#8217;ambiente desktop è KDE 4.3.2 ed il kernel 2.6.31.14.generic.</p>
<p>Ecco una breve rassegna dei software inclusi (cito solo quelli di uso più comune):</p>
<ul>
<li><strong>navigazione web:</strong> Konqueror</li>
<li><strong>posta elettronica:</strong> KMail</li>
<li><strong>chat:</strong> Kopete, Quassel IRC</li>
<li><strong>torrent:</strong> KTorrent</li>
<li><strong>ufficio:</strong> OpenOffice.org,  Okular (visore di svariati tipi di documenti)</li>
<li><strong>grafica:</strong> Gwenview (viewer)</li>
<li><strong>audio:</strong> Amarok</li>
<li><strong>video:</strong> Dragon Player</li>
<li><strong>CD burning:</strong> K3b</li>
<li><strong>navigazione file:</strong> Dolphin</li>
</ul>
<p><strong>Xubuntu</strong></p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/yGohnL9Uvnw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/yGohnL9Uvnw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>L’ambiente desktop è Xfce 4.6.1 ed il kernel è 2.6.31-14-generic</p>
<p>Ecco una breve rassegna dei software inclusi (cito solo quelli di uso più comune):</p>
<ul>
<li><strong>navigazione web:</strong> Firefox</li>
<li><strong>posta elettronica:</strong> Thunderbird</li>
<li><strong>chat:</strong> Pidgin, XChat IRC</li>
<li><strong>torrent:</strong> Transmission</li>
<li><strong>ufficio:</strong> Abiword, Gnumeric</li>
<li><strong>grafica:</strong> Ristretto (viewer), Gimp (editor)</li>
<li><strong>audio:</strong> Exaile</li>
<li><strong>video:</strong> Totem</li>
<li><strong>CD burning:</strong> Brasero</li>
<li><strong>navigazione file:</strong> Thunar</li>
</ul>
<p>Gli altri programmi possono essere scaricati ad installazione ultimata.</p>
<p>Kubuntu e Xubuntu sono senza dubbio delle ottime distribuzioni (adatte soprattutto a chi proviene da windows) e le consiglio caldamente. Da quanto vi ho appena descritto, è chiaro che un intervento, seppur minimo, dell&#8217;utente è richiesto perché il sistema si adatti alle nostre esigenze.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[emesene: no muestra "lo que estoy escuchando" en Exaile]]></title>
<link>http://iloo.wordpress.com/2009/10/31/emesene-no-muestra-lo-que-estoy-escuchando-en-exaile/</link>
<pubDate>Sun, 01 Nov 2009 00:28:23 +0000</pubDate>
<dc:creator>Howar Rasguido</dc:creator>
<guid>http://iloo.wordpress.com/2009/10/31/emesene-no-muestra-lo-que-estoy-escuchando-en-exaile/</guid>
<description><![CDATA[Anteriormente no tenía este problema, pero al instalar Ubuntu Karmic Koala 9.10 instale emesene 1.5 ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-169" title="emesene-logo" src="http://iloo.wordpress.com/files/2009/10/emesene-logo.png" alt="emesene-logo" width="96" height="96" /></p>
<p>Anteriormente no tenía este problema, pero al instalar U<strong>buntu Karmic Koala 9.10</strong> instale <a href="http://www.emesene.org/" target="_blank">emesene </a>1.5 y <a href="http://www.exaile.org/" target="_blank">Exaile</a> 0.3.0.1 todo perfecto hasta el momento de activar el complemento <strong>CurrentSong</strong>, la cosa es que emesene no mostraba la canción que se estaba reproduciendo en Exaile.</p>
<p>El tema fue revisar primero las propiedades del complemente y en la sección <strong>Estado</strong> debería decir <strong>ejecutándose</strong> (como se ve en la imagen), pero no era así.</p>
<p><img class="aligncenter size-full wp-image-170" title="emesene2" src="http://iloo.wordpress.com/files/2009/10/emesene2.png" alt="emesene2" width="336" height="513" /></p>
<p>Buscando un rato encontré la solución en el<a href="http://forum.emesene.org/index.php/topic,2327.0.html" target="_blank"> foro</a> de emesene, aqui el resumen:</p>
<p>1. Descargamos el siguiente archivo: <a href="http://forum.emesene.org/index.php?action=dlattach;topic=2327.0;attach=1336">currentSong-Exaile.diff</a> (del foro de emesene, necesitas estar registrado) o de <a href="http://klurk.com/files/FGUVCIEM/currentSong-Exaile.diff" target="_blank">currentSong-Exaile.diff</a> (servidores como mu, rp, etc)</p>
<p>2. Cerramos exaile y emesene.</p>
<p>3. Aplicamos el parche, desde consola:</p>
<p>Ingresamos hasta la la ubicación del archivo y hacemos esto:</p>
<blockquote><p>patch /usr/share/emesene/plugins_base/currentSong/Exaile.py currentSong-Exaile.diff</p></blockquote>
<p>Con esto ya debería estar funcionando correctamente.</p>
<p><img class="aligncenter size-full wp-image-171" title="emesene1" src="http://iloo.wordpress.com/files/2009/10/emesene1.png" alt="emesene1" width="378" height="636" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Giudizi sui player audio in ambito Linux (Ottobe 2009)]]></title>
<link>http://slaykristian.wordpress.com/2009/10/21/giudizi-sui-player-audio-in-ambito-linux-ottobe-2009/</link>
<pubDate>Wed, 21 Oct 2009 14:31:58 +0000</pubDate>
<dc:creator>slaykristian</dc:creator>
<guid>http://slaykristian.wordpress.com/2009/10/21/giudizi-sui-player-audio-in-ambito-linux-ottobe-2009/</guid>
<description><![CDATA[Ascoltare la musica sulla propria distro è una cosa penso condivisa da tutti gli amanti del pinguino]]></description>
<content:encoded><![CDATA[Ascoltare la musica sulla propria distro è una cosa penso condivisa da tutti gli amanti del pinguino]]></content:encoded>
</item>
<item>
<title><![CDATA[Lyrics screenlet 0.5.8]]></title>
<link>http://elsoftwarelibre.wordpress.com/2009/10/13/lyrics-screenlet-0-5-8/</link>
<pubDate>Tue, 13 Oct 2009 03:49:41 +0000</pubDate>
<dc:creator>Soft-Libre</dc:creator>
<guid>http://elsoftwarelibre.wordpress.com/2009/10/13/lyrics-screenlet-0-5-8/</guid>
<description><![CDATA[Agrandar Lyrics screenlet, es un screenlet que nos permitirá visualizar, en tiempo real, la letra de]]></description>
<content:encoded><![CDATA[Agrandar Lyrics screenlet, es un screenlet que nos permitirá visualizar, en tiempo real, la letra de]]></content:encoded>
</item>
<item>
<title><![CDATA[GIO tutorial: file operations]]></title>
<link>http://sjohannes.wordpress.com/2009/10/10/gio-tutorial-file-operations/</link>
<pubDate>Sat, 10 Oct 2009 18:21:31 +0000</pubDate>
<dc:creator>Johannes</dc:creator>
<guid>http://sjohannes.wordpress.com/2009/10/10/gio-tutorial-file-operations/</guid>
<description><![CDATA[Recently I ported Exaile&#8217;s Files panel to use GIO instead of Python&#8217;s os module. Why? Si]]></description>
<content:encoded><![CDATA[Recently I ported Exaile&#8217;s Files panel to use GIO instead of Python&#8217;s os module. Why? Si]]></content:encoded>
</item>
<item>
<title><![CDATA[Exaile music manager for ubuntu]]></title>
<link>http://ubuntuxpress.wordpress.com/2009/10/07/exaile-music-manager-for-ubuntu/</link>
<pubDate>Wed, 07 Oct 2009 08:12:52 +0000</pubDate>
<dc:creator>vinutux</dc:creator>
<guid>http://ubuntuxpress.wordpress.com/2009/10/07/exaile-music-manager-for-ubuntu/</guid>
<description><![CDATA[Exaile music manger running in ubuntu 9.04 Exaile is very light weight music manager. it is a music ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" src="http://ubuntuxpress.wordpress.com/files/2009/10/exaile-0-3.jpg" alt="exaile 0.3" width="450" height="337" /></p>
<p style="text-align:center;">Exaile music manger running in ubuntu 9.04</p>
<p style="text-align:center;">
<p>Exaile is very light weight music manager. it is a music player that aims to be similar to Amarok, but for GTK+. It use very low resources compared to other music players like Rhythmbox, banshee, Amarok and songbird. It written in python.</p>
<p>Features&#8230;</p>
<p>1. Automatic fetching of album art</p>
<p>2. Handling of large libraries</p>
<p>3. Lyrics fetching</p>
<p>4.  Artist/album information via Wikipedia</p>
<p>5. Last.fm support</p>
<p>6. Editing audio tags and set ratings</p>
<p>7. portable media players support</p>
<p>8. Context view</p>
<p>9. Internet radio and podcasting support</p>
<p>10. stream ripper</p>
<p>11. Desktop cover</p>
<p>12. Moodbar</p>
<p>Installation is very simple under ubuntu as usual&#8230;.</p>
<blockquote><p>in terminal type   <span style="color:#ffff00;"><em> sudo apt-get install exaile</em></span></p>
<p><em><strong><br />
</strong></em></p></blockquote>
<p>or install it from Synaptic or add/remove&#124; ubuntu software center.</p>
<p><strong>Latest Builds available from developer PPA</strong> :<a href="https://launchpad.net/~exaile-devel/+archive/ppa"> https://launchpad.net/~exaile-devel/+archive/ppa</a></p>
<p><span style="color:#99cc00;">Home page</span> : <a href="http://www.exaile.org/">http://www.exaile.org/</a></p>
<p><!-- AddThis Button BEGIN --></p>
<div><a title="Bookmark and Share" href="http://www.addthis.com/bookmark.php?v=250&#38;pub=xa-4ac2661d1f4ecc66" target="_blank"><img class="aligncenter" src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" alt="Bookmark and Share" width="125" height="16" /></a></div>
<p><!-- AddThis Button END --></p>
<p>&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Yeni Exaile 3]]></title>
<link>http://prokaryot.wordpress.com/2009/10/01/yeni-exaile-3/</link>
<pubDate>Thu, 01 Oct 2009 10:39:04 +0000</pubDate>
<dc:creator>prokaryot</dc:creator>
<guid>http://prokaryot.wordpress.com/2009/10/01/yeni-exaile-3/</guid>
<description><![CDATA[Not: Şu an exaile&#8217;in 0.2.14 sürümüne geri dönmüş bulunuyorum. Bunun nedeni 3. sürümün bana gör]]></description>
<content:encoded><![CDATA[Not: Şu an exaile&#8217;in 0.2.14 sürümüne geri dönmüş bulunuyorum. Bunun nedeni 3. sürümün bana gör]]></content:encoded>
</item>
<item>
<title><![CDATA[Using Ex Falso from Exaile]]></title>
<link>http://sjohannes.wordpress.com/2009/09/25/using-ex-falso-from-exaile/</link>
<pubDate>Fri, 25 Sep 2009 09:44:30 +0000</pubDate>
<dc:creator>Johannes</dc:creator>
<guid>http://sjohannes.wordpress.com/2009/09/25/using-ex-falso-from-exaile/</guid>
<description><![CDATA[Many Exaile users like Ex Falso, which is one of the most comprehensive tag editors in the GTK+ land]]></description>
<content:encoded><![CDATA[Many Exaile users like Ex Falso, which is one of the most comprehensive tag editors in the GTK+ land]]></content:encoded>
</item>
<item>
<title><![CDATA[Replacing KDE applications]]></title>
<link>http://linuxcritic.wordpress.com/2009/09/22/replacing-kde-applications/</link>
<pubDate>Tue, 22 Sep 2009 16:10:00 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid>http://linuxcritic.wordpress.com/2009/09/22/replacing-kde-applications/</guid>
<description><![CDATA[Those of you who have been following my Linux Critic blog know that I&#8217;ve been on an app-hunt t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Those of you who have been following my Linux Critic blog know that I&#8217;ve been on an app-hunt to replace some of the applications to which I&#8217;ve grown used to in KDE, mostly so that I can break my ties with that desktop and move forward completely without it.  So far I&#8217;ve had some measure of success in this task, so I thought I&#8217;d do a writeup in case anyone else out there is moving on from KDE and needs some ideas about how to do that.</p>
<p><!--more--></p>
<h3>Finding replacement apps: It&#8217;s like switching from Windows to Linux all over again</h3>
<p>It feels like I just did this, even though I&#8217;ve been running Linux as my primary OS since around 2002.  When I decided to stop using KDE recently, I was surprised to find how many KDE applications on which I had become dependent, and how little idea I had what to use as alternatives.  Some of them are little and therefore easily replaced, but others that are more full-featured have been quite a challenge.  Here&#8217;s a sampling of the ones I&#8217;ve been working on lately.</p>
<h4>Konqueror File Manager</h4>
<p>This one is quite possibly the hardest one I&#8217;ve had to replace.  Anyone out there who has grown accustomed to the power and flexibility of <a href="http://en.wikipedia.org/wiki/Konqueror#File_manager" target="_blank">Konqueror File Manager</a> can attest that it&#8217;s very difficult to settle on something else once you&#8217;ve used it for any length of time.</p>
<p>Fortunately for me, there are many file managers out there for Linux, so I had options a-plenty, but none quite so robust as Konqueror, so I simply found that I had to compromise a number of things in the process.  In the end, no single file manager fit my needs, so I replaced Konqueror with two: <a href="http://en.wikipedia.org/wiki/Thunar" target="_blank">Thunar</a> and <a href="http://roland65.free.fr/xfe/" target="_blank">XFE</a>.  I chose these two ultimately because they both have a tree-view in the left-pane and a folder/file view in the right-pane, and they both let you type your path into an address/location bar instead of clicking through a bunch of breadcrumbs (I hate file managers that only give you breadcrumbs).</p>
<p>Thunar is pretty, and simple, and has some nice features like thumbnail previews of image files, and it&#8217;s very lightweight when compared to Konqueror (but face it, just about ANY file manager is lightweight when compared to Konqueror).  For most file management tasks, Thunar does pretty well, with the only thing I really miss out of it being the lack of tabs.  One complaint I have about Thunar is that there doesn&#8217;t seem to be a way to turn <b>off</b> the stupid delete confirmation dialogue.</p>
<p>Really?  Seriously?  I know that shouldn&#8217;t drive me nuts, but come on.  It makes me feel like I&#8217;m using <a href="http://www.annoyances.org/exec/show/article01-006" target="_blank">Windows 98</a> again.  In fact, in my testing, I also gave <a href="http://en.wikipedia.org/wiki/PCManFM" target="_blank">PCManFM</a> a try, and that one even has tabs&#8230; but it too had no way to disable the delete confirmation dialogue.</p>
<p>I have what I consider to be very simple tests to determine whether a file manager doesn&#8217;t suck, and this is one of them.  It&#8217;s not a complicated thing. </p>
<p>So, when I get tired of that particular FAIL in Thunar, I switch to XFE.  XFE is lightning fast, very Konqueror-like in its flexibility and power, but it has a couple of annoyances as well.  XFE also doesn&#8217;t have tabs, but I discovered that pretty much everywhere, and I can live with that if I have to, but some basic behavior in XFE bugs me.</p>
<p>Example: You just copied a bunch of files into the clipboard and you navigate to the folder into which you wish to paste them.  If that folder is full, anywhere you right-click to paste just shows the context-menu for the file in that spot.  Basically put, if there&#8217;s no white space for you to right-click on, there&#8217;s no way to paste into that folder, aside from going up a level and right-clicking ON that folder and selecting paste.</p>
<p>Like the delete confirmation stupid I mentioned above, this is a little thing that should not bother me that much, but it does.  I found myself getting burned by this simple behavior time and time again, and it eventually frustrates me and slows me down so much (I&#8217;m used to flying through file management tasks with Konqueror) that I close XFE and go back to Thunar.</p>
<p>I actually really <b>like</b> XFE in nearly every other way&#8230; the fact that it has an integrated editor (&#8220;xfw&#8221;) and the myriad configuration options in the &#8220;Preferences&#8221; give me lots of ways to make it do what I want it to do.</p>
<p>However, I have discovered, unsurprisingly, that replacing Konqueror is a tough task.  In the end, what I have is a pair of applications (Thunar and XFE) that I alternate between based on whichever one happens to be annoying me the most at any given time.  This may change down the road, of course.  Maybe Thunar will end up with tabs and a way to shut off the &#8220;HAY STUPID, ARE YOU SURE YOU WANT TO DELEET THAT?&#8221; dialogue, and maybe the XFE devs will make some of its rather counter-intuitive behavior here and there (like I described above with copying and pasting) go away.  Or, maybe some friendly reader here will pipe in and say &#8220;hey!  Why don&#8217;t you try $XYZ?  It&#8217;s just like Konqueror, but BETTER!&#8221; and suggest something that I never ran across that is a critic&#8217;s dream of a file manager.  Who knows?</p>
<h4>Kontact</h4>
<p>I&#8217;ve <a href="http://linuxcritic.wordpress.com/2009/09/11/moving-from-kontact-to-thunderbird/" target="_blank">written on switching to Thunderbird</a> before, but I felt it relevant to mention it here, given the rest of the discusssion.</p>
<p><a href="http://en.wikipedia.org/wiki/Kontact" target="_blank">Kontact</a> is a full-featured &#8220;personal information manager&#8221;, not just a mail client.  The only other all-in-one such app that does everything that Kontact does out-of-the-box that I found in the open source universe was <a href="http://en.wikipedia.org/wiki/Evolution_software" target="_blank">Evolution</a>, and my recent experiences with Evolution have been less than happy, so I looked elsewhere.  What I discovered was that <a href="http://www.mozillamessaging.com/en-US/thunderbird/" target="_blank">Thunderbird</a> had improved quite a bit over the past few years since I last tried it, and since there are more add-ons for it than you can shake a proverbial stick at, I thought that I might be able to get it to do at least a few of the things I wanted, namely Google calendaring and tasks on top of just POP mail.</p>
<p>I was right.  With the <a href="http://www.mozilla.org/projects/calendar/lightning/" target="_blank">Lightning</a> add-on, I had a really nice integrated calendar, and I found out that it can talk to Google for calendaring (which is one up on Kontact&#8230; I had to do some <a href="http://www.linux.com/archive/feature/122054" target="_blank">pretty goofy stuff</a> to get Kontact to do that even in a half-assed fashion, as opposed to Thunderbird with Lightning, a &#8220;full-assed&#8221; solution).</p>
<p>So for me anyway, Thunderbird with one simple add-on was enough for me to replace Kontact.  It&#8217;s a solid mail client, and installing one add-on didn&#8217;t impact its performance by any measurable amount, and it added some great calendaring functionality, so I&#8217;m pretty happy with the results of this alternative.</p>
<h4>Amarok</h4>
<p><a href="http://en.wikipedia.org/wiki/Amarok_(software)" target="_blank">Amarok</a>, like Konqueror, was another hard one to replace.  While there are tons of open source music player applications out there, most of them are pretty feature-light.  In fact, most of the ones I tested that liked to pretend to be &#8220;full featured&#8221; turned out to be less usable than even the lightweight <a href="http://en.wikipedia.org/wiki/XMMS" target="_blank">XMMS</a>.  While there&#8217;s nothing <i>wrong</i> with XMMS, when you compare it to Amarok, it&#8217;s like comparing a compact economy car to a Cadillac.  Yes, both will get you to where you&#8217;re going and they both do their stated job well, but when you&#8217;re used to the Cadillac, going to the compact economy car will leave you feeling short-changed.</p>
<p>So I tried a fair number of music players out there, including (but not limited to) <a href="http://www.getsongbird.com/" target="_blank">Songbird</a>, <a href="http://banshee-project.org/" target="_blank">Banshee</a>, <a href="http://www.gnome.org/projects/rhythmbox/" target="_blank">Rhythmbox</a>, and <a href="http://audacious-media-player.org/" target="_blank">Audacious</a>, and found that none of them were an adequate replacement for Amarok.  I&#8217;d almost given up, but I had one more to try, and I&#8217;m glad I did try it.  That one was <a href="http://www.exaile.org/" target="_blank">Exaile</a>.</p>
<p>Exaile is practically a <a href="http://en.wikipedia.org/wiki/Gtk%2B" target="_blank">GTK+</a> implementation of Amarok, it&#8217;s so close in form and function.  It organizes your music library with a simple tree on the left, has an integrated album cover manager, sane buttons for controls, a big queue list that can be loaded simply by right-clicking on an artist, album, or song and selecting &#8220;append to current&#8221;, and the ability to create playlists very quickly and easily.</p>
<h4>K3b</h4>
<p>I haven&#8217;t found a replacement for <a href="http://en.wikipedia.org/wiki/K3b" target="_blank">K3b</a> yet.  <a href="http://en.wikipedia.org/wiki/Brasero_(software)" target="_blank">Brasero</a> is the one people always suggest, but I just find it a lot less intuitive than K3b.  I can live with it, I suppose, but I&#8217;m still in the process of searching when it comes to DVD/CD burning.</p>
<h4>Quanta</h4>
<p>Like K3b, I haven&#8217;t found a replacement for <a href="http://en.wikipedia.org/wiki/Quanta_Plus" target="_blank">Quanta</a> yet.  <a href="http://en.wikipedia.org/wiki/Bluefish_(text_editor)" target="_blank">Bluefish</a> is the one everyone suggests as an alternative to Quanta, but there really is no comparison.  Granted, I don&#8217;t do a huge amount of web authoring, but I have grown very attached to Quanta for writing my Linux Critic articles, since I prefer to just write in straight-up HTML rather than use the <a href="http://en.wikipedia.org/wiki/Wysiwyg" target="_blank">WYSIWYG</a> editor in WordPress, and Bluefish doesn&#8217;t even come close to making that process as fast and as slick as Quanta does.  So I&#8217;m still looking in this particular department as well.</p>
<h3>A resource I need to use more</h3>
<p>One thing I should mention, for anyone else out there that is also going through something similar, is a great place on the web to find alternates to various applications.  <a href="http://www.osalt.com">Osalt.com</a> has a huge list of applications to suggest if one is looking for another option for anything.</p>
<p>For example, just digging around a bit to look for Quanta alternatives yields <a href="http://www.osalt.com/quanta" target="_blank">this page</a> which lists a fair number of applications I still have yet to try, so obviously I need to spend more time on that site in my endeavoring to replace KDE applications.</p>
<p>I&#8217;ll write up an update if or when I make any more progress in this task!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rhythmbox vs. Banhsee vs. Exaile &#124;&#124; 3. Bölüm]]></title>
<link>http://zelku.wordpress.com/2009/09/19/rhythmbox-vs-banhsee-vs-exaile-3-bolum/</link>
<pubDate>Sat, 19 Sep 2009 12:10:33 +0000</pubDate>
<dc:creator>Zelku</dc:creator>
<guid>http://zelku.wordpress.com/2009/09/19/rhythmbox-vs-banhsee-vs-exaile-3-bolum/</guid>
<description><![CDATA[Exaile &#8211; http://exaile.org || Ekran Görüntüleri Exaile AmaroK&#8217;un Gnome sürümü gibi birşe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><strong>Exaile &#8211; </strong><a href="http://exaile.org/" target="_blank">http://exaile.org</a> &#124;&#124; <a href="http://exaile.org/screens" target="_blank">Ekran Görüntüleri</a></p>
<p style="text-align:justify;">Exaile AmaroK&#8217;un Gnome sürümü gibi birşey olmuş diyebilir miyim bilmiyorum ama AmaroK&#8217;a benzer bir görünümle geldiğini söyleyebilirim. Sol menüsü AmaroK&#8217;u oldukça andırıyor ve şarkıcı isimleri listeleniyor.  Birden fazla sekmede farklı çalma listeleri açıp , aralarında rahatlıkla gezebiliyorum.</p>
<p style="text-align:justify;">Sütunlara sağ tıklayıp , şarkıya ait istediğimiz özellikleri seçerek görüntüleyebiliyorum.<strong> Location</strong>&#8216;ı tıklayıp , şarkıları yine dosya yollarına göre sıralıyorum. Ancak bu işlem sırasında bilgisayar sanki biraz kasıldı gibime geldi.</p>
<p style="text-align:justify;">AudioScrobbler eklentisi sayesinde Last.fm ile bağlantı kurup , dinlediğim şarkıları Last.fm&#8217;e gönderebiliyorum. Bunun için Düzenle &#8211;&#62; Tercihler &#8211;&#62; Plugins&#8217;den AudioScrobbler&#8217;ı etkin hale getiriyorum ve Plugins&#8217;in hemen alt menüsünde beliren AudioScrobbler bölümünden Last.fm ayarlarımı yapıyorum.</p>
<p style="text-align:justify;">Rhythmbox ve Banshee&#8217;de üstte görmeye alıştığım arama bölümü çalma listesinin altında karşılıyor beni. Diğer müzik çalarlarda üste bakmaya alıştığımdan , ilk etapta bulması zaman aldı açıkçası. Ayrıca arama özelliği yeterince hızlı.</p>
<p style="text-align:justify;">Exaile&#8217;da şarkı sözü eklentisi mevcut olsa da , etkinleştirdikten sonra şarkı sözlerine nasıl ulaşabileceğimi bir türlü bulamadım. O yüzden bundan yarım puan kırıyorum sadece. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:justify;">Exaile&#8217;da çeşitli çalma listeleri mevcut ve kendim de yeni listeler ekleyebiliyorum. En çok ilgimi çeken liste ise , medya kütüphanesinden gelişigüzel seçtiği 500 şarkıyı koyduğu liste. Sıkıldığımda ya da ne dinleyeceğinizi bilemediğim zamanlarda kullanışlı olabilir.</p>
<p style="text-align:justify;">Programda herhangi bir auto-tag özelliği bulunmamakla birlikte , kendim de toplu şekilde sanatçı adı gibi id-tagları toptan düzenleyemiyorum. Sadece tek tek düzenlemeye izin veriyor program.</p>
<p style="text-align:justify;">Yeni eklediğim dosyalarım içinse <strong>Araçlar</strong> menüsünün altında <strong>Rescan Collection</strong> özelliği bulunmakta. Bu sayede klasöre yeni attığım dosyaları bir daha Exaile&#8217;a ekleme zahmetine girmemiş oluyorum.</p>
<p style="text-align:justify;">Exaile için <strong>Puanım : 7/10</strong></p>
<p style="text-align:justify;"><strong>Sonuç</strong></p>
<p style="text-align:justify;">Rhythmbox şu an için en iyi müzik çalar gibi görünüyor. Banshee&#8217;den ayrıldığı nokta ise Şarkı Sözü eklentisi. Yoksa ikisi de benzer şeyleri yapıyor. Hatta Banshee video da oynatabiliyor sanırım ama ben sadece müzik çalar yönlerine baktığım için Rhythmbox ön plana çıktı. Exaile ise benim için oldukça kullanışsız ve bilgisayarı ağırlaştırdığı durumlar oluyor.</p>
<p style="text-align:justify;">Ve <strong>benim için</strong> kazanan : <strong>Rhythmbox</strong></p>
<p style="text-align:justify;"><strong>Not : </strong>1. Bölümün başında da belirttiğim gibi , bu puanlar ve yorumlar tamamen benim ihtiyaçlarım doğrultusunda oluşturulmuştur. Benim için en az kullanışlı olan Exaile , sizin için en mükemmel müzik çalar olabilir. Ancak en azından bu yazı ile birlikte hangi müzik çalar neyi yapıyor neyi yapamıyor az da olsa bilgi sahibi olmuş olmalısınız. Eh zaten amacım da buydu.</p>
<p style="text-align:justify;"><strong>Önceki Yazılar</strong></p>
<p style="text-align:justify;"><strong><a href="http://zelku.wordpress.com/2009/09/19/rhythmbox-vs-banshee-vs-exaile-1-bolum/">1. Bölüm : Giriş ve Rhythmbox</a><br />
<a href="http://zelku.wordpress.com/2009/09/19/rhythmbox-vs-banshee-vs-exaile-2-bolum/">2. Bölüm : Banshee</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mi Ubuntu (parte XV): Más reproductores de música para Ubuntu (actualizado)]]></title>
<link>http://glatelier.org/2009/09/17/mi-ubuntu-parte-xv-mas-reproductores-de-musica-para-ubuntu/</link>
<pubDate>Thu, 17 Sep 2009 16:00:29 +0000</pubDate>
<dc:creator>Pablo N.</dc:creator>
<guid>http://glatelier.org/2009/09/17/mi-ubuntu-parte-xv-mas-reproductores-de-musica-para-ubuntu/</guid>
<description><![CDATA[Bueno amigos, después de unos días de miedo estudiando para mi tanda de pruebas (y que aún no termin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><blockquote><p><em><strong>Bueno amigos, después de unos días de miedo estudiando para mi tanda de pruebas (y que aún no terminan&#8230;) me tomo unos días libres por fiestas patrias, y aprovecho de actualizar algunos post viejos con sus nuevas versiones. Esta vez le tocó a Banshee y Exaile, que han mejorado mucho desde la última vez que los vi. Pero aún así me sigo quedando con mi viejo y querido Rhythmbox <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></em><strong><em> </em></strong></p></blockquote>
<p><strong><em>Anteriormente les había hablado de aplicaciones para audio en <a href="http://glatelier.wordpress.com/2008/09/16/mi-ubuntu-parte-x-aplicaciones-de-edicion-y-reproduccion-de-audio/">Mi Ubuntu</a>. Y noté en las respuestas que habían aplicaciones que otros usuarios  usaban. Así que me dediqué a revisarlas y he notado lo mucho que han avanzado.</em></strong></p>
<p><strong><em>Ok, pasemos a verlas</em></strong></p>
<p><!--more--></p>
<h2>Amarok 2</h2>
<p>Amarok 2 ya ha salido, y está disponible. Si quieren instalar la versión anterior, busquen en Synaptic o en Agregar o quitar programas Amarok (Instrucciones <a href="http://glatelier.wordpress.com/2008/08/31/mi-ubuntu-parte-ix-instalar-programas-en-hardy-heron/">aquí</a>).</p>
<p>Si quieres instalar la última versión, edita y agrega a los repositorios</p>
<p><em>sudo gedit /etc/apt/sources.list</em></p>
<h3>Para Ubuntu Hardy Heron</h3>
<p><em>deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu hardy main</em></p>
<h3>Para Ubuntu Intrepid Ibex</h3>
<p><em>deb http://ppa.launchpad.net/kubuntu-members-kde4/ubuntu intrepid main</em></p>
<p>Ahora podrás instalarlo con<em> sudo apt-get install amarok-kde4:</em></p>
<p><em><img class="aligncenter size-full wp-image-1090" title="amarok" src="http://glatelier.wordpress.com/files/2009/01/pantallazo-19.png" alt="amarok" width="470" height="293" /></em>Comparativamente al anterior Amarok, son muchas las diferencias que resaltan.  La primera es como se ve visualmente; su interfaz ha cambiado completamente. Otra cosa que llama la atención es que ha mejorado mucho su integración con servicios como<a href="http://last.fm"> Last.fm</a>. Para añadir, cuenta con nuevas extensiones y applets.</p>
<p>Ojo, que también es para Ubuntu, no tan sólo Kubuntu!</p>
<p>Debo decir que no me gustó. En términos de rendimiento me sigo quedando con Rhythmbox, y su interfaz la encontré confusa&#8230; No sé&#8230; Es mi humilde opinión</p>
<h2>Exaile</h2>
<p>Cuando instalé por primera vez Ubuntu, me puse en una frenética búsqueda por un buen reproductor de música, uno que combinara una interfaz agradable y un buen rendimiento. Y pasé por Exaile. No me gustó, y seguí buscando.</p>
<p>Ahora, lo vuelvo a revisar, y noto que mucho de los errores que tenían ya no están, y además cuenta con nuevas opciones. Así que pasemos a ver.</p>
<p><img class="aligncenter size-full wp-image-1091" title="exaile" src="http://glatelier.wordpress.com/files/2009/01/pantallazo-26.png" alt="exaile" width="470" height="293" />En general su interfaz no es la gran cosa, sin embargo igual es agradable. Una cosa que me llamó la atención es que no cuenta con un icono para la barra de notificación por defecto.</p>
<p>Una de las cosas más atractivas es que cuenta con un buen ecualizador y excelentes extensiones:</p>
<p style="text-align:center;"><img class="size-full wp-image-1092 aligncenter" title="ecualizador" src="http://glatelier.wordpress.com/files/2009/01/pantallazo-22.png" alt="ecualizador" width="406" height="252" /></p>
<p>Al igual que Amarok y otros reproductores, cuenta con integración en Last.fm, servicios de radio Online, descarga de carátulas y más.</p>
<p><em><strong>Este programa lo puedes descargar desde Añadir y Quitar programas. Las instrucciones <a href="http://glatelier.wordpress.com/2008/08/31/mi-ubuntu-parte-ix-instalar-programas-en-hardy-heron/">aquí</a></strong></em>.</p>
<p><strong>Actualización: si deseas probar la última versión disponible para Jaunty y Karmic, sólo sigue los siguientes pasos:</strong></p>
<ul>
<li><strong>Abre una terminal con sudo gedit/etc/apt/sources.list y pega el repositorio:</strong><strong><br />
</strong><code>deb http://ppa.launchpad.net/exaile-devel/ubuntu karmic main</code> (para Karmic)<br />
<code>deb http://ppa.launchpad.net/exaile-devel/ubuntu jaunty main (para Jaunty)</code></li>
<li><strong>Guarda los cambios y sigue los siguientes comandos</strong>:</li>
<p><code>gpg --no-default-keyring --keyring /tmp/.exaile.keyring --keyserver keyserver.ubuntu.com --recv   B79BBC58DE219687E584187AC174A7B143CBFCC0<br />
gpg --no-default-keyring --keyring /tmp/.exaile.keyring --export --armor  B79BBC58DE219687E584187AC174A7B143CBFCC0 &#124; sudo apt-key add -<br />
rm /tmp/.exaile.keyring<br />
sudo apt-get update<br />
sudo apt-get install exaile</code> <strong></strong><strong><br />
</strong></p>
<h2 style="text-align:left;"><strong></strong><strong>Banshee</strong></h2>
</ul>
<p>Este es un buen reproductor. Debo decir que cada vez me gusta más; sin embargo no sé por qué:<br />
<strong></strong><strong><img class="aligncenter size-full wp-image-1094" title="banshee" src="http://glatelier.wordpress.com/files/2009/01/pantallazo-24.png" alt="banshee" width="470" height="293" /></strong>Una de las cosas que me gustan es que, además de ser un buen reproductor de música, reproduce video. Se parece al Rhythmbox en las opciones que tiene, así que no las voy a repetir. Sin embargo, su interfaz se parece al Exaile, así que tiene de todo un poco.<br />
<strong></strong><strong><img class="aligncenter size-full wp-image-1095" title="area de notificacion" src="http://glatelier.wordpress.com/files/2009/01/pantallazo-25.png" alt="area de notificacion" width="470" height="293" /></strong>Este programa lo puedes descargar desde Añadir y Quitar programas. Las instrucciones <a href="http://glatelier.wordpress.com/2008/08/31/mi-ubuntu-parte-ix-instalar-programas-en-hardy-heron/">aquí</a>.</p>
<p><em><strong>Actualización: si quieres actualizar a la última versión disponible, sólo abre una terminal y edita la lista de repositorios con sudo gedit/etc/apt/sources.list, pegando las siguientes líneas:</strong></em><br />
<code>deb http://ppa.launchpad.net/banshee-team/ppa/ubuntu karmic main<br />
deb-src http://ppa.launchpad.net/banshee-team/ppa/ubuntu karmic main</code> <strong>(para Karmic Koala)</strong><br />
<code>deb http://ppa.launchpad.net/banshee-team/ppa/ubuntu jaunty main<br />
deb-src http://ppa.launchpad.net/banshee-team/ppa/ubuntu jaunty main</code> <strong>(para Jaunty)</strong><br />
Guardas, y cierras. Luego añades la llave gpg c<code>on sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6E80C6B7</code>. Actualizas con <code>sudo apt-get update</code> e instalas con <code>sudo apt-get install banshee</code></p>
<h2><strong>Last.fm</strong></h2>
<p><strong></strong><strong><img class="aligncenter size-full wp-image-1096" title="last.fm" src="http://glatelier.wordpress.com/files/2009/01/pantallazo-23.png" alt="last.fm" width="470" height="293" /></strong><br />
Si deseas escuchar tu música online, last.fm es una excelente opción. Si no deseas navegar por internet, cuentas con esta opción. En general, tiene las mismas opciones que las del navegador.Liviano, y es una buena alternativa</p>
<h2><strong></strong><strong></strong><strong>Whaaw! Media Player</strong></h2>
<p>Esta es una exclusiva. Es un programa ideal para los que desean tener un programa ultra ligero para su computador. Además de ser un reproductor de música, cuenta con un reproductor de música.<br />
Lo puedes descargar desde <a href="http://www.gnomefiles.org/download.php?soft_id=2080&#38;where=http%3A%2F%2Fdownload.gna.org%2Fwhaawmp%2F0.2.10.1%2Fwhaawmp-0.2.10.1.tar.bz2">aquí</a>. Descomprímelo, y compílalo. No se asusten, hay un Readme que te dice las instrucciones. Es muy fácil.<br />
Si desean que les explique como hacerlo, me avisan.<br />
<strong></strong><strong></strong><strong></strong><strong></strong><strong><img class="aligncenter size-full wp-image-1098" title="asi se ve" src="http://glatelier.wordpress.com/files/2009/01/pantallazo-17.png" alt="asi se ve" width="470" height="293" /></strong>Si se fijan, no tiene nada. Cero interfaz. Pero carga muy rápido, y es genial para computadores que tengan poca ram.<br />
<strong></strong><strong></strong><strong></strong><strong><em><strong>Bueno amigos míos, eso ha sido todo. Como les había dicho, yo voy a seguir escribiendo lo más normal posible, eso es que al menos tengamos arriba 3 artículos por semana. Yo me comprometo con 2, y espero que los otros editores pongan el tercero. </strong></em></strong><br />
<strong></strong><strong></strong><strong></strong><strong><em><strong>En general debo decirles que me ha ido muy bien en la práctica, paso resfriado por los niños que atiendo, pero he aprendido muchísimo. Eso me tiene muy contento, pero me quita mucho tiempo; por eso no puedo escribir demasiado.</strong></em></strong><br />
<strong></strong><strong></strong><strong></strong><strong><em><strong>Amigos míos, queda poco para terminar Mi Ubuntu. Faltan sólo 2 partes. Probablemente la última se divida, pero la idea es que sea un sólo post largo. Me da pena terminarlo, pero es mejor poder cerrar un ciclo. No significa que deje de escribir, pero sí hablaré de otros temas además de tutoriales. </strong></em></strong><br />
<strong></strong><strong></strong><strong></strong><strong><em><strong>Eso ha sido todo. Espero que les haya gustado. Nos vemos<br />
</strong></em></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Instala la última versión de Exaile en Ubuntu]]></title>
<link>http://onoametal.wordpress.com/2009/09/08/instala-la-ultima-version-de-exaile-en-ubuntu/</link>
<pubDate>Tue, 08 Sep 2009 20:01:14 +0000</pubDate>
<dc:creator>onoametal</dc:creator>
<guid>http://onoametal.wordpress.com/2009/09/08/instala-la-ultima-version-de-exaile-en-ubuntu/</guid>
<description><![CDATA[Exaile es un reproductor de MP3 para Gnome. Para tener la última versión de Exaile, solo debes: 1. C]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" src="http://i142.photobucket.com/albums/r97/onoametal/screenshot_028.jpg" alt="" width="480" height="270" /></p>
<p style="text-align:left;"><a href="http://www.exaile.org/" target="_blank">Exaile</a> es un reproductor de MP3 para Gnome. Para tener la última versión de Exaile, solo debes:</p>
<p style="text-align:left;">1. Copiar y pegar la siguiente línea en tu /etc/apt/sources.list:</p>
<p style="text-align:left;"><em><strong>deb http://ppa.launchpad.net/exaile-devel/ubuntu jaunty main</strong></em></p>
<p style="text-align:left;">2. Ingresar en consola:</p>
<p><em><strong>gpg &#8211;no-default-keyring &#8211;keyring /tmp/.exaile.keyring &#8211;keyserver keyserver.ubuntu.com &#8211;recv   B79BBC58DE219687E584187AC174A7B143CBFCC0</strong></em></p>
<p><em><strong>gpg &#8211;no-default-keyring &#8211;keyring /tmp/.exaile.keyring &#8211;export &#8211;armor  B79BBC58DE219687E584187AC174A7B143CBFCC0 &#124; sudo apt-key add -</strong></em></p>
<p><em><strong>rm /tmp/.exaile.keyring</strong></em></p>
<p><em><strong>sudo apt-get update</strong></em></p>
<p><em><strong>sudo apt-get install exaile</strong></em></p>
<p>Y Listo! Ya tienes la última versión de Exaile corriendo en Ubuntu.</p>
<p>Capturas (en realidad, sólo una <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ):</p>
<p style="text-align:center;"><img class="aligncenter" src="http://i142.photobucket.com/albums/r97/onoametal/screenshot_029.jpg" alt="" width="480" height="259" /></p>
<p style="text-align:left;">Up The Irons!!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Error en Exaile: 'list' object has no attribute 'get_total_length']]></title>
<link>http://linuxisnotfreedom.wordpress.com/2009/08/24/error-en-exaile-list-object-has-no-attribute-get_total_length/</link>
<pubDate>Tue, 25 Aug 2009 00:42:40 +0000</pubDate>
<dc:creator>Felipe</dc:creator>
<guid>http://linuxisnotfreedom.wordpress.com/2009/08/24/error-en-exaile-list-object-has-no-attribute-get_total_length/</guid>
<description><![CDATA[Algunas veces cuando usaba Exaile, luego de escuchar un rato música, me aparecía este error al pinch]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-full wp-image-148" title="exaile-logo" src="http://linuxisnotfreedom.wordpress.com/files/2009/08/exaile-logo.png" alt="exaile-logo" width="137" height="137" />Algunas veces cuando usaba Exaile, luego de escuchar un rato música, me aparecía este error al pinchar una canción:<span style="color:#ff0000;"> &#8216;list&#8217; object has no attribute &#8216;get_total_length&#8217;</span>; y al poner aceptar el cuadro del error, la canción se paraba no pudiendo escuchar bien música porque el error corta la reproducción.</p>
<p>Para solucionar esto se van a la terminal y ponen:</p>
<blockquote><p><span style="color:#666699;">sudo gedit /usr/share/exaile/xl/gui/playlist.py</span></p></blockquote>
<p>En el archivo buscan donde sale:</p>
<blockquote><p><span style="color:#666699;">s = sorted(s, key=operator.itemgetter(0), reverse=reverse)</span></p>
<p><span style="color:#666699;">songs = [track[-1] for track in s]</span></p>
<p><span style="color:#666699;">return songs</span></p></blockquote>
<p>Y cambian la segunda línea (la songs = [track.....), por esto:</p>
<blockquote><p><span style="color:#666699;">songs = library.TrackData([track[-1] for track in s])</span></p></blockquote>
<p>Luego ponen guardar y listo.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Exaile + Light + Shade]]></title>
<link>http://sjohannes.wordpress.com/2009/07/21/exaile-light-shade/</link>
<pubDate>Tue, 21 Jul 2009 13:52:00 +0000</pubDate>
<dc:creator>Johannes</dc:creator>
<guid>http://sjohannes.wordpress.com/2009/07/21/exaile-light-shade/</guid>
<description><![CDATA[There&#8217;s this album by Mike Oldfield called Light + Shade that consists of two CDs labelled Lig]]></description>
<content:encoded><![CDATA[There&#8217;s this album by Mike Oldfield called Light + Shade that consists of two CDs labelled Lig]]></content:encoded>
</item>
<item>
<title><![CDATA[Bye Rhythmbox, Welcome Exile]]></title>
<link>http://nicokun.wordpress.com/2009/07/07/bye-rhythmbox-welcome-exile/</link>
<pubDate>Tue, 07 Jul 2009 06:35:36 +0000</pubDate>
<dc:creator>nico</dc:creator>
<guid>http://nicokun.wordpress.com/2009/07/07/bye-rhythmbox-welcome-exile/</guid>
<description><![CDATA[Rhythmbox sebagai pemain musik default di Ubuntu sudah cukup baik buat saya sehingga saya tidak pern]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Rhythmbox sebagai pemain musik default di Ubuntu sudah cukup baik buat saya sehingga saya tidak pernah menggantinya dengan Amarok, ato yg lain. Namun setelah mengupgrade Ibex ke Jaunty saya mengalami sedikit anomali dengan rhythmbox.</p>
<p>Anomali pertama adalah rhythmbox tidak henti2nya memunculkan dialog untuk mencari plugin/codec yg tepat apabila menemukan file yang tidak bisa ia atasi di librari musik setiap rhythmbox dijalankan. Seingat saya dulu begitu sekali saya cancel dialog yg muncul, dialog tersebut tidak akan muncul lagi.</p>
<p>Anomali kedua adalah apabila aplikasi yg berjalan sudah cukup banyak (lebih dari tiga), saat sedang memainkan musik, lagu yg sedang dimainkan akan berhenti sejenak (sekitar kurang dari satu detik) setiap saya memindahkan fokus dari satu aplikasi ke aplikasi yang lain (application switching). Rasanya seperti rhythmbox menggunakan resource yg cukup besar sehingga sedikit perubahan bisa mengganggu proses lagu yg sedang dimainkan.</p>
<p>Akhirnya saya memilih untuk mencoba music player lain. Amarok bukan pilihan, karena menggunakan Qt library. Lalu saya menemukan <a href="http://www.exaile.org/" target="_blank">Exaile</a>. Dan ternyata sangat bagus! Simple, mirip amarok, dan tidak ada lagi anomali seperti yg dialami rhythmbox <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://exaile.org/images/7.png"><img class="alignleft" title="exaile" src="http://exaile.org/images/7.png" alt="" width="286" height="125" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Adicto a los Podcast Españoles]]></title>
<link>http://sololinex.wordpress.com/2009/07/06/adicto-a-los-podcast-espanoles/</link>
<pubDate>Mon, 06 Jul 2009 15:57:20 +0000</pubDate>
<dc:creator>cristo990</dc:creator>
<guid>http://sololinex.wordpress.com/2009/07/06/adicto-a-los-podcast-espanoles/</guid>
<description><![CDATA[Hace unos días que me interesé por el mundillo del podcasting a pesar de saber de sobra todas sus bo]]></description>
<content:encoded><![CDATA[Hace unos días que me interesé por el mundillo del podcasting a pesar de saber de sobra todas sus bo]]></content:encoded>
</item>

</channel>
</rss>
