<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Albertux~# ./Blog &#187; multimedia</title>
	<atom:link href="http://albertux.ayalasoft.com/category/multimedia/feed/" rel="self" type="application/rss+xml" />
	<link>http://albertux.ayalasoft.com</link>
	<description>61 20 64 65 76 65 6c 6f 70 65 72 20 6c 69 66 65</description>
	<lastBuildDate>Thu, 01 Jul 2010 16:23:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.5.3" -->
	<copyright>Copyright &#38;#xA9; 2010 Albertux~# ./Blog </copyright>
	<managingEditor>albertoi7@gmail.com</managingEditor>
	<webMaster>albertoi7@gmail.com</webMaster>
	<category>posts</category>
	<ttl>1440</ttl>
	<image>
		<url>http://ayalasoft.com/img/podcast02.jpg</url>
		<title>Albertux~# ./Blog &#187; multimedia</title>
		<link>http://albertux.ayalasoft.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>After three days without programming, life becomes meaningless.</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Technology">
		<itunes:category text="Software How-To" />
	</itunes:category>
	<itunes:category text="Technology">
		<itunes:category text="Podcasting" />
	</itunes:category>
	<itunes:author></itunes:author>
	<itunes:owner>
		<itunes:name></itunes:name>
		<itunes:email>albertoi7@gmail.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://ayalasoft.com/img/podcast01.jpg" />
		<item>
		<title>Convert m4a to mp3</title>
		<link>http://albertux.ayalasoft.com/2010/06/05/convert-m4a-to-mp3/</link>
		<comments>http://albertux.ayalasoft.com/2010/06/05/convert-m4a-to-mp3/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 19:07:58 +0000</pubDate>
		<dc:creator>albertux</dc:creator>
				<category><![CDATA[multimedia]]></category>
		<category><![CDATA[unix/linux]]></category>
		<category><![CDATA[m4a]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.com/?p=3161</guid>
		<description><![CDATA[Convert m4a to mp3 Damn my iPod doesn&#8217;t support m4a audio files ( http://support.apple.com/kb/sp27 ) No problem: sudo apt-get install faad #!/bin/bash IFS=$'\t\n' EXTS=&#40; m4a M4A m4A M4a &#41; for EXT in ${EXTS[@]}; do for f in `find . -name &#34;*.$EXT&#34; -type f`; do echo &#34;Converting m4a to mp3 ...&#34; faad -o - &#34;$f&#34; &#124; [...]<p><a href="http://albertux.ayalasoft.com/2010/06/05/convert-m4a-to-mp3/">Convert m4a to mp3</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Convert m4a to mp3</strong></p>
<p>Damn my iPod doesn&#8217;t support m4a audio files ( <a href="http://support.apple.com/kb/sp27" target="_blank">http://support.apple.com/kb/sp27</a> )</p>
<p>No problem:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> faad</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #007800;">IFS</span>=$<span style="color: #ff0000;">'\t\n'</span>
<span style="color: #007800;">EXTS</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span> m4a M4A m4A M4a <span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">for</span> EXT <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #800000;">${EXTS[@]}</span>;
<span style="color: #000000; font-weight: bold;">do</span>
	<span style="color: #000000; font-weight: bold;">for</span> f <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> <span style="color: #ff0000;">&quot;*.<span style="color: #007800;">$EXT</span>&quot;</span> <span style="color: #660033;">-type</span> f<span style="color: #000000; font-weight: bold;">`</span>;
	<span style="color: #000000; font-weight: bold;">do</span>
		<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Converting m4a to mp3 ...&quot;</span>
		faad <span style="color: #660033;">-o</span> - <span style="color: #ff0000;">&quot;<span style="color: #007800;">$f</span>&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">lame</span> - <span style="color: #ff0000;">&quot;<span style="color: #007800;">${f%.m4a}</span>.mp3&quot;</span>
		<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #007800;">$f</span>
	<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<p>Yes the script is similar to this <a href="http://albertux.ayalasoft.com/2008/10/20/resize-multiple-images/">resize multiple images</a></p>
<p>Great tool to edit tags (<a href="http://easytag.sourceforge.net/" target="_blank">http://easytag.sourceforge.net/</a>)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> easytag</pre></div></div>

<p><img src="http://albertux.ayalasoft.com/wp-content/uploads/2010/06/easytag-tag.png"></p>
<p><img src="http://albertux.ayalasoft.com/wp-content/uploads/2010/06/eastag-running.png"></p>
<p><a href="http://albertux.ayalasoft.com/2010/06/05/convert-m4a-to-mp3/">Convert m4a to mp3</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.com/2010/06/05/convert-m4a-to-mp3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Chrome OS</title>
		<link>http://albertux.ayalasoft.com/2009/11/20/google-chrome-os/</link>
		<comments>http://albertux.ayalasoft.com/2009/11/20/google-chrome-os/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 08:06:27 +0000</pubDate>
		<dc:creator>albertux</dc:creator>
				<category><![CDATA[multimedia]]></category>
		<category><![CDATA[unix/linux]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.com/?p=2379</guid>
		<description><![CDATA[Google Chrome OS Google Chrome OS: uname -a Linux localhost 2.6.30-chromeos-intel-menlow #1 SMP Fri Nov 20 02:53:44 UTC 2009 i686 GNU/Linux cat /etc/debian_version squeeze/sid dpkg -l OUTPUT lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 9.10 (development branch) Release: 9.10 Codename: karmic So full name: Google Chrome OS (Cromium OS) &#8211; [...]<p><a href="http://albertux.ayalasoft.com/2009/11/20/google-chrome-os/">Google Chrome OS</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Google Chrome OS</strong></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/0QRO3gKj3qw&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=es_ES&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/0QRO3gKj3qw&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=es_ES&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p>Google Chrome OS:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">uname</span> <span style="color: #660033;">-a</span></pre></div></div>

<blockquote><p>Linux localhost 2.6.30-chromeos-intel-menlow #1 SMP Fri Nov 20 02:53:44 UTC 2009 i686 GNU/Linux</p></blockquote>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>debian_version</pre></div></div>

<blockquote><p>squeeze/sid</p></blockquote>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-l</span></pre></div></div>

<p><a href="http://www.ayalasoft.com/others/googlechromeos-pkgs.txt" target="_blank">OUTPUT</a></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">lsb_release <span style="color: #660033;">-a</span></pre></div></div>

<blockquote><p>No LSB modules are available.<br />
Distributor ID:	Ubuntu<br />
Description:	Ubuntu 9.10 (development branch)<br />
Release:	9.10<br />
Codename:	karmic</p></blockquote>
<p>So full name:</p>
<blockquote><p>Google Chrome OS (Cromium OS) &#8211; Ubuntu 9.10 Karmic Koala &#8211; Debian squeeze/sid 6.0 &#8211; Gnu/Linux</p></blockquote>
<p>JSON File with Google Chrome settings:</p>
<blockquote><p>/home/chronos/<strong>[user</strong>@gmail.com<strong>]</strong>/.config/google-chrome/Local State</p></blockquote>
<p>Links:</p>
<p><a href="http://www.chromium.org/chromium-os/building-chromium-os" target="_blank">Build Chromium OS</a></p>
<p><a href="http://geeklad.com/download-the-google-chrome-os-virtual-machine" target="_blank">Download Google Chrome OS Virtual Machine (VMware and VirtualBox)</a></p>
<li>
<p><a href="http://albertux.ayalasoft.com/2009/11/20/google-chrome-os/">Google Chrome OS</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.com/2009/11/20/google-chrome-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DJ Tools</title>
		<link>http://albertux.ayalasoft.com/2009/09/20/dj-tools/</link>
		<comments>http://albertux.ayalasoft.com/2009/09/20/dj-tools/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 23:36:47 +0000</pubDate>
		<dc:creator>albertux</dc:creator>
				<category><![CDATA[multimedia]]></category>
		<category><![CDATA[unix/linux]]></category>
		<category><![CDATA[DJ]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://albertux.ayalasoft.com/?p=2176</guid>
		<description><![CDATA[DJ Tools Audacity (Editor and recorder) LMMS (Produce music and mixing sounds) Mixxx (Perform live mix) Screens: Install on Ubuntu this stuff: sudo apt-get install lmms mixxx audacity DJ Tools is a post from: Albertux~# ./Blog<p><a href="http://albertux.ayalasoft.com/2009/09/20/dj-tools/">DJ Tools</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></description>
			<content:encoded><![CDATA[<p><strong>DJ Tools</strong></p>
<ul>
<li><a href="http://audacity.sourceforge.net/" target="_blank">Audacity</a> (Editor and recorder)</li>
<li><a href="http://lmms.sourceforge.net/" target="_blank">LMMS</a> (Produce music and mixing sounds)</li>
<li><a href="http://www.mixxx.org/" target="_blank">Mixxx</a> (Perform live mix)</li>
</ul>
<p>Screens:</p>
<p><a href="http://ayalasoft.com/media/Audacity.png" rel="shadowbox"><img src="http://ayalasoft.com/media/Audacity-thumb.png"></a></p>
<p><a href="http://ayalasoft.com/media/LMMS.png" rel="shadowbox"><img src="http://ayalasoft.com/media/LMMS-thumb.png"></a></p>
<p><a href="http://ayalasoft.com/media/Mixxx.png" rel="shadowbox"><img src="http://ayalasoft.com/media/Mixxx-thumb.png"></a></p>
<p>Install on Ubuntu this stuff:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> lmms mixxx audacity</pre></div></div>

<p><a href="http://albertux.ayalasoft.com/2009/09/20/dj-tools/">DJ Tools</a> is a post from: <a href="http://albertux.ayalasoft.com">Albertux~# ./Blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://albertux.ayalasoft.com/2009/09/20/dj-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
