Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2017-12-19 Thread Xenthar

I got SqueezePlay running fullscreen on Ubuntu 16.04.

64-bit.

It's quite funny.

:).

Hypnotizing.



Xenthar's Profile: http://forums.slimdevices.com/member.php?userid=57935
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-06-27 Thread PasTim

skibler wrote: 
 This is very helpful, thank you! I pulled the source from svn a few days
 ago and I have 9704 (I think).
 
 The above patches get me much farther along in the compile process than
 I had been getting, but I am still stuck.
 
 http://sprunge.us/TQVN
 
 This is Fedora 17 x86_64
 
 Any ideas? I am good for copy/paste and that is about it.

Have you tried the build at
http://forums.slimdevices.com/showthread.php?93505-Squeezeplay-plays-up-to-192k
?  Worked for me.



PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-06-27 Thread skibler

Ah, no. I didn't see that before.

It works great, thank you.



skibler's Profile: http://forums.slimdevices.com/member.php?userid=35603
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-06-26 Thread skibler

brjhaverkamp wrote: 
 I tried squeezeslave(squeezeslave-ubuntu-1.1-305)
 while it plays music, which is a big plus, I miss the graphics.
 Also I wasn't able to put it in the background. It crashed when I tried
 several times. Anyone with better results?
 
 I worked a bit more on squeezeplay. I started from scratch from svn 7.7
 rev 9561), after all the things I tried I lost track of the changes I
 made.
 I only need to make two changes to get squeezeplay compiled:
 1)the change to mmx.h to get past the moveq errors
 2)the change to configure.in to get past all unused parameter errors
 with gcc 4.6
 I added the diffs below.
 I think the flac errors can be solved by installing libflac++-dev
 (ubuntu naming) but I need confirmation from someone here.
 I'm still stumped by the sound part. I installed the latest portaudio
 library (rev 1788), but that didn't help. the portaudio test program
 patest1 gives an error. Don't know if that is a lead though. other tests
 produce sound and seem ok.
 
 Regards,
 
 Bert
 
 
 Index: src/SDL-1.2.13/src/video/mmx.h
 ===
 --- src/SDL-1.2.13/src/video/mmx.h(revision 9561)
 +++ src/SDL-1.2.13/src/video/mmx.h(working copy)
 @@ -355,7 +355,7 @@
 
 #define   mmx_r2m(op, reg, mem) \
   __asm__ __volatile__ (#op  %% #reg , %0 \
 -   : =X (mem) \
 +   : =m (mem) \
 : /* nothing */ )
 
 #define   mmx_r2r(op, regs, regd) \
 
 Index: src/squeezeplay/configure.in
 ===
 --- src/squeezeplay/configure.in  (revision 9561)
 +++ src/squeezeplay/configure.in  (working copy)
 @@ -168,7 +168,7 @@
 dnl Be pedantic when compiling
 if test x$GCC = xyes
 then
 - CFLAGS=$CFLAGS -Wall -Wextra -Werror -Wdeclaration-after-statement
 -Wpo
 inter-arith -Wcast-align -Wno-unused-parameter -Wno-unused-function
 + CFLAGS=$CFLAGS -Wall -Wextra -Wdeclaration-after-statement
 -Wpointer-ar
 ith -Wcast-align -Wno-unused-parameter -Wno-unused-function
 fi
 
 CFLAGS=$CFLAGS -DSQUEEZEPLAY



This is very helpful, thank you! I pulled the source from svn a few days
ago and I have 9704 (I think).

The above patches get me much farther along in the compile process than
I had been getting, but I am still stuck.

http://sprunge.us/TQVN

This is Fedora 17 x86_64

Any ideas? I am good for copy/paste and that is about it.



skibler's Profile: http://forums.slimdevices.com/member.php?userid=35603
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-02-25 Thread simonl

I also struggled through the ALSA documentation to find something that
works.
I understand that 'hw' requires exclusive use of the soundcard.   It
fails if anything else is already using it.'plughw' is a software
interface that can share the card with other apps, or the sounds from
your desktop which may already be using it.  Hope this helps clear up
this part of the mystery!


-- 
simonl

simonl's Profile: http://forums.slimdevices.com/member.php?userid=42526
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-02-24 Thread giulio

PasTim;692247 Wrote: 
 I had to use 'plughw' instead of 'hw', and don't really understand why,
 but it works, that's the main thing :)

That is also my experience. I have never been able to use squeezeplay
with interface hw.

If somebody has a different experience and can chime in, I would really
appreciate it.

giulio


-- 
giulio

giulio's Profile: http://forums.slimdevices.com/member.php?userid=53337
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-02-24 Thread lauret

Sorry for the confusion, I also had to use the plughw. I just copied a
random entry from `aplay -L` for illutration purposes.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-02-23 Thread PasTim

lauret;692176 Wrote: 
 You should use the texual representation of your audio devices. Use
 `aplay -L` to see them. I have for instance `hw:CARD=PCH,DEV=0` for my
 analog onboard output.
Thanks a lot.  I spent considerable time trying to understand the alsa
wiki instructions on fixing the configuration, and made little
progress.  I had to use 'plughw' instead of 'hw', and don't really
understand why, but it works, that's the main thing :)


-- 
PasTim

Server on PC, 2 64-bit 2Ghz CPUs, 4GB memory (1 Million times as many as
the first computer I ever programmed).  Variously running Windows 7
Ultimate, Ubuntu 11.10 and Vortexbox 2 on VirtualBox.  All FLAC files.
Touch on Ethernet (in another room).  Analogue out over 'a bit of wire'
to ageing Quad Hi-Fi. An old (wireless) laptop controls the server using
Chrome.

PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-02-22 Thread PasTim

