SqueezePlay for Joggler (Native, Ubuntu & SQPOS)
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Thanks for the reply, I have posted on the Squeezbox forums:
http://forums.logitech.com/t5/MySqueeze ... d-p/809515
Ian
http://forums.logitech.com/t5/MySqueeze ... d-p/809515
Ian
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
If you have no luck there, try the geekier, back-end forums (perhaps in the DIY forum).
http://forums.slimdevices.com/
http://forums.slimdevices.com/
BirdsLikeWires - Get fresh builds of Debian Bullseye, Bookworm, and Trixie for OpenFrame with the latest 5.10, 6.1, and 6.12 kernels! 

-
- Posts: 1
- Joined: Sun Mar 18, 2012 10:53 am
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Thanks very much for the package; very nice.
I noticed that my Ubuntu joggler was 100% CPU running "seq" (I know another uer who has suffered from this too). Having now suffered myself, I investigated, upgraded to 1.32 and re-checked.
There's a bug in /opt/squeezeplay/bin/sqpbacklightj.sh. The problem is that if the shell script is run with a parameter of "0", it calls out to "seq" as "./seq 0 0 0" which never terminates until it has emitted an infinite number of zeros; hence the 100% CPU. The code on line 31 is supposed to guard against this, but doesn't becuase it tries to use "==" whereas it should use "=" or "-eq".
Testcase:
With the shipped code this doesn't terminate burning 100% CPU; with fix it terminates.
Note there are also two other places where "==" is used, which should probably be "=" ("-eq" is only valid for numeric comparisons):
Testcase:
$ ./sqpbacklightj.sh 0 debug
I did a quick search for other shell scripts that may have similar problems and only turned up togglepanel.sh, but I haven't investigated that script further.
I noticed that my Ubuntu joggler was 100% CPU running "seq" (I know another uer who has suffered from this too). Having now suffered myself, I investigated, upgraded to 1.32 and re-checked.
There's a bug in /opt/squeezeplay/bin/sqpbacklightj.sh. The problem is that if the shell script is run with a parameter of "0", it calls out to "seq" as "./seq 0 0 0" which never terminates until it has emitted an infinite number of zeros; hence the 100% CPU. The code on line 31 is supposed to guard against this, but doesn't becuase it tries to use "==" whereas it should use "=" or "-eq".
Code: Select all
$ diff sqpbacklightj.sh sqpbacklightj.sh.orig
31c31
< if [ "$STEP" -eq "0" ]; then
---
> if [ "$STEP" == "0" ]; then
Code: Select all
$ cd /opt/squeezeplay/bin
$ ./sqpbacklightj.sh 0
Note there are also two other places where "==" is used, which should probably be "=" ("-eq" is only valid for numeric comparisons):
Code: Select all
93c93
< if [ "$1" = "-h" ]; then
---
> if [ "$1" == "-h" ]; then
151c151
< if [ "$2" = "debug" 2>/dev/null ]; then
---
> if [ "$2" == "debug" 2>/dev/null ]; then
$ ./sqpbacklightj.sh 0 debug
I did a quick search for other shell scripts that may have similar problems and only turned up togglepanel.sh, but I haven't investigated that script further.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
After suffering from stuttering playback with certain streams (mainly the iPlayer streams - using the Triode plugin) on the native OS I decided to give Ubuntu a try.
I've installed Ubuntu 11.10 (Btrfs) with the latest version of Squeezeplay (1.32). I've been impressed with this setup, and on the whole the playback of these streams has been much improved. I have had a strange problem though, where selecting certain streams causes the SqueezePlay software to completely crash. Here's an example of a couple of these streams:
Title: BBC Radio 1 England
URL: http://opml.radiotime.com/Tune.ashx?id= ... 7d0e361819
Bitrate: 128 kbps
Title: talkSPORT
URL: http://opml.radiotime.com/Tune.ashx?id= ... ff5fb39cce
Bitrate: 32 kbps
Both of my Joggler's (both using a wired connection) exhibit the same problem.
On the Native OS (using the basic asound.conf file) these streams play back chipmunk style.
I'm using a linux box (Ubuntu 10.04.2 - Linux XBMCLive 2.6.32-29-generic) as the server, running the latest version of Logitech Media Server. I've also recreated the same problem connecting to Logitech Media Server on my Windows 7 laptop.
I've checked the Logitech Media Server Log File and can't see any entries related to this issue. Is there a log file on the Joggler that may be written to with the error? If so, let me know and I'll recreate the problem and post that here.
If anyone has any solutions it would be much appreciated.
Thanks
I've installed Ubuntu 11.10 (Btrfs) with the latest version of Squeezeplay (1.32). I've been impressed with this setup, and on the whole the playback of these streams has been much improved. I have had a strange problem though, where selecting certain streams causes the SqueezePlay software to completely crash. Here's an example of a couple of these streams:
Title: BBC Radio 1 England
URL: http://opml.radiotime.com/Tune.ashx?id= ... 7d0e361819
Bitrate: 128 kbps
Title: talkSPORT
URL: http://opml.radiotime.com/Tune.ashx?id= ... ff5fb39cce
Bitrate: 32 kbps
Both of my Joggler's (both using a wired connection) exhibit the same problem.
On the Native OS (using the basic asound.conf file) these streams play back chipmunk style.
I'm using a linux box (Ubuntu 10.04.2 - Linux XBMCLive 2.6.32-29-generic) as the server, running the latest version of Logitech Media Server. I've also recreated the same problem connecting to Logitech Media Server on my Windows 7 laptop.
I've checked the Logitech Media Server Log File and can't see any entries related to this issue. Is there a log file on the Joggler that may be written to with the error? If so, let me know and I'll recreate the problem and post that here.
If anyone has any solutions it would be much appreciated.
Thanks
SqueezePlay for Joggler (Standalone Native and Ubuntu)
Fantastic, Andy - I notice this effect just last week and you've saved me the bug hunt! I'll make sure this gets sorted as soon as possible in the download.Andy Webber wrote:There's a bug in /opt/squeezeplay/bin/sqpbacklightj.sh. The problem is that if the shell script is run with a parameter of "0", it calls out to "seq" as "./seq 0 0 0" which never terminates until it has emitted an infinite number of zeros; hence the 100% CPU.
BirdsLikeWires - Get fresh builds of Debian Bullseye, Bookworm, and Trixie for OpenFrame with the latest 5.10, 6.1, and 6.12 kernels! 

