[SlimDevices: Plugins] LMS experiences with beagelbone black...???

2013-08-28 Thread Oskar242000

I´m trying to setup a beagelbone black with logitech media server using
debian wheezy 7.1 hardfloat. Hoping that the faster CPU compared to the
RasPI or GoFlex would give some nice performance improvements. But
somehow LMS runs pretty unstable with no hints in the logs.

I installed LMS with the patched perl modules from
http://allthingspi.webspace.virginmedia.com/lms.php. LMS comes up and
works really well and fast,  but after some hours the WEGUI is not
reachable any more...

Has someone similar experiences or did someone mange to run LMS stable
on beagelbone black debian wheezy 7.1 hardfloat ?

I think it has something to do with the perl modules...

Thanks for your help 

Oskar



Oskar242000's Profile: http://forums.slimdevices.com/member.php?userid=48634
View this thread: http://forums.slimdevices.com/showthread.php?t=99533

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


Re: [SlimDevices: Plugins] LMS experiences with beagelbone black...???

2013-08-28 Thread Michael Herger

I installed LMS with the patched perl modules from
http://allthingspi.webspace.virginmedia.com/lms.php. LMS comes up and
works really well and fast,  but after some hours the WEGUI is not
reachable any more...


But is LMS still running? How much memory do you have?

--

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2013-08-28 Thread ralphy

Triode wrote: 
> Does it actually crash on window 8 or just fail to open the device - the
> current code assumes it will return an error rather than crash if the
> rate is not supported

It's not crashing for me just the unanticipated error from portaudio,
then SL spins

I'm running on XP and I've only seen this error opening a device using
the direct sound api, using my portaudio.dll as the one included with SL
doesn't have DS support.

Triode wrote: 
> any view why it is failing?

Not at the moment,  I only briefly looked at it portaudio error.  I need
to rebuild the dll with debug enabled so I can see what the actual error
from the api is.

The spinning occurs on unix with portaudio as well.  When the call to
output_init in main.c fails the code continues to call decode_init and
then hangs in slimproto.

Sorry the debug is using my portaudio v18 port but it's the only other
place I've seen the spin and I have all the debug tools handy.

Code:


  $ dbx squeezelite
  For information about new features see `help changes'
  To remove this message, put `dbxenv suppress_startup_message 7.7' in your 
.dbxrc
  Reading squeezelite
  Reading ld.so.1
  Reading libpthread.so.1
  Reading libsocket.so.1
  Reading libnsl.so.1
  Reading libdl.so.1
  Reading librt.so.1
  Reading libm.so.2
  Reading libc.so.1
  Reading libaio.so.1
  Reading libmd.so.1
  (dbx) run
  Running: squeezelite 
  (process id 27714)
  Reading libc_psr.so.1
  [06:53:06.862985] output_init:1521 error initialising port audio: Host error.
  Reading libvorbisfile.so.3.3.5
  Reading libogg.so.0.7.1
  Reading libvorbis.so.0.4.6
  Reading libmp.so.2
  Reading libscf.so.1
  Reading libdoor.so.1
  Reading libuutil.so.1
  Reading libgen.so.1
  ^Cdbx: warning: Interrupt ignored but forwarded to child.
  t@1 (l@1) signal INT (Interrupt) in ___lwp_mutex_timedlock at 0xff0ce93c
  0xff0ce93c: ___lwp_mutex_timedlock+0x0008:  ta   %icc,0x0008
  Current function is slimproto (optimized)
  708   LOCK_O;
  (dbx) list
  708   LOCK_O;
  709   sprintf(fixed_cap, ",MaxSampleRate=%u", 
output.max_sample_rate); 
  710   
  711   for (i = 0; i < MAX_CODECS; i++) {
  712   if (codecs[i] && codecs[i]->id && strlen(fixed_cap) < 
128 - 10) {
  713   strcat(fixed_cap, ",");
  714   strcat(fixed_cap, codecs[i]->types);
  715   }
  716   }
  717   UNLOCK_O;
  (dbx) where
  current thread: t@1
  [1] ___lwp_mutex_timedlock(0xff147898, 0x0, 0x0, 0x1c00, 0x0, 0x0), at 