PasTim;691482 Wrote: 
 Thanks a lot.  I put some rather frustrated musings on another thread
 (at http://forums.slimdevices.com/showthread.php?p=691481#post691481)
 before I found this.  I now at least have some output via Squeezeplay.
I spoke too soon.

It seems that every reboot, linux decides to re-order my card numbers
randomly (2 audio cards and a USB headset).  To make it work I have to
edit the da**ned DesktopJive.lua file every bl**dy time. :(

I am sure there a mod to alsa.conf that would fix this, if I can find
the mental energy to find out what it might be, try several variations
and test each one.


-- 
PasTim

Server on PC, 2 64-bit 2Ghz CPUs, 4GB memory (1 Million times as many as
the first computer I ever programmed).  Variously running Windows 7
Ultimate, Ubuntu 11.10 and Vortexbox 2 on VirtualBox.  All FLAC files.
Touch on Ethernet (in another room).  Analogue out over 'a bit of wire'
to ageing Quad Hi-Fi. An old (wireless) laptop controls the server using
Chrome.

PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-02-22 Thread lauret

PasTim;692064 Wrote: 
 I spoke too soon.
 
 It seems that every reboot, linux decides to re-order my card numbers
 randomly (2 audio cards and a USB headset).  To make it work I have to
 edit the da**ned DesktopJive.lua file every bl**dy time. :(
 
 I am sure there a mod to alsa.conf that would fix this, if I can find
 the mental energy to find out what it might be, try several variations
 and test each one.

You should use the texual representation of your audio devices. Use
`aplay -L` to see them. I have for instance `hw:CARD=PCH,DEV=0` for my
analog onboard output.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-02-19 Thread PasTim

lauret;676699 Wrote: 
 I solved the sound problem in SqueezePlay by disabling pulseaudio while
 squeezeplay runs. The following works for me on Ubuntu 11.10. 
 
 I first copied /usr/share/alsa/alsa.conf to
 /usr/share/alsa/alsa-nopulse.conf, so that is reads:  
Code:

  sudo cp /usr/share/alsa/alsa.conf /usr/share/alsa/alsa-nopulse.conf

  
 
 Then I commented the line with /usr/share/alsa/pulse.conf (line 11)
 in alsa-nopulse.conf:  
Code:

  # /usr/share/alsa/pulse.conf

  
 
 Then there is a squeezeplay.sh script in the bin directory of
 squeezeplay which you can use to start squeezeplay. Edit the last
 line so it reads: 
Code:

  ALSA_CONFIG_PATH=/usr/share/alsa/alsa-nopulse.conf ./jive

  
 
 I also edited the file
 ~/.squeezeplay/userpath/settings/DesktopJive.lua as described in
 http://forums.slimdevices.com/showpost.php?p=674248postcount=3 to
 select the right audio device. I had to choose another device for the
 alsaEffectsDevice because it claims the output device and then
 alsaPlaybackDevice can't use it anymore. I have (I replaced the mac
 and uuid with x's):  
Code:

  settings = 
{mac=xx:xx:xx:xx:xx:xx,uuid=,alsaSampleSize=24,alsaPlaybackDevice=plughw:0,0,alsaEffectsDevice=plughw:0,1}

  
 
 The server now also transcodes 352.8kHz flacs correctly to 176.4Hz!

Thanks a lot.  I put some rather frustrated musings on another thread
(at http://forums.slimdevices.com/showthread.php?p=691481#post691481)
before I found this.  I now at least have some output via Squeezeplay.


-- 
PasTim

Server on Windows 7 Ultimate 64 bit, 2 CPU, 2GHz, 4GB, FLAC files. Touch
on Ethernet (in another room).  Analogue out over 'a bit of wire' to
ageing Quad Hi-Fi. An old (wireless) laptop controls the server using
Chrome.

PasTim's Profile: http://forums.slimdevices.com/member.php?userid=41642
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-01-13 Thread lauret

giulio;683537 Wrote: 
 
 I think you should start a new threat dedicated to slimpy. 
 

Thanks for you words, but as you already found out, it is of pre-alpha
quality, so not ready for its own thread. If I find some more time, I
will rewrite some portion of the code to use locks, I guess some of the
buffering issues will then also go away.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-01-12 Thread giulio

lauret;675390 Wrote: 
  It probably does not function very well
 on all systems at this point, because I only started writing it
 yesterday,
 but it works right here. Also, if there are any python programmers
 here,
 please take a look and provide comments, suggestions, or patches
 please.
 
 
You are an ace! I have been looking for something like this for ages.

First, it sounds very good. On the level of squeezeplay and
squeezeslave. There are a few minor issues to sort out. I am going to
keep testing it. For the time being, I can report 

1) some kind of intermittent static noise which suggests too small a
buffer. 
2) loud buzz when you pause the player in the squeezebox web interface
3) a buzz and the following error when you switch from a lower sampling
rate (e.g. 96k) to a higher sampling rate (e.g. 192K) file.

Exception in thread Thread-2:
Traceback (most recent call last):
File /usr/lib/python2.6/threading.py, line 532, in
__bootstrap_inner
self.run()
File /root/slim/modules/SlimProto.py, line 74, in run
self.recv_command()
File /root/slim/modules/SlimProto.py, line 102, in recv_command
self.parse_command(cmd_header, cmd_data)
File /root/slim/modules/SlimProto.py, line 112, in parse_command
self.get_http_header(cmd_data[18:])
File /root/slim/modules/SlimProto.py, line 120, in get_http_header
self.parent.start_buffering(http_header, server_port, server_ip,
self.pcmsamplesize, self.pcmsamplerate, self.pcmchannels)
File ./slimpy.py, line 163, in start_buffering
self.BufferThread.connect(http_header, server_port, server_ip,
pcmsamplesize, pcmsamplerate, pcmchannels)
File /root/slim/modules/Buffer.py, line 170, in connect
self.conn.putrequest(http_header_request[0],
http_header_request[1], skip_host=True, skip_accept_encoding=True)
AttributeError: 'Buffer' object has no attribute 'conn'


But it has great potential and as, I said, it already sounds very
good.

I think you should start a new threat dedicated to slimpy. 

Many thanks
Giulio


-- 
giulio

giulio's Profile: http://forums.slimdevices.com/member.php?userid=53337
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2012-01-12 Thread aubuti

lauret;676699 Wrote: 
 I solved the sound problem in SqueezePlay by disabling pulseaudio while
 squeezeplay runs. The following works for me on Ubuntu 11.10.
 snip 
Hey, thanks for this! Works great for me on Ubuntu 10.04.


-- 
aubuti

aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-19 Thread brjhaverkamp

I can confirm that squeezeplay works perfectly when pulsaudio is
disabled.
(for which I simply did an apt-get remove pulseaudio) ABBA  is now
playing happily. (no discussions on my taste please. Its simply the
first artist under A:-)
Question now is how to fix the pulseaudio interworking.

On my squeezeslave problems, I see random behaviour. My sound device
should be sharable, its a plughw device. But sometimes it is not
listed, sometimes it is. Sometimes when I start squeezeplay first,
mythtv refuses to produce sound, but when I start mythtv first,
squeezeplay is working fine.
I have to play a bit more with it to make sense of it all. But
theoretically this might one day work;-)


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-19 Thread brjhaverkamp

Just stumbled upon this post
http://forums.slimdevices.com/archive/index.php/t-83636.html
Apperently it is an older and known issue.


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-16 Thread lauret

brjhaverkamp;676973 Wrote: 
 No, not an open door at all. Good point. But a disappointment
 nevertheless.
 I had planned to run squeezeslave in the background without interfering
 with my mythtv box. So they should be able to access the same sound
 device simultaneously. With pulseaudio/alsa that shouldn't be a problem
 technically, right? But given the state of the other squeezeplayers on
 linux, I'm not surprised squeezeslave is lagging behind a bit in this
 field. One day though..

This situation is certainly not squeezeslave's fault, the audio device
handling of squeezeslave is very good, with support for JACK, ALSA and
OSS on linux.

My situation is this: if the first audio application uses hw:0,0, then
pulseaudio doesn't have any access anymore to the audio device, but if
the first audio-app uses pulse, then squeezeslave can also use pulse.
So maybe you can select another device in MythTV (if you use a hw
device that is)?


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-16 Thread simonl

lauret;677165 Wrote: 
 if the first audio application uses hw:0,0, then pulseaudio doesn't have
 any access anymore to the audio device, but if the first audio-app uses
 pulse, then squeezeslave can also use pulse. So maybe you can select
 another device in MythTV (if you use a hw device that is)?

If this is what's happening, from my (limited) understanding of ALSA,
you should be able to set other audio apps to use plughw:0,0 instead of
hw:0,0 - the plug variety is shareable between several apps and so
should not block pulseaudio.Worth a try anyway...


-- 
simonl

simonl's Profile: http://forums.slimdevices.com/member.php?userid=42526
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-15 Thread brjhaverkamp

