<?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"
	>
<channel>
	<title>Comments for subvida</title>
	<atom:link href="http://subvida.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://subvida.com</link>
	<description>mi vida vista desde internet ... Carlos Rivero</description>
	<pubDate>Fri, 21 Nov 2008 22:27:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>Comment on Convert DivX - Xvid to PS3 Format mpeg4 on linux by Johan</title>
		<link>http://subvida.com/2007/06/18/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/#comment-2906</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Tue, 11 Nov 2008 11:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/18/06/2007/#comment-2906</guid>
		<description>#!/bin/sh
##Released under the GPL.
## www.subvida.com
## Carlos Rivero
#
# MP4Box is in the Ubuntu package 'gpac'.
#
# ver 1.1  by Johan Karlsson
#         * no skipping of duplicate frames causing sound to lose sync
#         * no useless divx2pass file created
#         * cleaning up junk files
#         * checking that input file exists

if [ $1 = "--help" ]
    then
    echo "ps3videncode inputFile outputFile bitrate
   inputFile: The video to convert (ex: terminator.mkv)
   outoutFile: The output video (ex: mymovie)
   bitrate: bitrate for the output (ex: 2000)"
    exit 1
fi
if [ ! -e $1 ]; then
    echo "Input file not found ($1)"
    exit 1
fi

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 -faacopts br=128:mpeg=4:object=2 -x264encopts subq=6: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 -vf harddup -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

echo "cleaning up"
rm $2_audio.aac
rm $2_video.h264
rm $2.avi

