MediaTomb is an open source (GPL) UPnP MediaServer MediaTomb.cc
You can use MediaTomb to stream videos, music and pictures to any UPnP compatible device like the PS3. This guide is for Ubuntu 9.10 Karmic
First install MediaTomb
sudo apt-get install mediatombThis should start the mediatomb daemon as a service, if not start via:
sudo /etc/init.d/mediatomb startFind out what port its using
cat /var/log/mediatomb.log | grep http
2010-03-14 14:37:21 INFO: http://192.168.0.34:49152/Visit that url in your favourite web browser to add content to the database
PS3 modifications
To add PS3 support you need to edit the config.xml file located at /etc/mediatomb/config.xml
sudo nano -w /etc/mediatomb/config.xmlYou need to change
<protocolInfo extend="yes"/><!-- For PS3 support change to "yes" -->To
<protocolInfo extend="yes"/><!-- For PS3 support change to "yes" -->And to add avi, mp4 and vob support you need to add the lines below
<!-- Uncomment the line below for PS3 divx support -->
<map from="avi" to="video/divx"/>
<map from="mpg" to="video/mpeg"/>
<map from="vob" to="video/mpeg"/>
<map from="mp4" to="video/mp4"/>
<map from="m4v" to="video/mp4"/>
<map from="m4a" to="audio/mp4"/>Restart Mediatomb
sudo /etc/init.d/mediatomb restartFirewall, if you are running ufw then you need to do this to allow mediatomb
sudo ufw allow 1900/tcp
sudo ufw allow 1900/udp
sudo ufw allow 49152/tcp
sudo ufw allow 49152/udp
MediaTomb should automatically show up in the PS3 menu and you can stream content, note that the PS3 only supports .avi, .mp4/m4v, .mpg/.vob formats, no .mkv or ogg.