No, not an open door at all. Good point. But a disappointment
nevertheless.
I had planned to run squeezeslave in the background without interfering
with my mythtv box. So they should be able to access the same sound
device simultaneously. With pulseaudio/alsa that shouldn't be a problem
technically, right? But given the state of the other squeezeplayers on
linux, I'm not surprised squeezeslave is lagging behind a bit in this
field. One day though..


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-14 Thread brjhaverkamp

You can edit the name? Great. Do you mean in on the Server side?
This solves my last gripe;-)


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-14 Thread lauret

I solved the sound problem in SqueezePlay by disabling pulseaudio while
squeezeplay runs. The following works for me on Ubuntu 11.10. 

I first copied /usr/share/alsa/alsa.conf to
/usr/share/alsa/alsa-nopulse.conf, so that is reads: 
Code:

sudo cp /usr/share/alsa/alsa.conf /usr/share/alsa/alsa-nopulse.conf



Then I commented the line with /usr/share/alsa/pulse.conf (line 11)
in alsa-nopulse.conf: 
Code:

# /usr/share/alsa/pulse.conf



Then there is a squeezeplay.sh script in the bin directory of
squeezeplay which you can use to start squeezeplay. Edit the last line
so it reads:
Code:

ALSA_CONFIG_PATH=/usr/share/alsa/alsa-nopulse.conf ./jive



I also edited the file ~/.squeezeplay/userpath/settings/DesktopJive.lua
as described in
http://forums.slimdevices.com/showpost.php?p=674248postcount=3 to
select the right audio device. I had to choose another device for the
alsaEffectsDevice because it claims the output device and then
alsaPlaybackDevice can't use it anymore. I have: 
Code:

settings = 
{mac=xx:xx:xx:xx:xx:xx,uuid=,alsaSampleSize=24,alsaPlaybackDevice=plughw:0,0,alsaEffectsDevice=plughw:0,1}



The server now also transcodes 352.8kHz flacs correctly to 176.4Hz!


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-14 Thread brjhaverkamp

Got it! BTW, Is there any reason why the MAC with -m isn't the actual
MAC of the network device?
I created a little shell script to make the MAC the actual MAC. now it
for sure is unique:
root@winebox:/etc# more /usr/local/bin/squeezeslave.sh
set - `ifconfig | grep -B 1 inet | head -1`
MAC=$5
/usr/local/bin/squeezeslave -F -m $MAC -M  /var/log/squeezeslave.log

While squeezeslave now works beautifully on my laptop, I still have a
challenge on the mediacentre. (a mythtv box). squeezeplay doesn't show
all devices. I want it to output to the optical output (iec958), but
squeezeplay refuses. See below the output of aplay -L and squeezeslave
-L. Any suggestions anyone?

Bert

P.S. that's good news on the squeezeplay front! So it seems to be an
incompatibility between portaudio and pulseaudio. Time for some
googling!

Bert
root@winebox:/etc# aplay -L
null
Discard all samples (playback) or generate zero samples (capture)
default:CARD=Intel
HDA Intel, ALC889A Analog
Default Audio Device
front:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
Front speakers
surround40:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
4.0 Surround output to Front and Rear speakers
surround41:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
4.1 Surround output to Front, Rear and Subwoofer speakers
surround50:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
5.0 Surround output to Front, Center and Rear speakers
surround51:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
5.1 Surround output to Front, Center, Rear and Subwoofer speakers
surround71:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
7.1 Surround output to Front, Center, Side, Rear and Woofer
speakers
iec958:CARD=Intel,DEV=0
HDA Intel, ALC889A Digital
IEC958 (S/PDIF) Digital Audio Output
hdmi:CARD=Intel,DEV=0
HDA Intel, HDMI 0
HDMI Audio Output
dmix:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
Direct sample mixing device
dmix:CARD=Intel,DEV=1
HDA Intel, ALC889A Digital
Direct sample mixing device
dmix:CARD=Intel,DEV=3
HDA Intel, HDMI 0
Direct sample mixing device
dsnoop:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
Direct sample snooping device
dsnoop:CARD=Intel,DEV=1
HDA Intel, ALC889A Digital
Direct sample snooping device
dsnoop:CARD=Intel,DEV=3
HDA Intel, HDMI 0
Direct sample snooping device
hw:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
Direct hardware device without any conversions
hw:CARD=Intel,DEV=1
HDA Intel, ALC889A Digital
Direct hardware device without any conversions
hw:CARD=Intel,DEV=3
HDA Intel, HDMI 0
Direct hardware device without any conversions
plughw:CARD=Intel,DEV=0
HDA Intel, ALC889A Analog
Hardware device with all software conversions
plughw:CARD=Intel,DEV=1
HDA Intel, ALC889A Digital
Hardware device with all software conversions
plughw:CARD=Intel,DEV=3
HDA Intel, HDMI 0
Hardware device with all software conversions

root@winebox:/etc# squeezeslave -L
Output devices:
* 1: (ALSA) hdmi (11/46)


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-14 Thread lauret

brjhaverkamp;676759 Wrote: 
 While squeezeslave now works beautifully on my laptop, I still have a
 challenge on the mediacentre. (a mythtv box). squeezeplay doesn't show
 all devices. I want it to output to the optical output (iec958), but
 squeezeplay refuses. See below the output of aplay -L and squeezeslave
 -L. Any suggestions anyone?

Maybe an open door, but when I have an audio-app open, squeezeslave
doesn't show all devices like aplay. Are you sure all applications that
make sound are closed?


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-13 Thread cliver

lauret;676302 Wrote: 
  
Code:

  -m, --mac mac_address Sets the mac address for this instance.
   Use the colon-separated notation.
   The default is 00:00:00:00:00:01.
   Squeezebox Server uses this value to distinguish
   multiple instances, allowing per-player settings.

  

Thank lauret looks interesting.
How does SBS/LMS distinguish between different instances for selection
purposes in the choose player menu?


-- 
cliver

Logitech Media Server Version: 7.7.0 - r33626 @ Mon Dec 5 13:44:03 EST
2011
Operating system: Vortexbox 2.0 (Fedora16)
Squeezebox Touch Firmware: 7.7.0-r9550
HTC HD2 running SlimCtrl 1.52
Squeezeplay 7.5.3 - r0
Squeezeslave

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-13 Thread lauret

cliver;676386 Wrote: 
 Thank lauret looks interesting.
 How does SBS/LMS distinguish between different instances for selection
 purposes in the choose player menu?

The server keeps the players apart using the MAC address. A Media
Access 
Control address (MAC address) is a unique identifier assigned to
network 
interfaces for communications on the physical network segment.
(Wikipedia) 
The network interfaces of the hardware players have a preset mac
address, I 
believe Logitech uses this range: 00:04:20:xx:xx:xx, you can look yours
up on 
the server under the information screen. 

So if you run multiple instances of squeezeslave with the default mac
address 
(00:00:00:00:00:01), the server has no way of keeping them apart. The
server 
keeps the per-player settings stored according to mac-address.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-13 Thread cliver

lauret;676390 Wrote: 
 The server keeps the players apart using the MAC address. A Media
 Access 
 Control address (MAC address) is a unique identifier assigned to
 network 
 interfaces for communications on the physical network segment.
 (Wikipedia) 
 The network interfaces of the hardware players have a preset mac
 address, I 
 believe Logitech uses this range: 00:04:20:xx:xx:xx, you can look yours
 up on 
 the server under the information screen. 
 
 So if you run multiple instances of squeezeslave with the default mac
 address 
 (00:00:00:00:00:01), the server has no way of keeping them apart. The
 server 
 keeps the per-player settings stored according to mac-address.

