<?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>subvida &#187; linux</title>
	<atom:link href="http://subvida.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://subvida.com</link>
	<description>mi vida vista desde internet ... Carlos Rivero</description>
	<lastBuildDate>Sun, 03 Jan 2010 18:06:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Convert DivX &#8211; Xvid to PS3 Format mpeg4 on linux</title>
		<link>http://subvida.com/2007/06/18/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/</link>
		<comments>http://subvida.com/2007/06/18/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 05:11:59 +0000</pubDate>
		<dc:creator>Carlitos</dc:creator>
				<category><![CDATA[Ps3]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://subvida.com/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/18/06/2007/</guid>
		<description><![CDATA[Is not cool to only be able to browse movies and not been able to see them unless they are mpeg4 on the ps3&#8230; so a fast and easy way to convert them is this:
First install GPAC
(GPAC is an implementation of the MPEG-4 Systems standard developed from scratch in ANSI C)
using gentoo:
emerge media-video/gpac
if using other [...]]]></description>
			<content:encoded><![CDATA[<p>Is not cool to only be able to browse movies and not been able to see them unless they are mpeg4 on the ps3&#8230; so a fast and easy way to convert them is this:</p>
<p>First install GPAC<br />
(GPAC is an implementation of the MPEG-4 Systems standard developed from scratch in ANSI C)</p>
<p>using gentoo:<br />
<code>emerge media-video/gpac</code><br />
if using other system:<br />
<code>apt-get install gpac</code> or just get it from the home page <a href="http://gpac.sourceforge.net/">here</a></p>
<p>I found this lite batch script the other day on the ps3forums:<br />
<span id="more-95"></span>
<pre>#!/bin/sh
##Released under the GPL.
## www.subvida.com
## Carlos Rivero
function usage {
cat eof $0 inputFile outputFile bitrate
where
    inputFile: The video to convert
    outoutFile: The output video
    bitrate: bitrate for the output (ex: 2000)
EOF
exit 1
}
[ $# -lt 3 ] &#038;&#038; usage

echo "EXECUTING COMMAND: mencoder $1 -ovc x264 -oac faac -x264encopts subq=6:pass=1:bitrate=$3:bframes=3:partitions=p8x8,b8x8,i4x4:weight_b:threads=auto:nopsnr:nossim:frameref=3:mixed_refs:bime:brdo:level_idc=41:direct_pred=auto:trellis=1 -o "$2.avi""
echo "Now converting to AVC.  This will take the most time." + `date`

mencoder $1 -ovc x264 -oac faac -x264encopts subq=6:pass=1:bitrate=$3:bframes=3:partitions=p8x8,b8x8,i4x4:weight_b:threads=auto:nopsnr:nossim:frameref=3:mixed_refs:bime:brdo:level_idc=41:direct_pred=auto:trellis=1 -o "$2.avi"

echo "Now converting avi to MP4, due to limitations."
MP4Box -aviraw video $2.avi
MP4Box -aviraw audio $2.avi
mv $2_audio.raw $2_audio.aac
MP4Box -add $2_audio.aac -add $2_video.h264 $2.mp4</pre>
<p>which should be run like: bashscript INPUT.avi OUTPUT bitrate</p>
<p>use this script in conjunction with <a href="http://subvida.com/browse-and-play-videosmusic-with-ps3-via-network-upnp-to-your-linux-box/24/05/2007/">this</a></p>
<p>*NOTE: replace line 6<br />
<code>cat eof $0 inputFile outputFile bitrate</code><br />
by<br />
<code>cat &lt;&lt;eof $0 inputFile outputFile bitrate</code></p>
<!-- AdSense Now! V1.80 -->
<!-- Post[count: 2] -->
<div class="adsense adsense-leadout" style="text-align:center;margin: 12px;"><script type="text/javascript"><!--
google_ad_client = "pub-1213643583738263";
/* 234x60, AdSenseNow created 3/1/09 */
google_ad_slot = "5294177075";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></content:encoded>
			<wfw:commentRss>http://subvida.com/2007/06/18/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>browse and play Videos/Music with PS3 via network (UPnP) to your linux Box</title>
		<link>http://subvida.com/2007/05/24/browse-and-play-videosmusic-with-ps3-via-network-upnp-to-your-linux-box/</link>
		<comments>http://subvida.com/2007/05/24/browse-and-play-videosmusic-with-ps3-via-network-upnp-to-your-linux-box/#comments</comments>
		<pubDate>Thu, 24 May 2007 17:19:44 +0000</pubDate>
		<dc:creator>Carlitos</dc:creator>
				<category><![CDATA[Ps3]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://subvida.com/browse-and-play-videosmusic-with-ps3-via-network-upnp-to-your-linux-box/24/05/2007/</guid>
		<description><![CDATA[(how to browse and play videos and mp3s with your ps3 from your linux box)
I wanted to share my videos and MP3&#8217;s from my linux box (in my case gentoo) with my PS3 with out having to transfer them so here are the steps to make it happen&#8230;
first you need to get net-libs/libupnp
do all this [...]]]></description>
			<content:encoded><![CDATA[<p>(how to browse and play videos and mp3s with your ps3 from your linux box)</p>
<p>I wanted to share my videos and MP3&#8217;s from my linux box (in my case gentoo) with my PS3 with out having to transfer them so here are the steps to make it happen&#8230;</p>
<p>first you need to get net-libs/libupnp</p>
<p><strong>do all this from the console:</strong></p>
<p><code>emerge net-libs/libupnp</code><br />
or<br />
<code>yum install libupnp</code> (from the kbs-CentOS-Extra repository for CentOS)</p>
<p>*note it has to be equal or higher than <strong>version 1.4.2</strong><br />
if you are using another distro you can get it from <a href="http://pupnp.sourceforge.net/">http://pupnp.sourceforge.net/</a></p>
<p><strong>**** USING uShare ****</strong></p>
<p>then download this great application that was developed for the <em>GeeXboX </em>called <strong>uShare</strong></p>
<p><code>wget http://ushare.geexbox.org/releases/ushare-0.9.10.tar.bz2</code><br />
then decompress the bz2 file<br />
<code>tar xvjf ushare-0.9.10.tar.bz2</code><br />
then go into the folder<br />
<code>cd ushare-0.9.10</code><br />
now lets configure and compile<br />
<code>./configure --prefix=/usr</code><br />
then<br />
<code>make</code><br />
<code>make install</code><br />
now you can run it <img src='http://subvida.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<code>ushare -c /home/DIRECTORY TO SHARE1 -c /DIRECTORY TO SHARE2 &#038;</code><br />
after doing this go to: http://localhost:49152/web/ushare.html<br />
if you see the ushare page everything went ok and now you should be able to see your linux box from the ps3</p>
<p>*UPDATE: Only VIDEO via uShare works, MP3 playback don&#8217;t work yet under uShare yet&#8230;</p>
<p><strong>**** USING FUPPES ****</strong></p>
<p>From the command line:<br />
<code>emerge lame</code><br />
<code>emerge twolame </code></p>
<p><code> svn co http://fuppes-svn.ulrich-voelkel.de/trunk fuppes</code></p>
<p><code>autoreconf -i</code><br />
<code>./configure --prefix=/usr</code><br />
<code>make </code><br />
<code>make install</code><br />
then just run it:<br />
<code>fuppes</code><br />
*make sure you configure it via the webinterface and rebuild the database<br />
<strong><br />
I was able to play MP3&#8217;s, Photos and Movies with Fuppes </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://subvida.com/2007/05/24/browse-and-play-videosmusic-with-ps3-via-network-upnp-to-your-linux-box/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>XGL/Compiz plugin called Lowfat,</title>
		<link>http://subvida.com/2007/05/10/xglcompiz-plugin-called-lowfat/</link>
		<comments>http://subvida.com/2007/05/10/xglcompiz-plugin-called-lowfat/#comments</comments>
		<pubDate>Fri, 11 May 2007 04:28:03 +0000</pubDate>
		<dc:creator>Carlitos</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://subvida.com/xglcompiz-plugin-called-lowfat/10/05/2007/</guid>
		<description><![CDATA[Saw this on the Compiz site, it&#8217;s a plugin called Lowfat. Really worth checking out. Developed by somebody called &#8220;MacSlow&#8221; its in the early alpha stage but there is a git repo availible,  download
video of demo
Video &#124; digg story
]]></description>
			<content:encoded><![CDATA[<p>Saw this on the Compiz site, it&#8217;s a plugin called Lowfat. Really worth checking out. Developed by somebody called &#8220;MacSlow&#8221; its in the early alpha stage but there is a git repo availible,  <a href="http://people.freedesktop.org/~macslow/lowfat ">download</a><br />
<a href="http://www.youtube.com/watch?v=pG8pWXprnaw">video of demo</a></p>
<p><a href="http://www.youtube.com/watch?v=GkrM4ymkiDo">Video</a> | <a href="http://digg.com/linux_unix/XGL_Compiz_plugin_called_Lowfat">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://subvida.com/2007/05/10/xglcompiz-plugin-called-lowfat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
