ps3

Una forma Mas Fácil: Servidor Multimedia en Ubuntu/Linux Para nuestro PS3 y XBOX 360

En mi anterior post explicaba como configurar un servidor multimedia que funcionara en Ubuntu/Linux y la consola PS3 para poder compartir música, vídeo y fotos. El proceso lo explicaba por medio de MediaTomb en el cual es necesario configurar ciertos parámetros en los archivos de configuración, bastante fácil pero es claro que para un usuario nuevo no lo va a ser. En este mismo post me dejaron 2 comentarios donde me recomendaban probar PS3MediaServer el cual funciona de una manera mas fácil.  (casi OutOfTheBox); Pues bien lo acabo de probar y así es :D.

PS3MediaServer es un servidor Multimedia UPnP compatible con DLNA  compatible para PS3 y XBOX 360, está escrito en Java, con el propósito de transferir por streaming y transcodificar cualquier tipo de archivo multimedia, con una configuración mínima. Es una copia de seguridad con los paquetes del poderoso Mplayer / FFmpeg. Cuenta con varias características que lo hacen sin duda un poderosisimo y muy completo servidor multimedia UPnP.

Para ponerlo a funcionar debemos contar con java Runtime Enviroment, mplayer y ffmpeg en nuestro pc, para esto los descargamos como mas nos guste, Synaptyc, Centro de Software Ubuntu o por APT. por APT entramos a la consola y corremos:

$sudo apt-get install ffmpef mplayer  sun-java6-jre

Después descargamos la ultima versión disponible del PS3MediaServer desde el site oficial. (Esta disponible para Windows, Linux y MAC) :D - Yo explico para Linux - lo descomprimimos y dentro del directorio encontramos un archivo que se llama pms.jar al cual le damos permisos para ejecutar el archivo como un programa dándole clic derecho > propiedades > permisos > Permitir ejecutar el archivo como un programa y cerramos. Ahora le damos clic derecho sobre el mismo archivo y Abrir con Sun Java 6

Listo, ahora vamos a la consola y en las opciones Vídeo, Música y Fotos nos aparecerá el enlace al PS3 Media Server[hostnamePC], por omisión nos comparte toda la raiz / pero en las configuraciones podemos decirle que directorios queremos compartir ...

By hollman under 2 , PlanetUbuntu , playstation , ps3 , ubuntu
Share this | 7 comments

Servidor Multimedia en Ubuntu para el PS3

Today I decided to see how to connect the PlayStation 3 to my Ubuntu, to share multimedia content such as photo galleries, Music and Video. For this  I found MediaTomb a UPnP media server and open source (GPL) administered like a  web interface, fast, intuitive and friendly. I't allow us to transmit multimedia digital media through our local network to various UPnP devices within the latter PS3, but for this we must enable some parameters that I explain below

First, you have to download the MediaTomb from the official website or from Ubuntu repositories, as it is available. :D You can download fromt Synaptic, the Ubuntu Software Center or APT.

sudo apt-get install mediatomb

Once installed, we have to configure the network interface through which our computer MediaTomb going to work, we do this by editing the file /etc/default/mediatomb changing the line INTERFACE = "" by INTERFACE = "networkInterface"

sudo vim /etc/default/mediatomb
INTERFACE="eth0"

Now, to work withe the  console PlayStation 3 edit the file /etc/mediatomb/config.xml

sudo vim /etc/mediatomb/config.xml

In this file, under <server> add network interface:

<interface>eth0</interface>

In the same file, find <protocolInfo extend="yes"/><!-- For PS3 support change to "no" --> And change it for yes, it is as follow:

<protocolInfo extend="yes"/><!-- For PS3 support change to "yes" -->

Finally enabling the divx for the PS3 on the line

<!-- Uncomment the line below for PS3 divx support -->
<!– <map from=”avi” to=”video/divx”/> –>

And leave it like this:

<!-- Uncomment the line below for PS3 divx support -->
<map from="avi" to="video/divx"/>

Save and now swe have to start de MediaTomb daemon

sudo /etc/init.d/mediatomb start

Lunch the MediaTomb on the console and copy the last one line; the ip addres and the port (ip:port) and entered in our web browser

hollman@saboteur:~$ mediatomb &

MediaTomb UPnP Server version 0.12.0 - http://mediatomb.cc/
====================================================================
Copyright 2005-2008 Gena Batsyan, Sergey Bostandzhyan, Leonhard Wimmer.
MediaTomb is free software, covered by the GNU General Public License version 2
2010-06-06 21:27:29 INFO: Loading configuration from: /home/hollman/.mediatomb/config.xml
2010-06-06 21:27:29 INFO: Checking configuration...
2010-06-06 21:27:29 INFO: Setting filesystem import charset to UTF-8
2010-06-06 21:27:29 INFO: Setting metadata import charset to UTF-8
2010-06-06 21:27:29 INFO: Setting playlist charset to UTF-8
2010-06-06 21:27:29 INFO: Configuration check succeeded.
2010-06-06 21:27:29 INFO: Initialized port: 49152
2010-06-06 21:27:29 INFO: Server bound to: 192.168.1.114
2010-06-06 21:27:30 INFO: MediaTomb Web UI can be reached by following this link:
2010-06-06 21:27:30 INFO: http://192.168.1.114:49152/
By hollman under PlanetUbuntu , playstation , ps3 , ubuntu
Share this | 19 comments | Read more

Servidor Multimedia en Ubuntu para el PS3