Thanks for the quick reply lauret, 
Sorry my question wasn't well worded. I understand how software
differentiates between different hardware/virtual hardware by mac
addressing.
My question was more how does the LMS web gui present each instance in
the choose player menu (top right). In my case with one instance
running it just shows up as Squeezeslave so how would subsequent
instances appear so that I know which one I'm selecting?


-- 
cliver

Logitech Media Server Version: 7.7.1 - r33735 @ Mon Nov 28 16:44:47 MST
2011
Operating system: Vortexbox 2.0 (Fedora16)
Squeezebox Touch: Firmware: 7.7.1-r9561
HTC HD2 running SlimCtrl 1.52
Squeezeplay 7.5.3 - r0
Squeezeslave

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-13 Thread lauret

cliver;676398 Wrote: 
 Thanks for the quick reply lauret, 
 Sorry my question wasn't well worded. I understand how software
 differentiates between different hardware/virtual hardware by mac
 addressing.
 My question was more how does the LMS web gui present each instance in
 the choose player menu (top right). In my case with one instance
 running it just shows up as Squeezeslave so how would subsequent
 instances appear so that I know which one I'm selecting?

The next squeezeslave which registers itself with another mac-address
gets the name Squeezeslave 2 ;)


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-13 Thread cliver

lauret;676399 Wrote: 
 The next squeezeslave which registers itself with another mac-address
 gets the name Squeezeslave 2 ;)
 
 You can edit the name of course, just like with hardware players.

Brilliant, thanks :-)


-- 
cliver

Logitech Media Server Version: 7.7.1 - r33735 @ Mon Nov 28 16:44:47 MST
2011
Operating system: Vortexbox 2.0 (Fedora16)
Squeezebox Touch: Firmware: 7.7.1-r9561
HTC HD2 running SlimCtrl 1.52
Squeezeplay 7.5.3 - r0
Squeezeslave

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-12 Thread cliver

brjhaverkamp;676000 Wrote: 
 I tried squeezeslave(squeezeslave-ubuntu-1.1-305)
 while it plays music, which is a big plus, I miss the graphics.
 Also I wasn't able to put it in the background. It crashed when I tried
 several times. Anyone with better results?
 
 I worked a bit more on squeezeplay. I started from scratch from svn 7.7
 rev 9561), after all the things I tried I lost track of the changes I
 made.
 I only need to make two changes to get squeezeplay compiled:
 1)the change to mmx.h to get past the moveq errors
 2)the change to configure.in to get past all unused parameter errors
 with gcc 4.6
 I added the diffs below.
 I think the flac errors can be solved by installing libflac++-dev
 (ubuntu naming) but I need confirmation from someone here.
 I'm still stumped by the sound part. I installed the latest portaudio
 library (rev 1788), but that didn't help. the portaudio test program
 patest1 gives an error. Don't know if that is a lead though. other
 tests produce sound and seem ok.
 
 Regards,
 
 Bert
 

Hi Bert, I see you have solved your squeezeslave problem :-)
I achieve the same thing running it from a desktop launcher without the
-D parameter so it runs with no terminal window open.
I then use it through LMS webui so I get the graphics from that.
It's not as slick as Squeezeplay but one advantage is you can sync it
with other players.
I will have another look at squeezeplay when I can but reasonably happy
with squeezeslave for now at least :-)


-- 
cliver

Logitech Media Server Version: 7.7.0 - r33626 @ Mon Dec 5 13:44:03 EST
2011
Operating system: Vortexbox 2.0 (Fedora16)
Squeezebox Touch Firmware: 7.7.0-r9550
HTC HD2 running SlimCtrl 1.52
Squeezeplay 7.5.3 - r0
Squeezeslave

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-12 Thread brjhaverkamp

Hi cliver,

I'm not to fond of it yet. It works, that is a big pro.. ;-) But I
can't run 2 on different machines at the same time. I assume this is
due to the fact that they both register to the server with the same
name squeezeslave.

It would be nice to have one run on my HTPC and laptop continously, so
I can direct both from my mobile phone. 

I tried to contact one of the devs (Andy Grundman) to see if/how I can
push the changes to compile squeezeplay. And maybe he has an idea about
the sound problem. But I haven't heard back yet. I'll give it a couple
of days more.

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-12 Thread lauret

brjhaverkamp;676301 Wrote: 
 Hi cliver,
 
 I'm not to fond of it yet. It works, that is a big pro.. ;-) But I
 can't run 2 on different machines at the same time. I assume this is
 due to the fact that they both register to the server with the same
 name squeezeslave.
 
 It would be nice to have one run on my HTPC and laptop continously, so
 I can direct both from my mobile phone. 
 
 I tried to contact one of the devs (Andy Grundman) to see if/how I can
 push the changes to compile squeezeplay. And maybe he has an idea about
 the sound problem. But I haven't heard back yet. I'll give it a couple
 of days more.
 
 Bert


Code:

-m, --mac mac_address Sets the mac address for this instance.
  Use the colon-separated notation.
  The default is 00:00:00:00:00:01.
  Squeezebox Server uses this value to distinguish
  multiple instances, allowing per-player settings.



-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-11 Thread brjhaverkamp

I tried squeezeslave(squeezeslave-ubuntu-1.1-305)
while it plays music, which is a big plus, I miss the graphics.
Also I wasn't able to put it in the background. It crashed when I tried
several times. Anyone with better results?

I worked a bit more on squeezeplay. I started from scratch from svn 7.7
rev 9561), after all the things I tried I lost track of the changes I
made.
I only need to make two changes to get squeezeplay compiled:
1)the change to mmx.h to get past the moveq errors
2)the change to configure.in to get past all unused parameter errors
with gcc 4.6
I added the diffs below.
I think the flac errors can be solved by installing libflac++-dev
(ubuntu naming) but I need confirmation from someone here.
I'm still stumped by the sound part. I installed the latest portaudio
library (rev 1788), but that didn't help. the portaudio test program
patest1 gives an error. Don't know if that is a lead though. other
tests produce sound and seem ok.

Regards,

Bert


Index: src/SDL-1.2.13/src/video/mmx.h
===
--- src/SDL-1.2.13/src/video/mmx.h  (revision 9561)
+++ src/SDL-1.2.13/src/video/mmx.h  (working copy)
@@ -355,7 +355,7 @@

#define mmx_r2m(op, reg, mem) \
__asm__ __volatile__ (#op  %% #reg , %0 \
- : =X (mem) \
+ : =m (mem) \
  : /* nothing */ )

#define mmx_r2r(op, regs, regd) \

Index: src/squeezeplay/configure.in
===
--- src/squeezeplay/configure.in(revision 9561)
+++ src/squeezeplay/configure.in(working copy)
@@ -168,7 +168,7 @@
dnl Be pedantic when compiling
if test x$GCC = xyes
then
-   CFLAGS=$CFLAGS -Wall -Wextra -Werror -Wdeclaration-after-statement
-Wpo
inter-arith -Wcast-align -Wno-unused-parameter -Wno-unused-function
+   CFLAGS=$CFLAGS -Wall -Wextra -Wdeclaration-after-statement
-Wpointer-ar
ith -Wcast-align -Wno-unused-parameter -Wno-unused-function
fi