0xff0ce93c 
  [2] mutex_lock_kernel(0xff147898, 0x0, 0x0, 0xff147898, 0x1cc4, 0x1), at 
0xff0c1d34 
  [3] stall(0x2d, 0xff147898, 0x767e, 0xff1423ec, 0x7f560, 0x0), at 0xff0c2eac 
  [4] mutex_lock_internal(0x3fb30, 0x0, 0x1, 0x2d, 0xff1423ec, 0x10), at 
0xff0c363c 
  =>[5] slimproto(level = lWARN, server = (nil), mac = 0xffbfedc4 "", name = 
(nil)) (optimized), at 0x14fe8 (line ~708) in "slimproto.c"
  [6] main(argc = , argv = ) (optimized), at 0x13910 (line ~333) in "main.c"
  




Ralphy

*1*-Touch, *4*-Classics, *2*-Booms, *1*-Squeezeslave, *3*-Squeezeplays,
*4*-Squeezelites
'Squeezeslave' (http://code.google.com/p/squeezeslave/) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=LL5P6365KQEXN&lc=CA&item_name=Squeezeslave¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.

ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2013-08-28 Thread ralphy

goodhur wrote: 
> Did you ever find out how to install it on MAC OSX? Please help.
> 
> I have searched all over the forum (using google and the forum search)
> and muddled through countless pages. When I download the googlecode
> file, I can't even tell what type of file I am working with :confused:.
> 
> Thanks

I've put together a tar file with all the bits needed to run squeezelite
on osx.  It's only 64-bit whereas the official build from Triode
supports i386 as well.

See 'here'
(http://code.google.com/p/squeezeslave/downloads/detail?name=squeezelite-1.3.274-osx-x86_64.tar.gz).



Ralphy

*1*-Touch, *4*-Classics, *2*-Booms, *1*-Squeezeslave, *3*-Squeezeplays,
*4*-Squeezelites
'Squeezeslave' (http://code.google.com/p/squeezeslave/) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=LL5P6365KQEXN&lc=CA&item_name=Squeezeslave¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.

ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] LMS experiences with beagelbone black...???

2013-08-28 Thread Oskar242000

Ram should be enough the bone has 512 MB from which 115 are used...The
serverlog has the following entries..

Logitech Media Server died. Restarting.
[13-08-27 20:57:17.3723] main::init (355) Starting Logitech Media Server
(v7.8.0, 1377282859, Tue Aug 27 00:58:26 PDT 2013) perl 5.014002
[13-08-27 20:57:18.2359] Slim::Networking::UDP::init (39) FATAL: There
is already another copy of the Logitech Media Server running on this
machine. (Address already in use)
[13-08-27 20:57:18.2387] Log::Log4perl::Logger::and_die (868) Warning:
FATAL: There is already another copy of the Logitech Media Server
running on this machine. (Address already in use) at
/usr/share/squeezeboxserver/lib/Log/Log4perl/Logger.pm line 900
2013-08-27 20:57:18 Logitech Media Server died. Restarting.

Thanks

Oskar



Oskar242000's Profile: http://forums.slimdevices.com/member.php?userid=48634
View this thread: http://forums.slimdevices.com/showthread.php?t=99533

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


Re: [SlimDevices: Plugins] Windows 8 App

2013-08-28 Thread Wigster

Hi,

I seem to have have come across a bug:

If you browse My Music by Artist, click to go into the artist and then
click on an album and then click out of the album box *without* playing
anything, the data presented on the screen gets messed up: sometimes the
artist's albums and tracks disappear, sometimes you get back the data
for another artist that you viewed previously. This doesn't happen every
time, but if you click in and out of an album it will happen
eventually.

There are some remaining issues sometimes with scrolling using the mouse
wheel on the artist view also. Again not always...



Wigster's Profile: http://forums.slimdevices.com/member.php?userid=14899
View this thread: http://forums.slimdevices.com/showthread.php?t=97998

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


[SlimDevices: Plugins] Announce: Music & Artist Information plugin

2013-08-28 Thread mherger

I'm happy to announce the Music & Artist Information plugin v0.1.0. As I
got increasingly frustrated with the ugly code for the AlbumReview and
Biography plugins, I decided to start from scratch and create something
"better". It should not only be easier to maintain, but offer new
features and be open to be easily extended.

[image: http://gyazo.com/9f84cb72625fd2f7c3708c8a0432b292.png]

The new Music & Artist Information plugin still gives you access to
almusic.com's album reviews and biographies. But it adds a whole lot to
it: links to the artists' websites, blogs, news. Videos from youtube,
dailymotion and others. Links to album contributors and related artists.
A never-ending network of music background information.

[image: http://gyazo.com/1a7417dc34cdec37e302137a81218589.png]

Obviously not all of these goodies work on all UIs. You'd get the
richest access in the web UI obviously. Some apps can deal with the web
based content as well - a tablet should give you great access to most
features.

It's still early days for this plugin. But please give it a try! It
should show up in the plugins list on your LMS shortly.

Have fun!



Michael

http://www.herger.net/slim-plugins - AlbumReview, Biography,
MusicInfoSCR, Smart Mix

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=99537

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


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2013-08-28 Thread aubuti

Very cool, Michael. Thanks, and I look forward to playing with it.



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

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2013-08-28 Thread Triode

ralphy wrote: 
> It's not crashing for me just the unanticipated error from portaudio,
> then SL hangs
> 
> I'm running on XP and I've only seen this error opening a device using
> the direct sound api, using my portaudio.dll as the one included with SL
> doesn't have DS support.
> 
> 
> 
> Not at the moment,  I only briefly looked at it portaudio error.  I need
> to rebuild the dll with debug enabled so I can see what the actual error
> from the api is.
> 
> The spinning occurs on unix with portaudio as well.  When the call to
> output_init in main.c fails the code continues to call decode_init and
> then hangs in slimproto.
> 
> Sorry the debug is using my portaudio v18 port but it's the only other
> place I've seen the hang and I have all the debug tools handy.
> > 
Code:

  >   > 
  > $ dbx squeezelite
  > For information about new features see `help changes'
  > To remove this message, put `dbxenv suppress_startup_message 7.7' in your 
.dbxrc
  > Reading squeezelite
  > Reading ld.so.1
  > Reading libpthread.so.1
  > Reading libsocket.so.1
  > Reading libnsl.so.1
  > Reading libdl.so.1
  > Reading librt.so.1
  > Reading libm.so.2
  > Reading libc.so.1
  > Reading libaio.so.1
  > Reading libmd.so.1
  > (dbx) run   
 
  > Running: squeezelite 
  > (process id 27714)
  > Reading libc_psr.so.1
  > [06:53:06.862985] output_init:1521 error initialising port audio: Host 
error.
  > 

> > 

Thanks - it should probably exit at this point rather than return as it
is still holding lock so returning will cause the problem you see.



Triode's Profile: http://forums.slimdevices.com/member.php?userid=17
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2013-08-28 Thread ralphy

ralphy wrote: 
> It's not crashing for me just the unanticipated error from portaudio,
> then SL hangs
My bad, it actually exits.  I guess I'm running to many tests
concurrently.  Thanks for fixing the problem regardless.

ralphy wrote: 
> I'm running on XP and I've only seen this error opening a device using
> the direct sound api, using my portaudio.dll as the one included with SL
> doesn't have DS support.
> 
> Not at the moment,  I only briefly looked at it portaudio error.  I need
> to rebuild the dll with debug enabled so I can see what the actual error
> from the api is.

Attached is a log using a debug portaudio.dll

There are three runs combined in the file.

1. -l
2. -o 7
3. -o 7 -r 48000

In run 2. you can see portaudio trying to open the device using
384000.00 for the sample rate and failing.  It's actually caused by
test_open trying to determine the max sample rate.

In run 3. it uses 44100.00 successfully as it never probes the
device for the sample rate.


+---+
|Filename: unanticipatederror.zip   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=15094|
+---+


Ralphy

*1*-Touch, *4*-Classics, *2*-Booms, *1*-Squeezeslave, *3*-Squeezeplays,
*4*-Squeezelites
'Squeezeslave' (http://code.google.com/p/squeezeslave/) 'donations'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=LL5P6365KQEXN&lc=CA&item_name=Squeezeslave¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
always appreciated.

ralphy's Profile: http://forums.slimdevices.com/member.php?userid=3484
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2013-08-28 Thread garym

Very nice idea. I've been playing with this installed on a Win7 machine
running LMS 7.8.  It installs, I see the options, can click on, say,
Artist Information, and get the list of "biography", etc.  But selecting
anything simply tries to connect to something on web and never connects.
Eventually times out.  The only thing I've made work is clicking
WEBSITES in the listing after ARTIST INFORMATION. This gives me
different website options (amazon, official, etc.) and opens a different
tab with the website I choose. 

What am I doing wrong?

edit: I've tried this with several artists, all well known (i.e., The
Beatles)



*Location 1:* VortexBox Appliance 4TB (2.2) > LMS 7.7.2 > Transporter,
Touch, Boom, Radio w/Battery (all ethernet)
*Location 2:* VBA 3TB (2.2) > LMS 7.7.2 > Touch > Benchmark DAC I, Boom,
Radio w/Battery (all ethernet except Radio)
*Office:* Win7(64) > LMS 7.8 > SqueezePlay
*Spares:* VBA 4TB, SB3, Touch (3), Radio (3), CONTROLLER
*Controllers:* iPhone4S (iPeng), iPad2 (iPengHD & SqueezePad),
CONTROLLER, or SqueezePlay 7.7 on Win7(64) laptop
Ripping (FLAC) - dbpoweramp, Tagging - mp3tag, Spotify

garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=99537

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


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2013-08-28 Thread bonze

I'm getting similar to garym

Biography, Artist Details, Related Artists & Pictures just 'hang' - even
for Adele...

In the log is:

[13-08-28 21:08:57.5361] Slim::Networking::IO::Select::__ANON__ (147)
Error: Select task failed calling Slim::Web::HTTP::processHTTP: Can't
locate object method "no_expand_entities" via package
"HTML::TreeBuilder" at C:\Documents and Settings\All Users\Application
Data\Squeezebox\Cache\InstalledPlugins/Plugins/MusicArtistInfo/AllMusic.pm
line 601.
; fh=Slim::Web::HTTP::ClientConn=GLOB(0xb152e3c)



LMS Version: 7.8
TranquilPC T2-WHS-A3 - WHS 2011
2x Touch, 3x SB3

bonze's Profile: http://forums.slimdevices.com/member.php?userid=6150
View this thread: http://forums.slimdevices.com/showthread.php?t=99537

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2013-08-28 Thread Markuzz

Hello Triode,

First of all. great work on the squeezelite project! I got it
working on W8 and Ubuntu in combination with my Kingrex UC384 transport.
However I get no sound through the transport on my Raspberry. I tried
all the -o options. This is my log, hope you can help!

pi@raspberrypi ~ $ squeezelite-armv6hf -n Raspberry -d all=debug -o
default:CARD=DDC
[20:25:44.772306] stream_init:264 init stream
[20:25:44.775039] stream_init:265 streambuf size: 2097152
[20:25:44.780651] output_init:1337 init output
[20:25:44.781838] output_init:1340 outputbuf size: 3528000
[20:25:44.783285] output_init:1372 requested alsa_buffer: 40
alsa_period: 4 format: any mmap: 1
[20:25:44.889951] output_init:1398 output: default:CARD=DDC maxrate:
384000
[20:25:44.891321] output_init:1406 unable to lock memory: Cannot
allocate memory
[20:25:44.898611] output_init:1429 unable to set output sched fifo:
Operation not permitted
[20:25:44.900223] decode_init:129 init decode
[20:25:44.903379] load_faad:583 loaded libfaad.so.2
[20:25:44.908876] load_vorbis:275 loaded libvorbisfile.so.3
[20:25:44.904722] output_thread:601 open output device:
default:CARD=DDC
[20:25:44.924514] load_flac:235 loaded libFLAC.so.8
[20:25:44.925771] register_pcm:352 using pcm
[20:25:44.928221] load_mad:332 loaded libmad.so.0
[20:25:44.929863] discover_server:633 sending discovery
[20:25:44.932113] discover_server:644 got response from:
192.168.178.19:3483
[20:25:44.933937] slimproto:686 connecting to 192.168.178.19:3483
[20:25:44.937989] slimproto:713 connected
[20:25:44.939226] sendHELO:109 mac: b8:27:eb:84:65:c7
[20:25:44.940380] sendHELO:111 cap:
Model=squeezelite,ModelName=SqueezeLite,AccuratePlayPoints=1,HasDigitalOut=1,MaxSampleRate=384000,aac,ogg,flc,aif,pcm,mp3
[20:25:44.942095] sendSETDName:210 set playername: Raspberry
[20:25:44.980978] alsa_open:270 opened device default:CARD=DDC using
format: S32_LE sample rate: 44100 mmap: 1
[20:25:44.983980] alsa_open:335 buffer: 40 period: 4 -> buffer size:
3763 period size: 940
[20:25:45.006360] process:409 strm
[20:25:45.013578] process_strm:219 strm command s
[20:25:45.015393] process_strm:286 strm s autostart: 1 transition
period: 10 transition type: 0
[20:25:45.017463] sendSTAT:151 STAT: STMf
[20:25:45.018853] codec_open:204 codec open: 'f'
[20:25:45.023747] stream_sock:352 connecting to 192.168.178.19:9000
[20:25:45.026891] stream_sock:381 header: GET
/stream.mp3?player=b8:27:eb:84:65:c7 HTTP/1.0


[20:25:45.030364] sendSTAT:151 STAT: STMc
[20:25:45.031989] process_strm:309 set fade mode: 0
[20:25:45.033218] process:409 audg
[20:25:45.034238] process_audg:357 audg gainL: 65536 gainR: 65536
adjust: 0
[20:25:45.034725] process:413 unhandled setd
[20:25:45.035119] process:413 unhandled setd
[20:25:45.036211] process:409 aude
[20:25:45.036594] process_aude:340 enable spdif: 1 dac: 1
[20:25:45.037724] process:409 audg
[20:25:45.038204] process_audg:357 audg gainL: 65536 gainR: 65536
adjust: 0
[20:25:45.103389] stream_thread:150 headers: len: 113
HTTP/1.1 200 OK
Server: Logitech Media Server (7.7.2 - 33893)
Connection: close
Content-Type: audio/x-flac


[20:25:45.114711] sendRESP:182 RESP
[20:25:45.285905] write_cb:106 setting track_start
[20:25:45.357536] output_thread:805 track start sample rate: 96000
replay_gain: 0
[20:25:45.371616] sendSTAT:151 STAT: STMs
[20:25:45.373654] sendSTAT:151 STAT: STMt
[20:25:45.375789] output_thread:601 open output device:
default:CARD=DDC
[20:25:45.500190] alsa_open:270 opened device default:CARD=DDC using
format: S32_LE sample rate: 96000 mmap: 1
[20:25:45.503343] alsa_open:335 buffer: 40 period: 4 -> buffer size:
8192 period size: 2048
[20:25:46.377559] sendSTAT:151 STAT: STMt
[20:25:47.382058] sendSTAT:151 STAT: STMt
[20:25:47.411941] process:409 strm
[20:25:47.416024] process_strm:219 strm command t
[20:25:47.417580] sendSTAT:151 STAT: STMt

Cheers! Mark.



Markuzz's Profile: http://forums.slimdevices.com/member.php?userid=61169
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2013-08-28 Thread garym

yep, I see same log error:

[13-08-28 15:21:45.0885] Slim::Networking::IO::Select::__ANON__ (147)
Error: Select task failed calling Slim::Web::HTTP::processHTTP: Can't
locate object method "no_expand_entities" via package
"HTML::TreeBuilder" at
C:\ProgramData\Squeezebox\Cache\InstalledPlugins/Plugins/MusicArtistInfo/AllMusic.pm
line 601.



*Location 1:* VortexBox Appliance 4TB (2.2) > LMS 7.7.2 > Transporter,
Touch, Boom, Radio w/Battery (all ethernet)
*Location 2:* VBA 3TB (2.2) > LMS 7.7.2 > Touch > Benchmark DAC I, Boom,
Radio w/Battery (all ethernet except Radio)
*Office:* Win7(64) > LMS 7.8 > SqueezePlay
*Spares:* VBA 4TB, SB3, Touch (3), Radio (3), CONTROLLER
*Controllers:* iPhone4S (iPeng), iPad2 (iPengHD & SqueezePad),
CONTROLLER, or SqueezePlay 7.7 on Win7(64) laptop
Ripping (FLAC) - dbpoweramp, Tagging - mp3tag, Spotify

garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=99537

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


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2013-08-28 Thread Michael Herger
Sounds like some dependency issue. Are you seeing this problem on Windows only? 
I see you mention Vortexbox in your signature, but the error message is from 
Windows?

> Am 28.08.2013 um 22:50 schrieb garym 
> :
> 
> 
> yep, I see same log error:
> 
> [13-08-28 15:21:45.0885] Slim::Networking::IO::Select::__ANON__ (147)
> Error: Select task failed calling Slim::Web::HTTP::processHTTP: Can't
> locate object method "no_expand_entities" via package
> "HTML::TreeBuilder" at
> C:\ProgramData\Squeezebox\Cache\InstalledPlugins/Plugins/MusicArtistInfo/AllMusic.pm
> line 601.
> 
> 
> 
> *Location 1:* VortexBox Appliance 4TB (2.2) > LMS 7.7.2 > Transporter,
> Touch, Boom, Radio w/Battery (all ethernet)
> *Location 2:* VBA 3TB (2.2) > LMS 7.7.2 > Touch > Benchmark DAC I, Boom,
> Radio w/Battery (all ethernet except Radio)
> *Office:* Win7(64) > LMS 7.8 > SqueezePlay
> *Spares:* VBA 4TB, SB3, Touch (3), Radio (3), CONTROLLER
> *Controllers:* iPhone4S (iPeng), iPad2 (iPengHD & SqueezePad),
> CONTROLLER, or SqueezePlay 7.7 on Win7(64) laptop
> Ripping (FLAC) - dbpoweramp, Tagging - mp3tag, Spotify
> 
> garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
> View this thread: http://forums.slimdevices.com/showthread.php?t=99537
> 
> ___
> plugins mailing list
> plugins@lists.slimdevices.com
> http://lists.slimdevices.com/mailman/listinfo/plugins
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Music & Artist Information plugin

2013-08-28 Thread garym

mherger wrote: 
> Sounds like some dependency issue. Are you seeing this problem on
> Windows only? I see you mention Vortexbox in your signature, but the
> error message is from Windows?

OK. Now i've installed on my vortexbox (fedora linux) machine at home.
LMS 7.7.2.  Works fine with immediate response. So the problem I had
earlier with the LMS 7.8 on win7 does NOT happen with my vortexbox LMS
7.7.2.



*Location 1:* VortexBox Appliance 4TB (2.2) > LMS 7.7.2 > Transporter,
Touch, Boom, Radio w/Battery (all ethernet)
*Location 2:* VBA 3TB (2.2) > LMS 7.7.2 > Touch > Benchmark DAC I, Boom,
Radio w/Battery (all ethernet except Radio)
*Office:* Win7(64) > LMS 7.8 > SqueezePlay
*Spares:* VBA 4TB, SB3, Touch (3), Radio (3), CONTROLLER
*Controllers:* iPhone4S (iPeng), iPad2 (iPengHD & SqueezePad),
CONTROLLER, or SqueezePlay 7.7 on Win7(64) laptop
Ripping (FLAC) - dbpoweramp, Tagging - mp3tag, Spotify

garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=99537

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


Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2013-08-28 Thread dahmwern

I'm having a bit of an issue with running LMS and Squeezelite on the
same computer in a remote network, while accessing files on my NAS from
my home network. I was able to successfully get the LMS (on my laptop in
my office) to scan and play files from the media stored on my NAS at
home. Squeezelite in a Raspberry Pi in my office works just fine and
plays these files perfectly. However, when I try doing the same thing
all on my laptop (aka removing the Raspberry Pi from the equation, and
just running Squeezelite AND the LMS on my laptop) in my office, LMS
will not play music from my media stored on my NAS. It WILL however play
internet radio (after I allowed a firewall issue to pass through).

Any ideas here? It just starts, plays 1-4 seconds of silence, and then
goes back to 0:00 and gives up.

I'm stumped on this one!



dahmwern's Profile: http://forums.slimdevices.com/member.php?userid=56260
View this thread: http://forums.slimdevices.com/showthread.php?t=97766

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