Next Generation Emulation banner

Playing audio files on Linux from another computer in a network

1496 Views 10 Replies 7 Participants Last post by  scottlc
In Windows I'm used to use my PC as an mp3/avi server, and play it's audio/video files through the LAN connection on my Lap's media player. However, it seems XMMS is not capable of doing this, meaning I have to copy a local version of the file before being able to play it.

Is there any way for XMMS or any other given Linux application to do this? (I am already able to see my PC's windows shared folders...)
1 - 11 of 11 Posts
Well you could possibly use a media center distro such as dyne:bolic.
Ic.... but is there anyway to do it without switching distros? (I'm currently using Fedora Core 3)
How are you connecting to the Windows server?

Is there some reason you can't mount your windows share with smbmount?
Well I dunno, but is it similar to accessing files on a Windows hard drive from Linux? If it's true, I use Mandrake 10.1 and have no problems playing MP3s from my Windows drive...
Proto said:
In Windows I'm used to use my PC as an mp3/avi server, and play it's audio/video files through the LAN connection on my Lap's media player. However, it seems XMMS is not capable of doing this, meaning I have to copy a local version of the file before being able to play it.

Is there any way for XMMS or any other given Linux application to do this? (I am already able to see my PC's windows shared folders...)
XMMS doesn't support samba shares, so you need to make a folder and then mount your windows shares to it. Here's an example:

Code:
$ mkdir /mnt/music
$ mount -t cifs //WinServer/Folder /mnt/music -o user=darkshin,password=lalilulelo
It should work on any distro.

If your share doesn't have a user name and password, just put something random.

Peace
Ok thanks, the mounting did the trick :)
DarkShin said:
XMMS doesn't support samba shares, so you need to make a folder and then mount your windows shares to it. Here's an example:

Code:
$ mkdir /mnt/music
$ mount -t cifs //WinServer/Folder /mnt/music -o user=darkshin,password=lalilulelo
It should work on any distro.

If your share doesn't have a user name and password, just put something random.

Peace

Quick question for my own curiosity:

Where did -t cifs come from? I checked mount's man page and cifs ins't listed as a valid type. (I do have smbfs though)
AFAIK cifs is more or less a newer version of smbfs. I just use it since that's the way it was on a Fedora FAQ I read when I first started using linux. I have also heard that cifs is faster than smbfs, but I haven't tested it myself.
For sound over network in linux you need Esound

Linux: http://www.tux.org/~ricdude/download.html
Windows: http://www.liquid-reality.de/main/projects/esound

In Xmms in the preferences select Esound as the output plugin then configure then use remote host.

export ESPEAKER=XXX.XXX.XXX.XXX also works from the command line
Frankablu said:
For sound over network in linux you need Esound

Linux: http://www.tux.org/~ricdude/download.html
Windows: http://www.liquid-reality.de/main/projects/esound

In Xmms in the preferences select Esound as the output plugin then configure then use remote host.

export ESPEAKER=XXX.XXX.XXX.XXX also works from the command line
Uhm, no. He wanted to play files locally from network shares on another machine. He did not want to play sound through another machine's eSound daemon.
1 - 11 of 11 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top