CFLAGS=$CFLAGS -DSQUEEZEPLAY


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-11 Thread brjhaverkamp

OK. I found the solution to squeezeslave in the background. -M to
daemonize. RTFM...


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-08 Thread cliver

simonl;672449 Wrote: 
 Squeezeslave is a player only which runs on Debian, and behaves like
 another connected squeezebox device. You can use the web interface to
 squeezebox server to control it (and any other devices you have).  
 
 I found it much easier to get working than squeezeplay - maybe it will
 suit your needs?  (I tried it on Ubuntu rather than Mint).

I think squeezeslave may be my answer.
However, I have just tried to compile and install squeezeslave
following the wiki at
http://wiki.slimdevices.com/index.ph...d_instructions.
I didn't get any obvious errors but the wiki says the executable should
be in /bin
But in my case I find it in /proc/8782/cwd/bin
I can't seem to run it from here (nothing happens).
Any idea what I have done wrong?


-- 
cliver

SBS Version: 7.5.3 - r31792
SB Touch 7.5.3 - r9283
Squeezeplay 7.5.3 - r0
Win 7 Ultimate (64 Bit) SP1

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-08 Thread lauret

bert1e;675387 Wrote: 
 Hi I have also given up on Squeezeplay and moved to squeezeslave. I
 tried downloading the source for squeezeslave and couldnt get it to
 compile probably because I am on XUbuntu 11.10 which has a 3.x kernel.
 Got fed up and downloaded a prebuilt binary here
 http://code.google.com/p/squeezeslave/downloads/list the one I used was
 squeezeslave-1.1-305-lnx26.tar.gz so 
 
 tar -xvzf squeezeslave-1.1-305-lnx26.tar.gz 
 ./squeezeslave-ubuntu-1.1-305 -D server_ip
 
 Then I can control it and play music from the LMS web page
 Once your happy it works move the file to /usr/local/bin or somewhere
 in your path

If you create a ~/bin directory, modern ubuntu sets that directory in
$PATH when you login.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-08 Thread lauret

I guess I had to post it here instead of the SB Touch forum
(http://forums.slimdevices.com/showpost.php?p=675365postcount=339):

If anybody is willing to install the pyaudio module (when running
debian/ubuntu it is a matter of installing python-pyaudio), you can try
out
my rewrite of squeezeslave in python. It probably does not function
very well
on all systems at this point, because I only started writing it
yesterday,
but it works right here. Also, if there are any python programmers
here,
please take a look and provide comments, suggestions, or patches
please.

You can find the code right here: http://github.com/terual/slimpy
Please read the README, because you probably have to add a rule to
convert.conf and to be able to stream 192kHz, you have to patch the
server
with the provided patch.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-08 Thread bert1e

lauret;675390 Wrote: 
 
 
 You can find the code right here: http://github.com/terual/slimpy
 Please read the README, because you probably have to add a rule to
 convert.conf and to be able to stream 192kHz, you have to patch the
 server
 with the provided patch.

Excellent keep at it alternatives are good :) Regarding 192Khz cant you
just do bit rate limiting in server settings for your player? Thats what
I have to do with squeezeslave as I am at work so dont get enough
bandwidth to stream flac


-- 
bert1e

bert1e's Profile: http://forums.slimdevices.com/member.php?userid=1419
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-08 Thread lauret

bert1e;675392 Wrote: 
 Excellent keep at it alternatives are good :) Regarding 192Khz cant you
 just do bit rate limiting in server settings for your player? Thats
 what I have to do with squeezeslave as I am at work so dont get enough
 bandwidth to stream flac

Beware of the difference between 192 kbps (bitrate) and 192 kHz
(samplerate). For bitrate limited applications squeezeslave is probably
the best solution. Right now, hi-res playback (like 192kHz) only
Vortexbox Player and my player are able to do that.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-08 Thread cliver

bert1e;675387 Wrote: 
 Hi I have also given up on Squeezeplay and moved to squeezeslave. I
 tried downloading the source for squeezeslave and couldnt get it to
 compile probably because I am on XUbuntu 11.10 which has a 3.x kernel.
 Got fed up and downloaded a prebuilt binary here
 http://code.google.com/p/squeezeslave/downloads/list the one I used was
 squeezeslave-1.1-305-lnx26.tar.gz so 
 
 tar -xvzf squeezeslave-1.1-305-lnx26.tar.gz 
 ./squeezeslave-ubuntu-1.1-305 -D server_ip
 
 Then I can control it and play music from the LMS web page
 Once your happy it works move the file to /usr/local/bin or somewhere
 in your path

Just tried it and it appears to run but I don't get any display,
terminal just returns to $ prompt.
I can't see it in LMS either. Not sure what I am looking for, I assume
I should be able to select it as an additional player?

My Terminal commands and output ...

clive@Sony-Vaio ~/Packages/Squeezeslave $ tar -xvzf
squeezeslave-1.1-305-lnx26.tar.gz
squeezeslave-1.1-305
squeezeslave-i64-1.1-305
squeezeslave-ubuntu-1.1-305
LICENSE.txt
clive@Sony-Vaio ~/Packages/Squeezeslave $ ls
LICENSE.txtsqueezeslave-i64-1.1-305
squeezeslave-1.1-305   squeezeslave-ubuntu-1.1-305
squeezeslave-1.1-305-lnx26.tar.gz
clive@Sony-Vaio ~/Packages/Squeezeslave $ ./squeezeslave-ubuntu-1.1-305
-D 192.168.0.2
clive@Sony-Vaio ~/Packages/Squeezeslave $


-- 
cliver

SBS Version: 7.5.3 - r31792
SB Touch 7.5.3 - r9283
Squeezeplay 7.5.3 - r0
Win 7 Ultimate (64 Bit) SP1

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-08 Thread lauret

cliver;675395 Wrote: 
 Just tried it and it appears to run but I don't get any display,
 terminal just returns to $ prompt.
 I can't see it in LMS either. Not sure what I am looking for, I assume
 I should be able to select it as an additional player?
 
 My Terminal commands and output ...
 
 clive@Sony-Vaio ~/Packages/Squeezeslave $ tar -xvzf
 squeezeslave-1.1-305-lnx26.tar.gz
 squeezeslave-1.1-305
 squeezeslave-i64-1.1-305
 squeezeslave-ubuntu-1.1-305
 LICENSE.txt
 clive@Sony-Vaio ~/Packages/Squeezeslave $ ls
 LICENSE.txtsqueezeslave-i64-1.1-305
 squeezeslave-1.1-305   squeezeslave-ubuntu-1.1-305
 squeezeslave-1.1-305-lnx26.tar.gz
 clive@Sony-Vaio ~/Packages/Squeezeslave $ ./squeezeslave-ubuntu-1.1-305
 -D 192.168.0.2
 clive@Sony-Vaio ~/Packages/Squeezeslave $

Maybe try every of the three binaries with the option -h and see which
one gives output? An try also without the display option (-D).


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-07 Thread brjhaverkamp

No, I'm as close as you are.
Using Gcc 4.6 though. For that I removed -Werror 

I plan to see if updating portaudio and other libraries in the code
help.
But that's for the weekend most likely.

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-07 Thread agillis