SqueezePlay for Joggler (Standalone Native and Ubuntu)
Now, I think on the O2 OS you'd need to enable logging by including a '> /media/log/SqueezePlay.log' after the './jive' command in /media/opt/squeezeplay/bin/squeezeplay.sh. Didn't want to write too much unnecessary stuff to the internal flash, you see.oggie wrote:Is there a log file on the Joggler that may be written to with the error? If so, let me know and I'll recreate the problem and post that here.
BirdsLikeWires - Get fresh builds of Debian Bullseye, Bookworm, and Trixie for OpenFrame with the latest 5.10, 6.1, and 6.12 kernels! 

Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
I'm only able to recreate the problem on Ubuntu - how would I go about enabling logging on there?roobarb! wrote:Now, I think on the O2 OS you'd need to enable logging by including a '> /media/log/SqueezePlay.log' after the './jive' command in /media/opt/squeezeplay/bin/squeezeplay.sh. Didn't want to write too much unnecessary stuff to the internal flash, you see.oggie wrote:Is there a log file on the Joggler that may be written to with the error? If so, let me know and I'll recreate the problem and post that here.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
I think it should already be logging to /var/log/squeezeplay.log. If it isn't, just do the same thing, but direct the output (with >) to a writable location (eg. the joggler home directory).oggie wrote:I'm only able to recreate the problem on Ubuntu - how would I go about enabling logging on there?
BirdsLikeWires - Get fresh builds of Debian Bullseye, Bookworm, and Trixie for OpenFrame with the latest 5.10, 6.1, and 6.12 kernels! 

Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
I had the same chipmunk issue yesterday on the Native OS with the Radio 1 stream. Only a couple of times, though. This is when playing through the Joggler's own audio hardware.oggie wrote: On the Native OS (using the basic asound.conf file) these streams play back chipmunk style.
If you drill into the 'TuneIn Options' context menu item, you should see a choice of streams. I narrowed the issue down to the AAC 56k stream. 128k & 48k streams worked fine. As did the WMA streams (add a 'wma' to your 'formats=' if you want these).
By default, the server will connect to the 'best' (128k AAC) stream. But it is possible that that might fail, in which case I think the 'second best' stream will be tried. I think that is likely to be the 56k AAC stream and, for reasons outlined below, I think that's probably what happened in my case.
Be aware that the server will, by default, transcode these AAC streams into a FLAC stream which the Joggler will then play back.
Looking at the Jive log output I observed that Jive reported the FLAC stream sourced from the 56k AAC stream as having a sample rate of 32,000, whereas the other two (which played ok) were at 44,100. The sample rate of 32,000 may be a characteristic of the particular AAC encoding used for the 56k stream.
That 32,000 sample rate is, I suspect, the source of the problem on my Native OS system. I use the 'bald hardware only' version of the ALSA configuration file, posted somewhere on this thread.
Someone who understands ALSA configuration on the Joggler might be able to show us how to persuade ALSA to turn a 32,000 sample rate stream into a sample rate that the (Intel ?) hardware understands. Because I suspect that is at the root of my problem and, perhaps, yours.
Although it's not really a problem for me, because I'm not using the Joggler's audio for playback !
PS: I am now wondering if the faad decoder on the server is 'doing the right thing'. I am not familiar with the intricacies of this newer AAC encoding.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Are you running Logitech Media Server on your PC or on the Joggler?mrw wrote:...As did the WMA streams (add a 'wma' to your 'formats=' if you want these)...
I have the server on the Joggler and the PlayWMA plugin won't work because Mplayer isn't installed.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Good comment. I'm running the server on a PC that does handle the PlayWMA plugin. I see now that WMA would not be an option if I were running the server on the Joggler, unless I'd got Mplayer sorted out first.gegs wrote:Are you running Logitech Media Server on your PC or on the Joggler?mrw wrote:...As did the WMA streams (add a 'wma' to your 'formats=' if you want these)...
I have the server on the Joggler and the PlayWMA plugin won't work because Mplayer isn't installed.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
I think that is the case. I had to install mplayer on my server to get wma streams to work. Still not managed to get them working though.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Ok, I've just tried playing the following stream...roobarb! wrote:I think it should already be logging to /var/log/squeezeplay.log. If it isn't, just do the same thing, but direct the output (with >) to a writable location (eg. the joggler home directory).
Title: talkSPORT
URL: http://opml.radiotime.com/Tune.ashx?id= ... ff5fb39cce
and SqueezePlay completely crashed. The log file (/var/log/squeezeplay.log) is here:
Code: Select all
Squeezeplay 7.7.2 r1821:9626MS
ALSA lib conf.c:3312:(snd_config_hooks_call) Cannot open shared library libasound_module_conf_pulse.so
ALSA lib pcm.c:2212:(snd_pcm_open_noupdate) Unknown PCM default
ALSA lib conf.c:3312:(snd_config_hooks_call) Cannot open shared library libasound_module_conf_pulse.so
ALSA lib control.c:882:(snd_ctl_open_noupdate) Invalid CTL hw:0
ALSA lib pcm.c:2212:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2212:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2212:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
ALSA lib setup.c:565:(add_elem) Cannot obtain info for CTL elem (MIXER,'IEC958 Capture Switch',0,0,0): No such file or directory
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
bt_audio_service_open: connect() failed: Connection refused (111)
ALSA lib pcm_dmix.c:957:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
ALSA lib pcm_dmix.c:957:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
ALSA lib pcm_dmix.c:957:(snd_pcm_dmix_open) The dmix plugin supports only playback stream
[: 97: 888: unexpected operator
[0;33m20120319 18:15:33.647 INFO squeezeplay - JiveMain.lua:273 SqueezePlay version 7.7.2 r1821:9626MS[0m
[0;33m20120319 18:15:33.821 INFO squeezeplay.ui.draw - jiveL_initSDL:181 800,480 32 bits/pixel 4 bytes/pixel [R<<16 G<<8 B<<0][0m
[0;33m20120319 18:15:33.821 INFO squeezeplay.ui.draw - jiveL_initSDL:182 Hardware acceleration is not available[0m
[0;33m20120319 18:15:34.170 INFO squeezeplay.applets - AppletManager.lua:91 User Path: /home/joggler/.squeezeplay/userpath[0m
[0;33m20120319 18:15:34.522 INFO squeezeplay.applets - AppletManager.lua:317 Registering: DesktopJive[0m
[0;31m20120319 18:15:35.023 ERROR audio.output - decode_alsa_fork:178 jive_alsa failed to start[0m
[0;33m20120319 18:15:35.192 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupSoundEffects[0m
[0;33m20120319 18:15:35.208 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Shortcuts[0m
[0;33m20120319 18:15:35.211 INFO squeezeplay.applets - AppletManager.lua:317 Registering: AboutJive[0m
[0;33m20120319 18:15:35.213 INFO squeezeplay.applets - AppletManager.lua:317 Registering: AlarmSnooze[0m
[0;33m20120319 18:15:35.214 INFO squeezeplay.applets - AppletManager.lua:317 Registering: BlankScreen[0m
[0;33m20120319 18:15:35.228 INFO squeezeplay.applets - AppletManager.lua:317 Registering: ChooseMusicSource[0m
[0;33m20120319 18:15:35.240 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Clock[0m
[0;33m20120319 18:15:35.252 INFO squeezeplay.applets - AppletManager.lua:317 Registering: CustomizeHomeMenu[0m
[0;33m20120319 18:15:35.253 INFO squeezeplay.applets - AppletManager.lua:317 Registering: DebugSkin[0m
[0;33m20120319 18:15:35.254 INFO squeezeplay.applets - AppletManager.lua:317 Registering: DebugTouch[0m
[0;33m20120319 18:15:35.255 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Experiments[0m
[0;33m20120319 18:15:35.256 INFO squeezeplay.applets - AppletManager.lua:317 Registering: FullscreenSkin[0m
[0;33m20120319 18:15:35.260 INFO squeezeplay.applets - AppletManager.lua:317 Registering: HttpAuth[0m
[0;33m20120319 18:15:35.288 INFO squeezeplay.applets - AppletManager.lua:317 Registering: ImageViewer[0m
[0;33m20120319 18:15:35.292 INFO squeezeplay.applets - AppletManager.lua:317 Registering: InfoBrowser[0m
[0;33m20120319 18:15:35.294 INFO squeezeplay.applets - AppletManager.lua:317 Registering: JogglerBacklight[0m
[0;33m20120319 18:15:35.315 INFO squeezeplay.applets - AppletManager.lua:317 Registering: JogglerRegistration[0m
[0;33m20120319 18:15:35.320 INFO squeezeplay.applets - AppletManager.lua:317 Registering: JogglerStandby[0m
[0;33m20120319 18:15:35.325 INFO squeezeplay.applets - AppletManager.lua:317 Registering: LogSettings[0m
[0;33m20120319 18:15:35.329 INFO squeezeplay.applets - AppletManager.lua:317 Registering: MacroPlay[0m
[0;33m20120319 18:15:35.341 INFO squeezeplay.applets - AppletManager.lua:317 Registering: NowPlaying[0m
[0;33m20120319 18:15:35.348 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Playback[0m
[0;33m20120319 18:15:35.349 INFO squeezeplay.applets - AppletManager.lua:317 Registering: QVGAbaseSkin[0m
[0;33m20120319 18:15:35.351 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Quit[0m
[0;33m20120319 18:15:35.364 INFO squeezeplay.applets - AppletManager.lua:317 Registering: ScreenSavers[0m
[0;33m20120319 18:15:35.365 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Screenshot[0m
[0;33m20120319 18:15:35.369 INFO squeezeplay.applets - AppletManager.lua:317 Registering: ScriptPlay[0m
[0;33m20120319 18:15:35.371 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SelectPlayer[0m
[0;33m20120319 18:15:35.389 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SelectSkin[0m
[0;33m20120319 18:15:35.398 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupAppletInstaller[0m
[0;33m20120319 18:15:35.402 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupDateTime[0m
[0;33m20120319 18:15:35.404 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupLanguage[0m
[0;33m20120319 18:15:35.413 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupNetTest[0m
[0;33m20120319 18:15:35.425 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupSqueezebox[0m
[0;33m20120319 18:15:35.432 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupWallpaper[0m
[0;33m20120319 18:15:35.436 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SetupWelcome[0m
[0;33m20120319 18:15:35.455 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SlimBrowser[0m
[0;33m20120319 18:15:35.520 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SlimDiscovery[0m
[0;33m20120319 18:15:35.534 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SlimMenus[0m
[0;33m20120319 18:15:35.559 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Spotify[0m
[0;32m20120319 18:15:35.559 WARN audio.decode - SpotifyMeta.lua:27 Spotify decoder not available, disabling Spotify support[0m
[0;33m20120319 18:15:35.562 INFO squeezeplay.applets - AppletManager.lua:317 Registering: SqueezeNetworkPIN[0m
[0;33m20120319 18:15:35.562 INFO squeezeplay.applets - AppletManager.lua:317 Registering: UdapControl[0m
[0;33m20120319 18:15:35.570 INFO squeezeplay.applets - AppletManager.lua:317 Registering: WQVGAsmallSkin[0m
[0;33m20120319 18:15:35.572 INFO squeezeplay.applets - AppletManager.lua:317 Registering: Demo[0m
[0;33m20120319 18:15:35.648 INFO squeezebox.server - SlimServer.lua:628 wakeOnLan(): Sending WOL to d0:27:88:80:da:8c[0m
[0;33m20120319 18:15:35.649 INFO squeezebox.player - LocalPlayer.lua:203 connectToServer(): connecting localPlayer to serverSlimServer {Media Center} via internal call[0m
[0;33m20120319 18:15:35.654 INFO squeezeplay - JiveMain.lua:593 select skin: WQVGAsmallSkin[0m
[0;33m20120319 18:15:35.827 INFO squeezeplay.applets - AppletManager.lua:708 store settings: SetupAppletInstaller[0m
[0;33m20120319 18:15:36.689 INFO applet.SlimDiscovery - SlimDiscoveryApplet.lua:632 selected SqueezePlay[0m
[0;33m20120319 18:15:36.689 INFO applet.SlimMenus - SlimMenusApplet.lua:1162 SlimMenusApplet:notify_playerCurrent(LocalPlayer {SqueezePlay})[0m
[0;33m20120319 18:15:36.689 INFO applet.SlimMenus - SlimMenusApplet.lua:1230 No server, Fetching initial server, SlimServer {Media Center}[0m
[0;33m20120319 18:15:36.689 INFO applet.SlimMenus - SlimMenusApplet.lua:1239 player changed from:false to LocalPlayer {SqueezePlay} but server not yet connected[0m
[0;33m20120319 18:15:36.690 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:306 notify_playerCurrent(LocalPlayer {SqueezePlay})[0m
[0;33m20120319 18:15:36.717 INFO net.slimproto - SlimProto.lua:592 connect to 192.168.0.102 (192.168.0.102)[0m
[0;32m20120319 18:15:36.719 WARN audio.decode - Playback.lua:143 Cannot find active network interface[0m
[0;33m20120319 18:15:36.719 INFO net.slimproto - SlimProto.lua:152 Send HELO: reconnect-bit=0 bytesReceived(H,L)=0,0[0m
[0;33m20120319 18:15:36.762 INFO audio.decode - decode_start_handler:279 init decoder mp3[0m
[0;33m20120319 18:15:36.762 INFO audio.decode - Playback.lua:476 connect 82.197.66.102:80 GET /talksport_uk HTTP/1.0
[0m
[0;33m20120319 18:15:36.762 INFO audio.decode - Playback.lua:479 GET /talksport_uk HTTP/1.0Cache-Control: no-cacheConnection: closeAccept: */*Host: 82.197.66.102User-Agent: iTunes/4.7.1 (Linux; N; Debian; i686-linux; EN; utf8) SqueezeCenter, Squeezebox Server, Logitech Media Server/7.7.1/33735Icy-Metadata: 1[0m
[0;33m20120319 18:15:37.065 INFO squeezebox.server - SlimServer.lua:710 connected Media Center[0m
[0;33m20120319 18:15:37.066 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:360 notify_serverConnected: SlimServer {Media Center} is now connected[0m
[0;33m20120319 18:15:37.067 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:363 local player connection status is false[0m
[0;33m20120319 18Expression 'SetApproximateSampleRate( pcm, hwParams, sr )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2067
Expression 'PaAlsaStreamComponent_InitialConfigure( &self->playback, outParams, self->primeBuffers, hwParamsPlayback, &realSr )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2745
Expression 'PaAlsaStream_Configure( stream, inputParameters, outputParameters, sampleRate, framesPerBuffer, &inputLatency, &outputLatency, &hostBufferSizeMode )' failed in 'src/hostapi/alsa/pa_linux_alsa.c', line: 2866
:15:37.112 INFO applet.SlimDiscovery - SlimDiscoveryApplet.lua:453 connected SqueezePlay[0m
[0;33m20120319 18:15:37.113 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:306 notify_playerCurrent(LocalPlayer {SqueezePlay})[0m
[0;33m20120319 18:15:37.113 INFO applet.SlimMenus - SlimMenusApplet.lua:1162 SlimMenusApplet:notify_playerCurrent(LocalPlayer {SqueezePlay})[0m
[0;33m20120319 18:15:37.114 INFO applet.SlimMenus - SlimMenusApplet.lua:1323 not registered or not yet connected with SN, so not fetching SN menus. connected:false[0m
[0;33m20120319 18:15:37.114 INFO applet.SlimMenus - SlimMenusApplet.lua:1245 player changed from:false to LocalPlayer {SqueezePlay} for server: SlimServer {Media Center} from server: SlimServer {Media Center}[0m
[0;33m20120319 18:15:37.114 INFO applet.SlimMenus - SlimMenusApplet.lua:1253
Subscribing to /slim/menustatus/
00:50:20:57:e5:88[0m
[0;32m20120319 18:15:37.117 WARN applet.AlarmSnooze - AlarmSnoozeApplet.lua:333 notify_playerConnected: LocalPlayer {SqueezePlay} nil[0m
[0;32m20120319 18:15:37.117 WARN applet.AlarmSnooze - AlarmSnoozeApplet.lua:336 notify_playerConnected(): setting self.server to: SlimServer {Media Center}[0m
[0;33m20120319 18:15:37.185 INFO applet.SlimMenus - SlimMenusApplet.lua:502 _menuSink(42) SlimServer {Media Center} menuDirective: nil isCurrentServer:true[0m
[0;33m20120319 18:15:37.185 INFO applet.SlimMenus - SlimMenusApplet.lua:632 Eliminated myMusic node from server, since now handled locally[0m
[0;33m20120319 18:15:37.241 INFO squeezeplay.applets - AppletManager.lua:708 store settings: ImageViewer[0m
[0;33m20120319 18:15:38.070 INFO applet.SlimMenus - SlimMenusApplet.lua:802 hiding any 'connecting to server' popup after menu response from current server, SlimServer {Media Center}[0m
[0;33m20120319 18:15:38.173 INFO applet.ChooseMusicSource - ChooseMusicSourceApplet.lua:543 Hiding popup, exists?: nil[0m
[0;33m20120319 18:15:38.184 INFO squeezebox.server - SlimServer.lua:722 self.mac being set to---->d0:27:88:80:da:8c[0m
[0;33m20120319 18:15:38.223 INFO applet.NowPlaying - NowPlayingApplet.lua:399 notify_playerDigitalVolumeControl: 1[0m
[0;33m20120319 18:15:38.223 INFO applet.SlimBrowser - SlimBrowserApplet.lua:3739 notify_playerDigitalVolumeControl()1[0m
[0;32m20120319 18:15:38.223 WARN applet.AlarmSnooze - AlarmSnoozeApplet.lua:323 notify_playerModeChange: - audioState is 0[0m
[0;32m20120319 18:15:38.223 WARN applet.AlarmSnooze - AlarmSnoozeApplet.lua:135 notify_playerAlarmState received for LocalPlayer {SqueezePlay} with alarmState of none[0m
[0;32m20120319 18:15:38.223 WARN applet.AlarmSnooze - AlarmSnoozeApplet.lua:140 **************************** notify_playerAlarmState received: none nil[0m
[0;33m20120319 18:15:38.223 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:179 no alarm set, clearing settings[0m
[0;33m20120319 18:15:38.223 INFO squeezeplay.applets - AppletManager.lua:708 store settings: AlarmSnooze[0m
[0;33m20120319 18:15:38.332 INFO squeezebox.server - SlimServer.lua:710 connected mysqueezebox.com[0m
[0;33m20120319 18:15:38.332 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:360 notify_serverConnected: SlimServer {mysqueezebox.com} is now connected[0m
[0;33m20120319 18:15:38.332 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:363 local player connection status is true[0m
[0;33m20120319 18:15:38.332 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:370 local player->server is SlimServer {Media Center}[0m
[0;33m20120319 18:15:38.332 INFO applet.SlimMenus - SlimMenusApplet.lua:1323 not registered or not yet connected with SN, so not fetching SN menus. connected:true[0m
[0;33m20120319 18:15:38.366 INFO squeezebox.server - SlimServer.lua:722 self.mac being set to---->nil[0m
[0;32m20120319 18:15:38.436 WARN audio.output - decode_portaudio_openstream:337 PA error Invalid sample rate[0m
[0;32m20120319 18:15:38.436 WARN audio.output - decode_portaudio_openstream:344 PA error Invalid stream pointer[0m
[0;31m20120319 18:15:38.436 ERROR squeezeplay - segv_handler:300 SIGSEGV squeezeplay 7.7.2 r1821:9626MS[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - Backtrack:[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - ./jive() [0x8065f7f][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - ./jive() [0x80664a0][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - [0xb77bc400][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - ./jive() [0x80f7b7f][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - ./jive() [0x80f0765][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - ./jive() [0x812dc08][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - ./jive() [0x814c8a5][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - /lib/i386-linux-gnu/libpthread.so.0(+0x6d31) [0xb756bd31][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - /lib/i386-linux-gnu/libc.so.6(clone+0x5e) [0xb74bb0ce][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - Memory map:[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - 08048000-081b0000 r-xp 00000000 00:10 138958 /opt/squeezeplay/bin/jive[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - 081b0000-081b7000 rw-p 00168000 00:10 138958 /opt/squeezeplay/bin/jive[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - 081b7000-084f8000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - 0a2c1000-0a96b000 rw-p 00000000 00:00 0 [heap][0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b564a000-b56d3000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b575c000-b57e2000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b582e000-b584a000 r-xp 00000000 00:10 6064 /lib/i386-linux-gnu/libgcc_s.so.1[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b584a000-b584b000 r--p 0001b000 00:10 6064 /lib/i386-linux-gnu/libgcc_s.so.1[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b584b000-b584c000 rw-p 0001c000 00:10 6064 /lib/i386-linux-gnu/libgcc_s.so.1[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b584c000-b5851000 r-xp 00000000 00:10 6074 /lib/i386-linux-gnu/libnss_dns-2.13.so[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b5851000-b5852000 r--p 00004000 00:10 6074 /lib/i386-linux-gnu/libnss_dns-2.13.so[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b5852000-b5853000 rw-p 00005000 00:10 6074 /lib/i386-linux-gnu/libnss_dns-2.13.so[0m
[0;33m20120319 18:15:38.437 INFO squeezeplay - b5853000-b5855000 r-xp 00000000 00:10 5250 /lib/libnss_mdns4_minimal.so.2[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b5855000-b5856000 r--p 00001000 00:10 5250 /lib/libnss_mdns4_minimal.so.2[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b5856000-b5857000 rw-p 00002000 00:10 5250 /lib/libnss_mdns4_minimal.so.2[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b5868000-b5869000 ---p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b5869000-b5889000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b5889000-b588a000 ---p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b588a000-b63fd000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b63fd000-b6408000 r-xp 00000000 00:10 6075 /lib/i386-linux-gnu/libnss_files-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6408000-b6409000 r--p 0000a000 00:10 6075 /lib/i386-linux-gnu/libnss_files-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6409000-b640a000 rw-p 0000b000 00:10 6075 /lib/i386-linux-gnu/libnss_files-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b640a000-b6414000 r-xp 00000000 00:10 6077 /lib/i386-linux-gnu/libnss_nis-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6414000-b6415000 r--p 00009000 00:10 6077 /lib/i386-linux-gnu/libnss_nis-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6415000-b6416000 rw-p 0000a000 00:10 6077 /lib/i386-linux-gnu/libnss_nis-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6416000-b641e000 r-xp 00000000 00:10 6073 /lib/i386-linux-gnu/libnss_compat-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b641e000-b641f000 r--p 00007000 00:10 6073 /lib/i386-linux-gnu/libnss_compat-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b641f000-b6420000 rw-p 00008000 00:10 6073 /lib/i386-linux-gnu/libnss_compat-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6420000-b6434000 r-xp 00000000 00:10 15364 /usr/lib/i386-linux-gnu/alsa-lib/libasound_module_pcm_bluetooth.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6434000-b6435000 r--p 00013000 00:10 15364 /usr/lib/i386-linux-gnu/alsa-lib/libasound_module_pcm_bluetooth.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6435000-b6436000 rw-p 00014000 00:10 15364 /usr/lib/i386-linux-gnu/alsa-lib/libasound_module_pcm_bluetooth.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6436000-b645f000 r-xp 00000000 00:10 15332 /usr/lib/i386-linux-gnu/libvorbis.so.0.4.5[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b645f000-b6460000 r--p 00028000 00:10 15332 /usr/lib/i386-linux-gnu/libvorbis.so.0.4.5[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6460000-b6461000 rw-p 00029000 00:10 15332 /usr/lib/i386-linux-gnu/libvorbis.so.0.4.5[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6461000-b65c7000 r-xp 00000000 00:10 15333 /usr/lib/i386-linux-gnu/libvorbisenc.so.2.0.8[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b65c7000-b65d8000 r--p 00165000 00:10 15333 /usr/lib/i386-linux-gnu/libvorbisenc.so.2.0.8[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b65d8000-b65d9000 rw-p 00176000 00:10 15333 /usr/lib/i386-linux-gnu/libvorbisenc.so.2.0.8[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b65d9000-b694c000 rw-s 00000000 00:04 950277 /SYSV0000de01 (deleted)[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b694c000-b6ac4000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6ac6000-b6acc000 r-xp 00000000 00:10 15287 /usr/lib/i386-linux-gnu/libogg.so.0.7.1[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6acc000-b6acd000 r--p 00005000 00:10 15287 /usr/lib/i386-linux-gnu/libogg.so.0.7.1[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6acd000-b6ace000 rw-p 00006000 00:10 15287 /usr/lib/i386-linux-gnu/libogg.so.0.7.1[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6ace000-b6ae3000 r-xp 00000000 00:10 6072 /lib/i386-linux-gnu/libnsl-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6ae3000-b6ae4000 r--p 00015000 00:10 6072 /lib/i386-linux-gnu/libnsl-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6ae4000-b6ae5000 rw-p 00016000 00:10 6072 /lib/i386-linux-gnu/libnsl-2.13.so[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6ae5000-b6ae7000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6ae7000-b6aec000 r-xp 00000000 00:10 15202 /usr/lib/i386-linux-gnu/libasyncns.so.0.3.1[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6aec000-b6aed000 r--p 00004000 00:10 15202 /usr/lib/i386-linux-gnu/libasyncns.so.0.3.1[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6aed000-b6aee000 rw-p 00005000 00:10 15202 /usr/lib/i386-linux-gnu/libasyncns.so.0.3.1[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6aee000-b6b59000 r-xp 00000000 00:10 15317 /usr/lib/i386-linux-gnu/libsndfile.so.1.0.24[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6b59000-b6b5b000 rw-p 0006b000 00:10 15317 /usr/lib/i386-linux-gnu/libsndfile.so.1.0.24[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6b5b000-b6b5f000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6b5f000-b6b67000 r-xp 00000000 00:10 6096 /lib/i386-linux-gnu/libwrap.so.0.7.6[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6b67000-b6b69000 rw-p 00007000 00:10 6096 /lib/i386-linux-gnu/libwrap.so.0.7.6[0m
[0;33m20120319 18:15:38.438 INFO squeezeplay - b6b69000-b6bb0000 r-xp 00000000 00:10 6058 /lib/i386-linux-gnu/libdbus-1.so.3.5.7[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6bb0000-b6bb2000 rw-p 00046000 00:10 6058 /lib/i386-linux-gnu/libdbus-1.so.3.5.7[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6bb2000-b6c15000 r-xp 00000000 00:10 15307 /usr/lib/i386-linux-gnu/libpulsecommon-1.0.so[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6c15000-b6c17000 rw-p 00062000 00:10 15307 /usr/lib/i386-linux-gnu/libpulsecommon-1.0.so[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6c17000-b6c1a000 r-xp 00000000 00:10 137812 /opt/squeezeplay/lib/lua/5.1/json.so[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6c1a000-b6c1b000 rw-p 00002000 00:10 137812 /opt/squeezeplay/lib/lua/5.1/json.so[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6c1b000-b6c1c000 ---p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6c1c000-b6c3c000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6c3c000-b6db3000 rw-s 00000000 00:04 917513 /SYSV00000000 (deleted)[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6db3000-b6ded000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6df0000-b6e3c000 r-xp 00000000 00:10 15306 /usr/lib/i386-linux-gnu/libpulse.so.0.13.4[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e3c000-b6e3e000 rw-p 0004b000 00:10 15306 /usr/lib/i386-linux-gnu/libpulse.so.0.13.4[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e41000-b6e4f000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e4f000-b6e58000 r-xp 00000000 00:10 15186 /usr/lib/i386-linux-gnu/libXcursor.so.1.0.2[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e58000-b6e59000 r--p 00008000 00:10 15186 /usr/lib/i386-linux-gnu/libXcursor.so.1.0.2[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e59000-b6e5a000 rw-p 00009000 00:10 15186 /usr/lib/i386-linux-gnu/libXcursor.so.1.0.2[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e5a000-b6e5c000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e60000-b6e66000 r-xp 00000000 00:10 15268 /usr/lib/i386-linux-gnu/libjson.so.0.0.1[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e66000-b6e68000 rw-p 00005000 00:10 15268 /usr/lib/i386-linux-gnu/libjson.so.0.0.1[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e68000-b6e6b000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e6b000-b6e6c000 r--p 00432000 00:10 19222 /usr/lib/locale/locale-archive[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6e6c000-b6eac000 r--p 002bd000 00:10 19222 /usr/lib/locale/locale-archive[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b6eac000-b70ac000 r--p 00000000 00:10 19222 /usr/lib/locale/locale-archive[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70ac000-b70b3000 r-xp 00000000 00:10 15194 /usr/lib/i386-linux-gnu/libXrandr.so.2.2.0[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70b3000-b70b4000 r--p 00006000 00:10 15194 /usr/lib/i386-linux-gnu/libXrandr.so.2.2.0[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70b4000-b70b5000 rw-p 00007000 00:10 15194 /usr/lib/i386-linux-gnu/libXrandr.so.2.2.0[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70b5000-b70be000 r-xp 00000000 00:10 15195 /usr/lib/i386-linux-gnu/libXrender.so.1.3.0[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70be000-b70bf000 r--p 00008000 00:10 15195 /usr/lib/i386-linux-gnu/libXrender.so.1.3.0[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70bf000-b70c0000 rw-p 00009000 00:10 15195 /usr/lib/i386-linux-gnu/libXrender.so.1.3.0[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70c0000-b70d1000 r-xp 00000000 00:10 15189 /usr/lib/i386-linux-gnu/libXext.so.6.4.0[0m
[0;33m20120319 18:15:38.439 INFO squeezeplay - b70d1000-b70d2000 r--p 00010000 00:10 15189 /usr/lib/i386-linux-gnu/libXext.so.6.4.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70d2000-b70d3000 rw-p 00011000 00:10 15189 /usr/lib/i386-linux-gnu/libXext.so.6.4.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70d3000-b70d8000 r-xp 00000000 00:10 15188 /usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70d8000-b70d9000 r--p 00004000 00:10 15188 /usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70d9000-b70da000 rw-p 00005000 00:10 15188 /usr/lib/i386-linux-gnu/libXdmcp.so.6.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70da000-b70dc000 r-xp 00000000 00:10 15184 /usr/lib/i386-linux-gnu/libXau.so.6.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70dc000-b70dd000 r--p 00001000 00:10 15184 /usr/lib/i386-linux-gnu/libXau.so.6.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70dd000-b70de000 rw-p 00002000 00:10 15184 /usr/lib/i386-linux-gnu/libXau.so.6.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70de000-b70fb000 r-xp 00000000 00:10 15339 /usr/lib/i386-linux-gnu/libxcb.so.1.1.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70fb000-b70fc000 r--p 0001c000 00:10 15339 /usr/lib/i386-linux-gnu/libxcb.so.1.1.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70fc000-b70fd000 rw-p 0001d000 00:10 15339 /usr/lib/i386-linux-gnu/libxcb.so.1.1.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b70fd000-b722e000 r-xp 00000000 00:10 15183 /usr/lib/i386-linux-gnu/libX11.so.6.3.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b722e000-b722f000 ---p 00131000 00:10 15183 /usr/lib/i386-linux-gnu/libX11.so.6.3.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b722f000-b7230000 r--p 00131000 00:10 15183 /usr/lib/i386-linux-gnu/libX11.so.6.3.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7230000-b7232000 rw-p 00132000 00:10 15183 /usr/lib/i386-linux-gnu/libX11.so.6.3.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7232000-b7233000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7233000-b7236000 r-xp 00000000 00:10 137814 /opt/squeezeplay/lib/lua/5.1/mime/core.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7236000-b7237000 rw-p 00002000 00:10 137814 /opt/squeezeplay/lib/lua/5.1/mime/core.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7237000-b723e000 r--s 00000000 00:10 15651 /usr/lib/i386-linux-gnu/gconv/gconv-modules.cache[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b723e000-b7242000 r-xp 00000000 00:10 15190 /usr/lib/i386-linux-gnu/libXfixes.so.3.1.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7242000-b7243000 r--p 00003000 00:10 15190 /usr/lib/i386-linux-gnu/libXfixes.so.3.1.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7243000-b7244000 rw-p 00004000 00:10 15190 /usr/lib/i386-linux-gnu/libXfixes.so.3.1.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7244000-b73e9000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b73e9000-b755f000 r-xp 00000000 00:10 6053 /lib/i386-linux-gnu/libc-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b755f000-b7561000 r--p 00176000 00:10 6053 /lib/i386-linux-gnu/libc-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7561000-b7562000 rw-p 00178000 00:10 6053 /lib/i386-linux-gnu/libc-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7562000-b7565000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7565000-b757c000 r-xp 00000000 00:10 6085 /lib/i386-linux-gnu/libpthread-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b757c000-b757d000 r--p 00016000 00:10 6085 /lib/i386-linux-gnu/libpthread-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b757d000-b757e000 rw-p 00017000 00:10 6085 /lib/i386-linux-gnu/libpthread-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b757e000-b7581000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7581000-b7584000 r-xp 00000000 00:10 6059 /lib/i386-linux-gnu/libdl-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7584000-b7585000 r--p 00002000 00:10 6059 /lib/i386-linux-gnu/libdl-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7585000-b7586000 rw-p 00003000 00:10 6059 /lib/i386-linux-gnu/libdl-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b7586000-b75ae000 r-xp 00000000 00:10 6069 /lib/i386-linux-gnu/libm-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b75ae000-b75af000 r--p 00028000 00:10 6069 /lib/i386-linux-gnu/libm-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b75af000-b75b0000 rw-p 00029000 00:10 6069 /lib/i386-linux-gnu/libm-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b75b0000-b769c000 r-xp 00000000 00:10 15201 /usr/lib/i386-linux-gnu/libasound.so.2.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b769c000-b76a0000 r--p 000eb000 00:10 15201 /usr/lib/i386-linux-gnu/libasound.so.2.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76a0000-b76a1000 rw-p 000ef000 00:10 15201 /usr/lib/i386-linux-gnu/libasound.so.2.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76a1000-b76a8000 r-xp 00000000 00:10 6087 /lib/i386-linux-gnu/librt-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76a8000-b76a9000 r--p 00006000 00:10 6087 /lib/i386-linux-gnu/librt-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76a9000-b76aa000 rw-p 00007000 00:10 6087 /lib/i386-linux-gnu/librt-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76aa000-b76d2000 r-xp 00000000 00:10 137795 /opt/squeezeplay/lib/libportaudio.so.2.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76d2000-b76d3000 rw-p 00028000 00:10 137795 /opt/squeezeplay/lib/libportaudio.so.2.0.0[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76d3000-b76d4000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76d4000-b76e7000 r-xp 00000000 00:10 6086 /lib/i386-linux-gnu/libresolv-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76e7000-b76e8000 r--p 00012000 00:10 6086 /lib/i386-linux-gnu/libresolv-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76e8000-b76e9000 rw-p 00013000 00:10 6086 /lib/i386-linux-gnu/libresolv-2.13.so[0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76e9000-b76eb000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.440 INFO squeezeplay - b76eb000-b7705000 r-xp 00000000 00:10 137798 /opt/squeezeplay/lib/libvorbisidec.so.1.0.2[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7705000-b7706000 rw-p 0001a000 00:10 137798 /opt/squeezeplay/lib/libvorbisidec.so.1.0.2[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7706000-b771f000 r-xp 00000000 00:10 137797 /opt/squeezeplay/lib/libmad.so.0.2.1[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b771f000-b7720000 rw-p 00018000 00:10 137797 /opt/squeezeplay/lib/libmad.so.0.2.1[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7720000-b775f000 r-xp 00000000 00:10 137796 /opt/squeezeplay/lib/libFLAC.so.8.2.0[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b775f000-b7760000 rw-p 0003e000 00:10 137796 /opt/squeezeplay/lib/libFLAC.so.8.2.0[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7760000-b7773000 r-xp 00000000 00:10 6097 /lib/i386-linux-gnu/libz.so.1.2.3.4[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7773000-b7774000 r--p 00012000 00:10 6097 /lib/i386-linux-gnu/libz.so.1.2.3.4[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7774000-b7775000 rw-p 00013000 00:10 6097 /lib/i386-linux-gnu/libz.so.1.2.3.4[0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7775000-b7776000 rw-p 00000000 00:00 0 [0m
[0;33m20120319 18:15:38.441 INFO squeezeplay - b7776000-b779e000 r-xp 00000000 00:10 6084 /li
Last edited by oggie on Mon Mar 19, 2012 9:23 pm, edited 1 time in total.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
I am running squeezeplay under ubuntu. If I search for Talksport under "Internet Radio" it plays ok (says stream is from tunein). How do you enter a specific URL for a stream? I can then try your above stream.
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Ahh, ok. When I use "Web Control" from LMS, I can see that the actual URL of the stream I was playing is:
http://opml.radiotime.com/Tune.ashx?id= ... b7dc6f7717
File format: MP3
Bitrate: 32kpbs CBR
http://opml.radiotime.com/Tune.ashx?id= ... b7dc6f7717
File format: MP3
Bitrate: 32kpbs CBR
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Thanks for testing this. I've just tried the URL you posted, and after starting to connect (can see the text and logo appear momentarily) SqueezePlay crashes. The same happens on my other Joggler.johnnygal wrote:Ahh, ok. When I use "Web Control" from LMS, I can see that the actual URL of the stream I was playing is:
http://opml.radiotime.com/Tune.ashx?id= ... b7dc6f7717
File format: MP3
Bitrate: 32kpbs CBR
I would put it down to missing libraries on the Linux machine I'm running LMC from, but I can recreate the same problem from LMC running on my Windows 7 laptop.

Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
With SqueezePlay (1.32) running on Ubuntu 11.10 (Btrfs) I can no longer access the context menu's (Hide from Home Menu, Save to Favorites etc.) by long pressing. When running this version of SqueezePlay on the stock OS the long press for context menu works fine.
When in the Ubuntu desktop long press acts as right-click. Could this be interfering with the functionality of SqueezePlay?
When in the Ubuntu desktop long press acts as right-click. Could this be interfering with the functionality of SqueezePlay?
SqueezePlay for Joggler (Standalone Native and Ubuntu)
Yes, that's exactly what's happening. In /etc/X11 there's a config file that sets up that behaviour. Lose that and reboot (or maybe just change the timeout) and you should be fine. Can't remember exact file off the top of my head.oggie wrote:When in the Ubuntu desktop long press acts as right-click. Could this be interfering with the functionality of SqueezePlay?
BirdsLikeWires - Get fresh builds of Debian Bullseye, Bookworm, and Trixie for OpenFrame with the latest 5.10, 6.1, and 6.12 kernels! 

Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Good work!Andy Webber wrote: I noticed that my Ubuntu joggler was 100% CPU running "seq" (I know another uer who has suffered from this too). Having now suffered myself, I investigated, upgraded to 1.32 and re-checked.
I'd worked oout where it was but I guess I've got too much C and not enough shell script to spot the "==" problem!
Re: SqueezePlay for Joggler (Standalone Native and Ubuntu)
Thanks Roobarb, between yourself and Buzz I've got this working now (it was the /etc/X11/xorg.conf.d/99-buttonemulation.conf file).roobarb! wrote:Yes, that's exactly what's happening. In /etc/X11 there's a config file that sets up that behaviour. Lose that and reboot (or maybe just change the timeout) and you should be fine. Can't remember exact file off the top of my head.oggie wrote:When in the Ubuntu desktop long press acts as right-click. Could this be interfering with the functionality of SqueezePlay?
If I can just solve the crashing issue now it'll be 100%
