News:

Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com

Main Menu

XBox 360 as a "frontend" (MD)

Started by ChiefQualakon, March 25, 2007, 01:58:34 AM

Previous topic - Next topic

ChiefQualakon

I know that there are free linux media servers that the 360 can interface with and access the same way it can with the Windows Media Center, but will LinuxMCE be able to do that as well?

The problem (as far as I know, and from what I've learned playing with free media servers) with this feat is that the 360 will only accept the "wmv" codec (and perhaps "avi" but I can't remember).  Some media servers would transcode it to "wmv" on the fly before sending it and that (sorta) worked.  It was slow and laggy, but it worked.  Would LinuxMCE be able to do that?
[url=http://www.4freefile.com]4FreeFile Productions[/url]

cameljon

When I get my box up and running I'll test this out. Hopefully by this weekend.

ChiefQualakon

Thanks, because I'd really like to know.  This might be the deciding factor of whether or not I use LinuxMCE or GeexBoX and MythTV alone...
[url=http://www.4freefile.com]4FreeFile Productions[/url]

krzy123

I'd like to know something similar.  If linuxMCE supports UPnP (either as a server or client).  This is how the Xbox360 works with WindowsMCE Connect.  Right now I have a UPnP share from a windows pc and would like to share/stream it to my Ubuntu box.  I know GeeXBox can do this, but its interface currently leaves alot to be desired.

asgard

Quote from: krzy123 on March 27, 2007, 02:20:01 PM
I'd like to know something similar.  If linuxMCE supports UPnP (either as a server or client).  This is how the Xbox360 works with WindowsMCE Connect.  Right now I have a UPnP share from a windows pc and would like to share/stream it to my Ubuntu box.  I know GeeXBox can do this, but its interface currently leaves alot to be desired.

UPNP support is not added yet, but you can use gmediaserver application from ubuntu to stream audio files on the network using UPNP. you can type for example this code in a startup script that can run on your hybrid:

apt-get install gmediaserver



audio_dirs=""
for dir in /home/user_*/data/audio /home/user_*/data/other /home/public/data/audio /home/public/data/other ;do
    [[ ! -d $dir ]] && continue
    audio_dirs=($audio_dirs "$dir")
done

echo "# Serving audion files from : ${audio_dirs[@]}"
killall gmediaserver 2>/dev/null
gmediaserver --friendly-name="LinuxMCE" -b ${audio_dirs[@]}