cliver;673219 Wrote: 
 Hi all, been offline for a while and quite a bit has been added in my
 absence. 
 @simonl: The beauty of Sqeezeplay is it allows you to control the
 library from any computer and play your files either localy on the
 computer itself or through any connected squeezebox devices. That
 functionality alone makes it a highly desireable piece of soiftware in
 my house :-)
 
 As far as getting it working goes.. I tried getting the windows version
 running in wine but failed miserably. I've never used wine before, so am
 no expert, but it all seemed to install corectly but Inoithing happens
 when I try to run Squeezeplay (absolutely nothing).
 I tried de-installing squuezeplay and wine with the idea of trying
 again but don't seem to be able to deinstall it. I may resort to re
 installing Mint from scratch.
 
 At least the Linux versions are back up in the nightly builds now :-),
 even if theyt don't quite work :-(
 Stiil, one step at a time eh ;-)

Seems like you could do the same thing with squeezeslave and a web
browser. Plus the web interface is easier to use and does more then the
squeezeplay interface.


-- 
agillis

rip, tag, get cover art… All you do is insert the CD!
http://vortexbox.org

agillis
Lead Developer VortexBox

agillis's Profile: http://forums.slimdevices.com/member.php?userid=21140
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-07 Thread lauret

agillis;675172 Wrote: 
 Seems like you could do the same thing with squeezeslave and a web
 browser. Plus the web interface is easier to use and does more then the
 squeezeplay interface.

But without the 44.1kHz/16-bit limitation...


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-07 Thread cliver

agillis;675172 Wrote: 
 Seems like you could do the same thing with squeezeslave and a web
 browser. Plus the web interface is easier to use and does more then the
 squeezeplay interface.

Funnily enough that's just been suggested on the vortexbox forum.
Think I'll give it a go. Thanks for the suggestion.


-- 
cliver

SBS Version: 7.5.3 - r31792
SB Touch 7.5.3 - r9283
Squeezeplay 7.5.3 - r0
Win 7 Ultimate (64 Bit) SP1

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-06 Thread brjhaverkamp

Hello Lauret,

Does your solution mean you disable the flac support?
Or is something else happening?
I will look (when at home) what xxx-dev packages I have installed.
Maybe that will shed some light on the issue.
BTW, I'm on ubuntu 11.10. What distro do you use?

Also I have solved the screen refresh problem. Or at least it solved
itself.
Turned out that after building the new package, I started
build/linux/bin/squeezeplay.sh But this pointed at my old installed
squeezeplay. It is better to edit that one, or startup
build/linux/bin/jive. Much nicer.

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-06 Thread lauret

brjhaverkamp;674953 Wrote: 
 Hello Lauret,
 
 Does your solution mean you disable the flac support?
 Or is something else happening?
 I will look (when at home) what xxx-dev packages I have installed.
 Maybe that will shed some light on the issue.
 BTW, I'm on ubuntu 11.10. What distro do you use?
 
 Also I have solved the screen refresh problem. Or at least it solved
 itself.
 Turned out that after building the new package, I started
 build/linux/bin/squeezeplay.sh But this pointed at my old installed
 squeezeplay. It is better to edit that one, or startup
 build/linux/bin/jive. Much nicer.
 
 Bert

