4

I'd like to set up an office jukebox using a Pi. I've found some decent instructions for a simple implementation, which look good as far as all the audio stuff goes.

My problem is that this requires the files to be on storage connected to the Pi. Is there any piece of software that will allow users to play a file from their own machine via the Pi?

I don't really care about interface, it could be a web interface, or even command line, but some way for people to remotely 'push' a file onto the jukeboxe's queue.

Tom Medley
  • 4,089
  • 8
  • 33
  • 46

1 Answers1

7

Just mount their shares on the PI - that's your quickest option:

pi@raspberrypi /mnt $ sudo mount -t cifs //192.168.0.107/music -o username=sasha,password=somepassword /mnt/music
pi@raspberrypi /mnt $ ls -la music/
drwxr-xr-x 0 root root        0 May 20  2007 _
drwxr-xr-x 1 root root    65536 Dec  2  2007 .
drwxr-xr-x 3 root root     4096 Feb 12 23:57 ..
drwxr-xr-x 0 root root        0 May 20  2007 #2
drwxr-xr-x 0 root root        0 May 20  2007 #4
drwxr-xr-x 0 root root        0 May 20  2007 AAVV
drwxr-xr-x 0 root root        0 May 20  2007 AL
...

A better way to organize this would be setting up a media client as mentioned above. Here is a good article on this.

abolotnov
  • 952
  • 1
  • 7
  • 16