El día de hoy decidí ver la forma de como conectar el PlayStation 3 a el computador con Ubuntu, para poder compartir el contenido multimedia como lo son galerías de fotos, Música y Vídeo. Para esto encontré MediaTomb un servidor de medios UPnP de código abierto (GPL) administrado por medio de interfaz web, rápido, intuitivo y agradable que nos permitirá transmitir los medios digitales multimedia a través de nuestra red local a diferentes dispositivos compatibles con UPnP entre estos el PS3, pero para esto, debemos habilitar unos parámetros que les explico a continuación.

Primero, podemos descargar el MediaTomb desde la pagina oficial o desde Ubuntu, ya que esta disponible en los repositorios :D entonces los bajamos como mas nos guste. Synaptic, desde el Centro de Software de Ubuntu o por APT.

sudo apt-get install mediatomb

Una vez instalado debemos configurar la interfaz de red de nuestro computador por la cual mediatomb va a trabajar, esto lo hacemos modificando el archivo /etc/default/mediatomb modificando la linea INTERFACE="" por INTERFACE="interfazDeRed"

sudo vim /etc/default/mediatomb
INTERFACE="eth0"

Y ahora para que nos funcione con la consola PlayStatino 3 editamos el archivo /etc/mediatomb/config.xml

sudo vim /etc/mediatomb/config.xml

en este archivo, debajo de <server> agregamos la interfaz de red

<interface>eth0</interface>

En este mismo archivo buscamos <protocolInfo extend="yes"/><!-- For PS3 support change to "no" -->

lo cambiamos por yes, que quede de la siguiente forma:

<protocolInfo extend="yes"/><!-- For PS3 support change to "yes" -->

Finalmente habilitamos divx para el PS3 en la linea

<!-- Uncomment the line below for PS3 divx support -->
<!– <map from=”avi” to=”video/divx”/> –>

Las dejamos así:

<!-- Uncomment the line below for PS3 divx support -->
<map from="avi" to="video/divx"/>

Guardamos y ahora iniciamos el demonio de MediaTomb

sudo /etc/init.d/mediatomb start

Ejecutamos el mediatomb desde la consola donde la ultima linea será la dirección ip:puerto la cual copiamos e ingresamos en nuestro navegador web

hollman@saboteur:~$ mediatomb &

MediaTomb UPnP Server version 0.12.0 - http://mediatomb.cc/
====================================================================
Copyright 2005-2008 Gena Batsyan, Sergey Bostandzhyan, Leonhard Wimmer.
MediaTomb is free software, covered by the GNU General Public License version 2
2010-06-06 21:27:29 INFO: Loading configuration from: /home/hollman/.mediatomb/config.xml
2010-06-06 21:27:29 INFO: Checking configuration...
2010-06-06 21:27:29 INFO: Setting filesystem import charset to UTF-8
2010-06-06 21:27:29 INFO: Setting metadata import charset to UTF-8
2010-06-06 21:27:29 INFO: Setting playlist charset to UTF-8
2010-06-06 21:27:29 INFO: Configuration check succeeded.
2010-06-06 21:27:29 INFO: Initialized port: 49152
2010-06-06 21:27:29 INFO: Server bound to: 192.168.1.114
2010-06-06 21:27:30 INFO: MediaTomb Web UI can be reached by following this link:
2010-06-06 21:27:30 INFO: http://192.168.1.114:49152/
By hollman under 2 , PlanetUbuntu , playstation , ps3 , ubuntu
Share this | 3 comments | Read more

Portable ID PlayStation3

As many know, I'm a frustrated gamer, I like to play but I'm not good enough and I haven't the sufienciente time for it,. I really like having a console when I bite the hand fingers to got fun..

I bougt an XBOX 360 a while ago, the truth does not last even a year with her because to play online, with this method that I like you need to buy Xbox Live membership. it's not very expensive but I think the last straw have to pay to play online, which does not happen with PlayStation. For this reason, I decide to sell it and buy a PlayStation3 which improves graphics, Blueray player and I can play online all that I want without paying more.

Now I'm more happy: D. I've been looking PS3 communities in Colombia but the truth can not find anything :(. For now I write this post and leave my site as a reference in the PS3 Portable ID to see if I get more local people.

For those want to take your Portable ID  you have to go at http://us.playstation.com/portableid/index.htm and build them. consists of the following:

My Portable ID are the follow:

By hollman under juegos , personal , playstation , ps3
Share this | 1 comment | Read more

Portable ID PlayStation3

Como muchos sabrán, soy un gamer frustrado, me gusta jugar pero no soy lo suficientemente bueno ni tengo el sufienciente tiempo para ello, pero bueno, ahí me gusta contar con una consola a la mano cuando me pican los dedos ...

Compre un XBOX 360 hace un tiempo, la verdad no dure ni un año con ella debido a que para poder jugar Online, siendo esta modalidad la que mas me gusta es necesario comprar la membresia XBOX live que no es muy cara pero me parece el colmo que tenga que pagarles para poder jugar online, cosa que no pasa con PlayStation. Por este motivo, decido venderla y comprar un PlayStation3 donde las gráficas mejoran, cuento ahora con reproductor BlueRay y puedo jugar online todo lo que quiera sin pagar mas.

Ahora soy mas feliz :D. He estado buscando comunidades PS3 en Colombia pero la verdad no encuentro nada :(. por ahora escribo este post y dejo como referencia en mi site el PS3 Portable ID a ver si consigo mas gente local.

Para quienes quieran sacar su Portable ID deben ingresar a http://us.playstation.com/portableid/index.htm y generarlo. consta de lo siguiente:

Mi Portable ID es el siguiente:

By hollman under 5 , juegos , personal , playstation , ps3
Share this | 6 comments | Read more