What I did what uncommenting a rule in the makefile, so that the
encoder bits also get compiled. This solved the 'undefined reference to
`FLAC__stream_encoder' errors (see previous posts). I would guess
the encoder isn't used, so enabling it doesn't do any harm.


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-06 Thread brjhaverkamp

Ha, I missed the un in uncomment :-)

In my case the line is still commented, but I have libflac-dev and
libflac++-dev installed. Maybe that is related.

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-06 Thread lauret

brjhaverkamp;675046 Wrote: 
 Ha, I missed the un in uncomment :-)
 
 In my case the line is still commented, but I have libflac-dev and
 libflac++-dev installed. Maybe that is related.
 
 Bert

Another way was to remove libsndfile, but that did also remove
pulseaudio...


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-04 Thread brjhaverkamp

OK, I got past all the errors and have a build.
I didn't see the FLAC errors aka_mgr found.
What I did was remove -Werror from the flags in
src/squeezeplay/configure.in
(Its a bit blunt, but adding -Wno-unused-variable didn't work for me
somehow)

I have a compiled squeezeplay now, but with the screen-refresh
problem..
Investigating further

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-04 Thread lauret

For anyone which sees the FLAC errors:

Uncomment the line stream_encoder.c \ (line 115) in
squeezeplay/src/flac-1.2.1/src/libFLAC/Makefile.am

Now I have some problems with tolua++...


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-12-03 Thread brjhaverkamp

Hi aka_mgr,

Did you get any further?
I've been following your steps, got to the same errors.
But I got a lot more:

src/ui/jive_textinput.c: In function 'jiveL_textinput_layout':
src/ui/jive_textinput.c:117:19: error: variable 'peer' set but not used
[-Werror=unused-but-set-variable]
cc1: all warnings being treated as errors

src/audio/mp4.c: In function 'mp4_parse_sample_table_box':
src/audio/mp4.c:345:6: error: variable 'entries' set but not used
[-Werror=unused-but-set-variable]
cc1: all warnings being treated as errors

src/audio/streambuf.c: In function 'stream_feedfromL':
src/audio/streambuf.c:817:17: error: variable 'stream' set but not used
[-Werror=unused-but-set-variable]
cc1: all warnings being treated as errors

I kept commenting lines, but gave up for now. Maybe I should turn of
this error. Need to figure out how though. Any idea why I get so many
more errors than you?

Regards,

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-30 Thread lauret

aka_mgr;672881 Wrote: 
 In SDL-1.2.13/src/video/mmx.h, there is one line to change. See 
 lists.libsdl.org/pipermail/commits-libsdl.org/2011-January/003712.html
 (Sorry, this is my first post and i am not allowed to add a real link)
 
 And then, i get this error :
  
Code:

  ...

  
 
 which i've fixed by commenting 3 lines in
 src/squeezeplay/src/ui/jive_textarea.c :
  
Code:

  ...

  
 
 
 But now, i am stuck with the following error :
  
Code:

  ...

  
 
 Anyone else ?

I have fixed the first two problems with gcc-4.4. The problems arose
with gcc-4.6. Ubuntu Oneiric has gcc-4.4 in the repositories, so I
installed that and use update-alternatives to use gcc-4.4. But your
solution is maybe better ;)

Then I had a problem with luaprofiler, which I fixed with the adding of
`LD=gcc -shared` in the makefile as described on
http://www.jfwhome.com/2009/11/22/compiling-squeezeplay-on-linux-ubuntu-amd64/

But then I am stuck just as you on the sdl-ttf part with exactly the
same error. What has libsndfile to do with sdl-ttf?

So, anyone else?


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-30 Thread cliver

OK. I'm trying to compile and install squeezeplay from the tarball in
the nightly builds section
http://downloads.slimdevices.com/nightly/?ver=7.7.
I'm no expert so I may be missing something but when I unpacked the
tarball I was expecting to find a configure script to run to create a
makefile to compile with. No such files exist. The unpacked tarball
seems to have created the binaries directly, I get 

clive@Sony-Vaio ~/Packages/squeezeplay $ ls
bin  include  lib  man  share  squeezeplay-7.7.1-9557.tgz

The bin folder already has the files to run squeezeplay, the same as
when I installed it through software manager. Running these doesn't
work though.
Have I missed something out or is the tarball in this instance
pre-complied?
Confused ;-(


-- 
cliver

SBS Version: 7.5.3 - r31792
SB Touch 7.5.3 - r9283
Squeezeplay 7.5.3 - r0
Win 7 Ultimate (64 Bit) SP1

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-30 Thread brjhaverkamp

lauret;673608 Wrote: 
 I have fixed the first two problems with gcc-4.4. The problems arose
 with gcc-4.6. Ubuntu Oneiric has gcc-4.4 in the repositories, so I
 installed that and use update-alternatives to use gcc-4.4. But your
 solution is maybe better ;)
 
 Then I had a problem with luaprofiler, which I fixed with the adding of
 `LD=gcc -shared` in the makefile as described on
 http://www.jfwhome.com/2009/11/22/compiling-squeezeplay-on-linux-ubuntu-amd64/
 
 But then I am stuck just as you on the sdl-ttf part with exactly the
 same error. What has libsndfile to do with sdl-ttf?
 
 So, anyone else?

Your discovery about gcc 4.4 is  a good one. At least we now understand
where this came from.
wrt sdl, I'll try to give it a shot this weekend again. Looks like a
missing include. Trick is to find out which one. Does googling for one
of the missing references give a clue?

Regards,

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-30 Thread lauret

According to this:
http://birdslikewires.co.uk/articles/compiling-squeezeplay Ubuntu 9.10
is the last version to compile Squeezeplay. I tried setting 9.10 up in
a VM, but it is obsolete so many neccesary packages are not available
anymore. Then I tried to setup a 8.04 LTS, but I can't seem to compile
a recent ALSA on it (to use USB Audio Class 2.0) because of the old
kernel...

Of course, it would be best if we get Squeezeplay to compile on a
recent distro!


-- 
lauret

lauret's Profile: http://forums.slimdevices.com/member.php?userid=17632
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-28 Thread cliver

simonl;672449 Wrote: 
 Squeezeslave is a player only which runs on Debian, and behaves like
 another connected squeezebox device. You can use the web interface to
 squeezebox server to control it (and any other devices you have).  
 
 I found it much easier to get working than squeezeplay - maybe it will
 suit your needs?  (I tried it on Ubuntu rather than Mint).

Hi all, been offline for a while and quite a bit has been added in my
absence. 
@simonl: The beauty of Sqeezeplay is it allows you to control the
library from any computer and play your files either localy on the
computer itself or through any connected squeezebox devices. That
functionality alone makes it a highly desireable piece of soiftware in
my house :-)

As far as getting it working goes.. I tried getting the windows version
running in wine but failed miserably. I've never used wine before, so am
no expert, but it all seemed to install corectly but Inoithing happens
when I try to run Squeezeplay (absolutely nothing).
I tried de-installing squuezeplay and wine with the idea of trying
again but don't seem to be able to deinstall it. I may resort to re
installing Mint from scratch.

At least the Linux versions are back up in the nightly builds now :-),
even if theyt don't quite work :-(
Stiil, one step at a time eh ;-)


-- 
cliver

SBS Version: 7.5.3 - r31792
SB Touch 7.5.3 - r9283
Squeezeplay 7.5.3 - r0
Win 7 Ultimate (64 Bit) SP1

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-27 Thread Mnyb

brjhaverkamp;672921 Wrote: 
 Hello Aka_mgr,
 
 Thanks for your reply. Are these changes on top of the ones in 
 http://www.jfwhome.com/2009/11/22/compiling-squeezeplay-on-linux-ubuntu-amd64/
 Or are those outdated and unneeded (at least the portaudio library
 upgrade seems to be still valid)
 
 Who is able to feed in those patches back into squeezeplay? Mnyb, are
 you a developer?
 
 Regards,
 
 Bert

Oh no I'm not a dev :) you are way better on this than me .

But we have a bugzilla and the sources you already found.
You can provide a patch via bugzilla

http://bugs.slimdevices.com/

http://svn.slimdevices.com/jive/

People do provide patches but I'm not sure of the process ?

I would ask for guidance by the devs Micheal Herger or Andy Grundman .


-- 
Mnyb


Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad 64gB wifi +3g with iPengHD  SqueezePad
(in storage SB3, reciever )

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-26 Thread brjhaverkamp

I just downloaded and installed 
squeezeplay_7.7.1~9556_all.deb
However, it doesn't quite work.
The display doesn't get refreshed correctly. text is overwritten by new
text.
When started from a terminal I get a lot of these errors:
2026 10:30:51.447 WARN   squeezeplay.ui.draw - _load_image:207
Error loading tile image
/opt/squeezeplay/share/jive/applets/WQVGAsmallSkin/images/Text_Entry/Keyboard_Touch/keyboard_bkgrd_br.png:
Unsupported image format

2026 10:30:51.447 WARN   squeezeplay.ui.draw - _load_image:207
Error loading tile image
/opt/squeezeplay/share/jive/applets/WQVGAsmallSkin/images/Text_Entry/Keyboard_Touch/keyboard_bkgrd_b_wvert.png:
Unsupported image format

2026 10:30:51.447 WARN   squeezeplay.ui.draw - _load_image:207
Error loading tile image
/opt/squeezeplay/share/jive/applets/WQVGAsmallSkin/images/Text_Entry/Keyboard_Touch/keyboard_divider_vert.png:
Unsupported image format

Does anyone have an idea how to solve this?

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-26 Thread Mnyb

You are rigth NOW i remeber ,rigth the later verions are like this :-/
you get  a broken fulkl screens something during the setup, as you
can't read whats going on you don't get any further.

Just tried it again, completely broken


-- 
Mnyb


Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad 64gB wifi +3g with iPengHD  SqueezePad
(in storage SB3, reciever )

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-26 Thread brjhaverkamp

Well, I discovered that trying to resize the window of Squeezeplay
refreshes the display. So resizing after every step you do, you can get
quite far into the setup menu, I tried some things, other theme, etc.
but to no avail. And its quite laborious and gets boring fast :-)

Also tried compiling from source(svn), but it gives an error in SDL:
gcc -I/home/bert/lab/squeezeplay7.7/squeezeplay//build/linux/include
-I/home/bert/lab/squeezeplay7.7/squeezeplay//build/linux/include/SDL
-I/home/bert/lab/squeezeplay7.7/squeezeplay//build/linux/include/freetype2
-g -fPIC -I./include -D_GNU_SOURCE=1 -fvisibility=hidden -DXTHREADS
-DXFREE86_KEYSYMS -D_REENTRANT -DHAVE_LINUX_VERSION_H -c
./src/video/SDL_RLEaccel.c -o build/SDL_RLEaccel.o
./src/video/SDL_RLEaccel.c: Assembler messages:
./src/video/SDL_RLEaccel.c:831: Error: operand type mismatch for
`movq'
./src/video/SDL_RLEaccel.c:831: Error: operand type mismatch for
`movq'
./src/video/SDL_RLEaccel.c:831: Error: operand type mismatch for
`movq'
./src/video/SDL_RLEaccel.c:831: Error: operand type mismatch for
`movq'
./src/video/SDL_RLEaccel.c:930: Error: operand type mismatch for
`movq'
./src/video/SDL_RLEaccel.c:930: Error: operand type mismatch for
`movq'
./src/video/SDL_RLEaccel.c:930: Error: operand type mismatch for
`movq'
./src/video/SDL_RLEaccel.c:930: Error: operand type mismatch for
`movq'
make[1]: *** [build/SDL_RLEaccel.lo] Error 1
make[1]: Leaving directory
`/home/bert/lab/squeezeplay7.7/squeezeplay/src/SDL-1.2.13'
make: *** [sdl] Error 2

