LinuxMCE Forums

General => Users => Topic started by: ChiefQualakon on March 25, 2007, 01:58:34 am

Title: XBox 360 as a "frontend" (MD)
Post by: ChiefQualakon on March 25, 2007, 01:58:34 am
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?
Title: Re: XBox 360 as a "frontend" (MD)
Post by: cameljon on March 26, 2007, 10:38:12 pm
When I get my box up and running I'll test this out. Hopefully by this weekend.
Title: Re: XBox 360 as a "frontend" (MD)
Post by: ChiefQualakon on March 27, 2007, 07:38:19 am
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...
Title: Re: XBox 360 as a "frontend" (MD)
Post by: 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.
Title: Re: XBox 360 as a "frontend" (MD)
Post by: asgard on March 30, 2007, 12:36:27 am
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:
Code: [Select]
apt-get install gmediaserver

Code: [Select]
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[@]}