-----------------------
Thanks for the script. I made some improvements to it and thought they might be interesting for other PS3 users.</description>
		<content:encoded><![CDATA[<p>#!/bin/sh<br />
##Released under the GPL.<br />
## <a href="http://www.subvida.com" rel="nofollow">http://www.subvida.com</a><br />
## Carlos Rivero<br />
#<br />
# MP4Box is in the Ubuntu package &#8216;gpac&#8217;.<br />
#<br />
# ver 1.1  by Johan Karlsson<br />
#         * no skipping of duplicate frames causing sound to lose sync<br />
#         * no useless divx2pass file created<br />
#         * cleaning up junk files<br />
#         * checking that input file exists</p>
<p>if [ $1 = "--help" ]<br />
    then<br />
    echo &#8220;ps3videncode inputFile outputFile bitrate<br />
   inputFile: The video to convert (ex: terminator.mkv)<br />
   outoutFile: The output video (ex: mymovie)<br />
   bitrate: bitrate for the output (ex: 2000)&#8221;<br />
    exit 1<br />
fi<br />
if [ ! -e $1 ]; then<br />
    echo &#8220;Input file not found ($1)&#8221;<br />
    exit 1<br />
fi</p>
<p>echo &#8220;EXECUTING COMMAND: mencoder $1 -ovc x264 -oac faac -x264encopts subq=6:pass=1:bitrate=$3:bframes=3:partitions=p8&#215;8,b8&#215;8,i4&#215;4:weight_b:threads=auto:nopsnr:nossim:frameref=3:mixed_refs:bime:brdo:level_idc=41:direct_pred=auto:trellis=1 -o &#8220;$2.avi&#8221;"<br />
echo &#8220;Now converting to AVC.  This will take the most time.&#8221; + `date`</p>
<p>mencoder $1 -ovc x264 -oac faac -faacopts br=128:mpeg=4:object=2 -x264encopts subq=6:bitrate=$3:bframes=3:partitions=p8&#215;8,b8&#215;8,i4&#215;4:weight_b:threads=auto:nopsnr:nossim:frameref=3:mixed_refs:bime:brdo:level_idc=41:direct_pred=auto:trellis=1 -vf harddup -o &#8220;$2.avi&#8221;</p>
<p>echo &#8220;Now converting avi to MP4, due to limitations.&#8221;<br />
MP4Box -aviraw video $2.avi<br />
MP4Box -aviraw audio $2.avi<br />
mv $2_audio.raw $2_audio.aac<br />
MP4Box -add $2_audio.aac -add $2_video.h264 $2.mp4</p>
<p>echo &#8220;cleaning up&#8221;<br />
rm $2_audio.aac<br />
rm $2_video.h264<br />
rm $2.avi</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Thanks for the script. I made some improvements to it and thought they might be interesting for other PS3 users.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert DivX - Xvid to PS3 Format mpeg4 on linux by Manolito</title>
		<link>http://subvida.com/2007/06/18/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/#comment-1522</link>
		<dc:creator>Manolito</dc:creator>
		<pubDate>Sat, 29 Dec 2007 16:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/18/06/2007/#comment-1522</guid>
		<description>cat &#60;&#60;EOF
$0 inputFile outputFile bitrate</description>
		<content:encoded><![CDATA[<p>cat &lt;&lt;EOF<br />
$0 inputFile outputFile bitrate</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Convert DivX - Xvid to PS3 Format mpeg4 on linux by Manolito</title>
		<link>http://subvida.com/2007/06/18/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/#comment-1521</link>
		<dc:creator>Manolito</dc:creator>
		<pubDate>Sat, 29 Dec 2007 16:53:03 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/convert-divx-xvid-to-ps3-format-mpeg4-on-linux/18/06/2007/#comment-1521</guid>
		<description>Replace line 6 with the 2 following lines:
cat </description>
		<content:encoded><![CDATA[<p>Replace line 6 with the 2 following lines:<br />
cat</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Connect your PS3 to the DELL 2407WFP at 1080p by Sou</title>
		<link>http://subvida.com/2006/12/03/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/#comment-1503</link>
		<dc:creator>Sou</dc:creator>
		<pubDate>Tue, 13 Nov 2007 11:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/03/12/2006/#comment-1503</guid>
		<description>I have a problem when I was trying to set this up. What I did was I bought a HDMI to DVI-D cable and plug it onto my Dell monitor (the same one used in this article) and instead of having another TV, I plugged the component cables I have to the monitor as well.

I've tried many times to get this work but I'm still not getting any picture, what am I doing wrong?</description>
		<content:encoded><![CDATA[<p>I have a problem when I was trying to set this up. What I did was I bought a HDMI to DVI-D cable and plug it onto my Dell monitor (the same one used in this article) and instead of having another TV, I plugged the component cables I have to the monitor as well.</p>
<p>I&#8217;ve tried many times to get this work but I&#8217;m still not getting any picture, what am I doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Connect your PS3 to the DELL 2407WFP at 1080p by Henry</title>
		<link>http://subvida.com/2006/12/03/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/#comment-1493</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Sun, 04 Nov 2007 08:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/03/12/2006/#comment-1493</guid>
		<description>I assume that the monitor does not have speaker with it. 

My understanding is that you'll need to have a PC speaker and have an adapter to connect the 2 colored cables (Red, White, Yellow) with the PC speaker. I'm thinking of getting 2 female to 1 female adapter as the speaker has a male jack as well. 

That is in regards to the Audio. 

For the video, just to summarize everything, all you need is a HDMI to DVI cable, am I correct?

And just to make things a bit more complicated, if I'm planning to use the monitor for my PC as well, do I need a switch or something? Cuz it won't be efficient to plug&#38;unplug cables just to switch between PC and PS3.</description>
		<content:encoded><![CDATA[<p>I assume that the monitor does not have speaker with it. </p>
<p>My understanding is that you&#8217;ll need to have a PC speaker and have an adapter to connect the 2 colored cables (Red, White, Yellow) with the PC speaker. I&#8217;m thinking of getting 2 female to 1 female adapter as the speaker has a male jack as well. </p>
<p>That is in regards to the Audio. </p>
<p>For the video, just to summarize everything, all you need is a HDMI to DVI cable, am I correct?</p>
<p>And just to make things a bit more complicated, if I&#8217;m planning to use the monitor for my PC as well, do I need a switch or something? Cuz it won&#8217;t be efficient to plug&amp;unplug cables just to switch between PC and PS3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Connect your PS3 to the DELL 2407WFP at 1080p by Daniel</title>
		<link>http://subvida.com/2006/12/03/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/#comment-1484</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 23 Oct 2007 07:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/03/12/2006/#comment-1484</guid>
		<description>Ok, ps3 hooked up on the dell ultrasharp(20") but no sound... Do i need to buy a digital audio coaxial cable to hook it up from the monitor to the pc tower itself or? I don't know what to do.

I can see the image with an outstanding resolution but again..I need the sound.

HELP</description>
		<content:encoded><![CDATA[<p>Ok, ps3 hooked up on the dell ultrasharp(20&#8243;) but no sound&#8230; Do i need to buy a digital audio coaxial cable to hook it up from the monitor to the pc tower itself or? I don&#8217;t know what to do.</p>
<p>I can see the image with an outstanding resolution but again..I need the sound.</p>
<p>HELP</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Connect your PS3 to the DELL 2407WFP at 1080p by imkas</title>
		<link>http://subvida.com/2006/12/03/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/#comment-1462</link>
		<dc:creator>imkas</dc:creator>
		<pubDate>Fri, 28 Sep 2007 03:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/03/12/2006/#comment-1462</guid>
		<description>Hey Calitos,

I am refering to the dvi split connector, that is to go to your DVI and then the split go to one pc and one ps3. So my question is, this dvi split connector is for 1 input to 2 output, so this wont work on then, is that right? 

i suppose the lcd monitor is the output, and both the pc and ps3 is input, so .....  anyone know of this or have used this, please help. Much appreciated.</description>
		<content:encoded><![CDATA[<p>Hey Calitos,</p>
<p>I am refering to the dvi split connector, that is to go to your DVI and then the split go to one pc and one ps3. So my question is, this dvi split connector is for 1 input to 2 output, so this wont work on then, is that right? </p>
<p>i suppose the lcd monitor is the output, and both the pc and ps3 is input, so &#8230;..  anyone know of this or have used this, please help. Much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Connect your PS3 to the DELL 2407WFP at 1080p by Carlitos</title>
		<link>http://subvida.com/2006/12/03/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/#comment-1458</link>
		<dc:creator>Carlitos</dc:creator>
		<pubDate>Tue, 25 Sep 2007 16:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/03/12/2006/#comment-1458</guid>
		<description>@imkas

hi! in response to your questions:

1. yes, since the monitor has multiple inputs (all different thought, notice the blue connector on my picture, that is my PC via VGA)

2. you just click the button in front on the monitor that changes the input.

3. well the sound is treated separate I have a bose system with multiple inputs which i use for my computer and PS3. (you can configure the PS3 to send the audio through a different cable like RCA or digital or even the HDMI cable completely independent on how the video is output it. )</description>
		<content:encoded><![CDATA[<p>@imkas</p>
<p>hi! in response to your questions:</p>
<p>1. yes, since the monitor has multiple inputs (all different thought, notice the blue connector on my picture, that is my PC via VGA)</p>
<p>2. you just click the button in front on the monitor that changes the input.</p>
<p>3. well the sound is treated separate I have a bose system with multiple inputs which i use for my computer and PS3. (you can configure the PS3 to send the audio through a different cable like RCA or digital or even the HDMI cable completely independent on how the video is output it. )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Connect your PS3 to the DELL 2407WFP at 1080p by imkas</title>
		<link>http://subvida.com/2006/12/03/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/#comment-1457</link>
		<dc:creator>imkas</dc:creator>
		<pubDate>Tue, 25 Sep 2007 16:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/03/12/2006/#comment-1457</guid>
		<description>Hi all, and Carlitos, both the picture u shown for the split dvi connector, the first one allow one input to two output. My questions: 

1. So, will this work if this were to be used to connect both pc and ps3 to one monitor?
2. If this works, how would one switch between ps3 and pc? 
3. How to get sound in this case? 

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi all, and Carlitos, both the picture u shown for the split dvi connector, the first one allow one input to two output. My questions: </p>
<p>1. So, will this work if this were to be used to connect both pc and ps3 to one monitor?<br />
2. If this works, how would one switch between ps3 and pc?<br />
3. How to get sound in this case? </p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Connect your PS3 to the DELL 2407WFP at 1080p by Jooooooohn</title>
		<link>http://subvida.com/2006/12/03/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/#comment-1452</link>
		<dc:creator>Jooooooohn</dc:creator>
		<pubDate>Sat, 22 Sep 2007 16:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://subvida.com/how-to-connect-your-ps3-to-the-dell-2407wfp-at-1080p/03/12/2006/#comment-1452</guid>
		<description>sound is outputed using either component or digital out
u can maunally select audio output on PS3</description>
		<content:encoded><![CDATA[<p>sound is outputed using either component or digital out<br />
u can maunally select audio output on PS3</p>
]]></content:encoded>
	</item>
</channel>
</rss>