Google is not much use (one page in chinese with the same error) Can
anyone help figure this out? Does SDL need updating? I run ubuntu 11.10
with SDL 1.2.14. Squeezeplay has 1.2.13. 

And lastly: are the changes to the source described in
http://www.jfwhome.com/2009/11/22/compiling-squeezeplay-on-linux-ubuntu-amd64/
still valid? 

Regards,

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-26 Thread aka_mgr

In SDL-1.2.13/src/video/mmx.h, there is one line to change. See 
lists.libsdl.org/pipermail/commits-libsdl.org/2011-January/003712.html
(Sorry, this is my first post and i am not allowed to add a real link)

And then, i get this error :

Code:

src/ui/jive_textarea.c: In function ‘wordwrap’:
  src/ui/jive_textarea.c:528:8: error: variable ‘line_start’ set but not used 
[-Werror=unused-but-set-variable]
  cc1: all warnings being treated as errors



which i've fixed by commenting 3 lines in
src/squeezeplay/src/ui/jive_textarea.c :

Code:

528 //unused: char *line_start = ptr;
  572   //unused: line_start = ptr;
  633   //unused: line_start = ptr;




But now, i am stuck with the following error :

Code:

gcc -I/home/akamgr/squeezeplay/squeezeplay//build/linux/include 
-I/home/akamgr/squeezeplay/squeezeplay//build/linux/include/SDL 
-I/home/akamgr/squeezeplay/squeezeplay//build/linux/include/freetype2 -g -fPIC 
-I/home/akamgr/squeezeplay/squeezeplay//build/linux/include/freetype2 
-I/home/akamgr/squeezeplay/squeezeplay//build/linux/include 
-I/home/akamgr/squeezeplay/squeezeplay//build/linux/include/SDL -D_GNU_SOURCE=1 
-D_REENTRANT -o showfont showfont.o -Wl,-rpath 
-Wl,/home/akamgr/squeezeplay/squeezeplay//build/linux/lib  
-L/home/akamgr/squeezeplay/squeezeplay//build/linux/lib ./.libs/libSDL_ttf.a 
/home/akamgr/squeezeplay/squeezeplay//build/linux/lib/libfreetype.a -lz 
/home/akamgr/squeezeplay/squeezeplay//build/linux/lib/libSDL.a -lasound -lm 
-ldl /usr/lib/libesd.so -lpulse-simple -lpulse -laudio -lXt -lX11 -lXext 
-lpthread
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_set_bits_per_sample'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_set_metadata'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_new'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_set_sample_rate'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_init_stream'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_finish'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_set_channels'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_delete'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__StreamEncoderInitStatusString'
  /usr/lib/x86_64-linux-gnu/libsndfile.so.1: undefined reference to 
`FLAC__stream_encoder_process_interleaved'
  collect2: ld a retourné 1 code d'état d'exécution
  make[1]: *** [showfont] Erreur 1
  make[1]: quittant le répertoire « 
/home/akamgr/squeezeplay/squeezeplay/src/SDL_ttf-2.0.8 »
  make: *** [sdl-ttf] Erreur 2



Anyone else ?


-- 
aka_mgr

aka_mgr's Profile: http://forums.slimdevices.com/member.php?userid=51721
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-26 Thread brjhaverkamp

Hello Aka_mgr,

Thanks for your reply. Are these changes on top of the ones in 
http://www.jfwhome.com/2009/11/22/compiling-squeezeplay-on-linux-ubuntu-amd64/
Or are those outdated and unneeded (at least the portaudio library
upgrade seems to be still valid)

Who is able to feed in those patches back into squeezeplay? Mnyb, are
you a developer?

Regards,

Bert


-- 
brjhaverkamp

brjhaverkamp's Profile: http://forums.slimdevices.com/member.php?userid=51707
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-25 Thread Mnyb

SqueezePlay is now avaible as a debian installer again .

http://downloads.slimdevices.com/nightly/index.php?ver=7.7

Something was wrong with the build system :) it was not intended to be
removed.


-- 
Mnyb


Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad 64gB wifi +3g with iPengHD  SqueezePad
(in storage SB3, reciever )

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


[SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-24 Thread cliver

I have tried and tried, without success, get SqueezePlay running on my
mint 11 laptop.
So, is there any suitable alternative?
I am after an app that does pretty much what Squeezeplay does.
i.e. connects to SB Media server on my vortexbox, Lets me browse the
library and play it either locally or through my Squeezebox devices.
Exactly what Squeezeplay does on my windows machines.
Any ideas?


-- 
cliver

SBS Version: 7.5.3 - r31792
SB Touch 7.5.3 - r9283
Squeezeplay 7.5.3 - r0
Win 7 Ultimate (64 Bit) SP1

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-24 Thread Mnyb

Do you have wine on your mint box try the windows version in wine ?


-- 
Mnyb


Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad 64gB wifi +3g with iPengHD  SqueezePad
(in storage SB3, reciever )

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-24 Thread cliver

Mnyb;672357 Wrote: 
 Do you have wine on your mint box try the windows version in wine ?

Now that's a thought, Managed to avoid the need for wine so far but
guess I'll give it a go.
Still think it should be better supported though and have a Linux
version. IMHO of course ;-)


-- 
cliver

SBS Version: 7.5.3 - r31792
SB Touch 7.5.3 - r9283
Squeezeplay 7.5.3 - r0
Win 7 Ultimate (64 Bit) SP1

cliver's Profile: http://forums.slimdevices.com/member.php?userid=43289
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-24 Thread Mnyb

cliver;672382 Wrote: 
 Now that's a thought, Managed to avoid the need for wine so far but
 guess I'll give it a go.
 Still think it should be better supported though and have a Linux
 version. IMHO of course ;-)

There was had a linux version sort of, but as you noticed on some
installs the sound does not work ever ? they removed the Debian
installer of it ? might also be a bug in the build process as it rarely
works the demands is not that high after it thus no one have noticed
until now .

Some programs are easy to compile yourself, but rarely offerings from
the squeezebox source :)

I have not noticed until today that they are not building a Linux
SqueezePlay anymore . I've used ther7.3 and 7.4 and then I sort of gave
up on the native linux version


-- 
Mnyb


Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad 64gB wifi +3g with iPengHD  SqueezePad
(in storage SB3, reciever )

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix


Re: [SlimDevices: Unix] Linux alternative to SqueezePlay?

2011-11-24 Thread simonl

Squeezeslave is a player only which runs on Debian, and behaves like
another connected squeezebox device. You can use the web interface to
squeezebox server to control it (and any other devices you have).  

I found it much easier to get working than squeezeplay - maybe it will
suit your needs?  (I tried it on Ubuntu rather than Mint).


-- 
simonl

simonl's Profile: http://forums.slimdevices.com/member.php?userid=42526
View this thread: http://forums.slimdevices.com/showthread.php?t=91834

___
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix