Re: [SlimDevices: Plugins] Anyone want to help testing new TrackStat version ?

2012-01-07 Thread erland

mps;682198 Wrote: 
 Just wondering if I could use trackstat for statistics on libraries like
 how much I play different libraries (i.e., rock vs classical). If not,
 would it be a difficult enhancement?
 
I'll add so next version of TrackStat (in 7.6 or later) can display
total number of play counts per library in the TrackStat Statistics
query available through the Database Query plugin user interface.

If you were looking for more detailed browsing per library, what kind
of things would be most critical to be able to see ?

I'm asking because currently I don't plan to add full support for Multi
Library libraries in TrackStat (because it requires too much work) but
if there is something simple that would be very useful I will consider
it for a future release.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=92099

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


Re: [SlimDevices: Plugins] Announce: BBCiPlayer Plugin (UK only)

2012-01-07 Thread danco

As I mentioned, I have been doing a large online backup. I guess that
was just taking over too much of the bandwidth, as reducing bandwidth
when present seems to have cured the problem.


-- 
danco

danco's Profile: http://forums.slimdevices.com/member.php?userid=210
View this thread: http://forums.slimdevices.com/showthread.php?t=53229

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


Re: [SlimDevices: Plugins] Custom Browse Menus - different behaviours

2012-01-07 Thread erland

How does your Custom Scan configuration look like ?

Is WORKARTIST a custom tag in your music files or is it something
that's only configured in the Custom Scan configuration ?

Generally speaking:

1. LETTER NAVIGATION
If you see big letters while scrolling with the slide bar on the touch
screen, it should also work to use number navigation on IR remote, to
make this work the following has to apply:
- There is a menulinksalpha/menulinks element on the particular
menu level
- The SQL of the menu contains a third parameter that looks something
like this ( look for substr and 1,1) ):

Code:


  
substr(ifnull(customscan_track_attributes.valuesort,customscan_track_attributes.value),1,1)
  



As far as I can see this is the case in Works by Work Artist and
Works by Composer menu but not in the second level of the Albums by
Composer menu. Adding a substr(albums.titlesort,1,1) will probably
also make it work in Albums by Composer, so basically change:

Code:


  menutypesql/menutype
  jivepattern^(.*)\s\((.*)\)$/jivepattern
  menudata
  select albums.id,albums.title from 
contributor_album,albums,multilibrary_album 
  


To:

Code:


  menutypesql/menutype
  menulinksalpha/menulinks
  jivepattern^(.*)\s\((.*)\)$/jivepattern
  menudata
  select albums.id,albums.title,substr(albums.titlesort,1,1) from 
contributor_album,albums,multilibrary_album 
  



So except for this albums list in Albums by Composer the number key
navigation should work, in my library I can't try it with your
configuration because it gives too few entries to verify the issue. 

I suggest that you try the above mentioned change and then see if the
issue still remains and in that case report:
- Which menus and menu levels in these menus it doesn't work in
- How many entries the non working menu levels have
- If a big letter is shown or not when using the slidebar to the right
on the touch screen
- If the web interface provide a numeric page bar or a alpabetic page
bar to navigate between different pages on these non working menu
levels.

2. CONTEXT MENUS
The problem is that Custom Browse currently doesn't implement its own
context menus, instead it reuses the context menus of standard SBS.
Unfortunately the standard menus in SBS doesn't support custom object
types, like the tags scanned with Custom Scan, so any menu level which
represent an item that does not exist in standard SBS database tables
will provide an empty context menu. So basically it's currently
possible to make it work for albums, artists, tracks, genres,
playlists, years but nothing else.

I think it will work correctly in iPeng because it provides the
playback related context menu items automatically and it will also work
on web interface and IR-remote. Not sure how it works in other
Android/iOS remotes, might work in those too, I just haven't tried it.

The missing parts are:

- Missing ability to play/add a WORK or WORKARTIST using the touch
screen of the Squeezebox Touch. I think playing a WORK will actually
work if you have Play other songs in album or directory option
enabled in the player settings, but you have do dive down into the song
level and play the first song of the work (which should add the other
songs of the work to the playlist automatically)

- Missing ability to add a WORK or WORKARTIST using IR remote or touch
screen since the + button/hold action just opens an empty context menu.
Play should work properly on IR remote, since you can use the play
button on IR remote, but add is currently not available.


I'll take a closer look if it would be possible to fix the + (context
menu) issue, but I don't want to promise anything before I've
investigated it further.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=92847

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


[SlimDevices: Plugins] triode plugin

2012-01-07 Thread zelkes

I use my squeezebox touch with mysqueezebox.com, so i have no sbs/lms
running, can i use Triode spotify plugin or is it necessary to have a
sbs/lms running.


-- 
zelkes

zelkes's Profile: http://forums.slimdevices.com/member.php?userid=52781
View this thread: http://forums.slimdevices.com/showthread.php?t=92854

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


Re: [SlimDevices: Plugins] triode plugin

2012-01-07 Thread erland

zelkes;682337 Wrote: 
 I use my squeezebox touch with mysqueezebox.com, so i have no sbs/lms
 running, can i use Triode spotify plugin or is it necessary to have a
 sbs/lms running.
 
You need SBS/LMS on a computer to be able to use Triode's Spotify
plugin.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=92854

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


Re: [SlimDevices: Plugins] triode plugin

2012-01-07 Thread zelkes

ok thanks


-- 
zelkes

zelkes's Profile: http://forums.slimdevices.com/member.php?userid=52781
View this thread: http://forums.slimdevices.com/showthread.php?t=92854

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-01-07 Thread jezbo

camelx;682292 Wrote: 
 all my classical tags are ripped in flac by me.
 
 I have provided the conductor, Orchestra from MP3Tag.
 When I load your software, these fields are not filled in. (I'm
 guessing that they are either ID3v2 fields, which I don't populate for
 flac or they are Muso proprietary which means when I tag my 1000+ CDs,
 that info is ONLY good for Muso) Please clarify. Thanks.
 
 It's the best looking thing I've seen yet, but it MUST support
 classical typical vorbis comments. You could get around a big request
 mod here by allowing a mapping of fields.
 
 
 Where do you get the information for:
 
 Conductor
 Performer
 Band
 I have orchestra

I'm assuming you are scanning the files themselves via a folder scan
rather than synchronisng with Squeezebox Server, correct? If so I'll
double-check the flac tag support.


-- 
jezbo

jezbo's Profile: http://forums.slimdevices.com/member.php?userid=9888
View this thread: http://forums.slimdevices.com/showthread.php?t=91575

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


Re: [SlimDevices: Plugins] Playlist Manager version 6.0 released

2012-01-07 Thread Phil Meyer
I was wondering if you had any interest in making Playlist Manager work
for tracks from Rhapsody (and other services--but my interest is
Rhapsody)? Currently the Add to... menu only appears for local
tracks, but it would be awesome if we could use the plugin to build
playlists containing both local and streaming tracks.

Playlist Manager supports Remote Tracks and Remote Playlists.  I don't know how 
Rhapsody tracks appear in a playlist, if they are not remote tracks.

I haven't used Rhapsody - don't think it's available in UK.

It's possibly an easy tweak to the plugin code, but I won't be able to test it. 
 If you're willing to try a beta version for me, I can post it to you (manual 
install).

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


Re: [SlimDevices: Plugins] Custom Browse Menus - different behaviours

2012-01-07 Thread PasTim

Thanks for your very comprehensive reply.

WORKARTIST is a tag I have added in my files.

I thought the 'alpha' meneulink did what you said.  However, the
Worksbycomposer menu does not support the single letter selection,
whereas Worksbyworkartist does.  I have no idea why.

Looking at the the two xmls I couldn't see a significant difference
(not that odd since the worksartist one was derived from the composer
one). 

Once I have resolved this conundrum I'll fix others as you suggest.

With these two menus, the WORKARTIST and COMPOSER are the top level.

I have around 400 composers and 750 workartists, 18K tracks (so far) of
which 15K are classical.

On the Touch, the WORKARTIST menu shows big letters when using the
slidebar, the COMPOSER one does not.

On the web interface they both show A-Z lists at the top (if that is
what you meant  by 'page bar')
.

I understand the context problem.  I'll just have to use the web
interface (provided my laptop is working and available).

Both these and other similar menus still also cause several minutes
delay when no music can be played when they are first used after
startup.  I therefore have no use each one manually when I start up so
that I don't get a delay later in the day when listening to something.
I have 'Yes' in all the custom scan options for refreshes.


-- 
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=92847

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


Re: [SlimDevices: Plugins] Announce: Spotify Premium Plugin (Beta)

2012-01-07 Thread verypsb

Moodagent for Spotify, is this an option that could be added to the
Spotify plugin for Squeezebox? Or is this not possible...


-- 
verypsb

::Please vote:::
'::bug 1330:: New music should work on creation date'
(http://bugs.slimdevices.com/show_bug.cgi?id=1330)
'::bug 2140:: Allow specification of SlimServer address'
(http://bugs.slimdevices.com/show_bug.cgi?id=2140)
'::bug 17205:: Artists with accented characters not correctly sorted in
pagebar' (http://bugs.slimdevices.com/show_bug.cgi?id=17205)
'::bug 17542:: Albums not credited to Album Artist'
(http://bugs.slimdevices.com/show_bug.cgi?id=17542)
'::bug 17799:: Use a separator such as 'Also appears on' when viewing
the albums by an artist'
(http://bugs.slimdevices.com/show_bug.cgi?id=17799)

1x Boom, 1x Classic, 2x Controller, 2x Receiver, 1x Touch

verypsb's Profile: http://forums.slimdevices.com/member.php?userid=17295
View this thread: http://forums.slimdevices.com/showthread.php?t=79706

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


Re: [SlimDevices: Plugins] WD MyBook Live NAS

2012-01-07 Thread stevemcintosh

Despite the wealth of terrific information n this thread, I can't get my
server to run.

I have a WD MyBookLive 2TB NAS drive that I installed SqueezeboxServer
on via SSH using the instructions at the beginning of this thread. I
get as far as issuing the dpkg -i squeezeboxserver_7.6.1_all.deb
command to which I receive the following confirmations:

-Unpacking squeezeboxserver (from squeezeboxserver_7.6.1_all.deb) ...
Setting up squeezeboxserver (7.6.1) ...
changed ownership of `/var/lib/squeezeboxserver/Plugins' to
squeezeboxserver:nogroup
Making sure that Squeezebox Server is not running first:
start-stop-daemon: warning: failed to kill 8752: No such process
No process in pidfile '/var/run/squeezeboxserver.pid' found running;
none killed.
Starting Squeezebox Server.-

I give it some time, then try accessing it at http://mybooklive:9000,
but get a file cannot be displayed error in my browser. And when I try
accessing my library from the remote, it says that SBS isn't running. 

I've repeated the remove/update/dpkg -i process a number of times,
tried using different versions of SBS and LMS, and even did a complete
factory reset to the NAS (wow, did that take forever).  And, yes, I've
disabled Twonky.

The server.log shows errors which appear to be the same disk I/O error,
with the server then dying and automatically restarting, and
dying/restarting, ad infinitum. To my not-very-trained eye, this is one
example of the critical error:

[12-01-03 08:14:57.1936] Carp::Clan::__ANON__ (214) Warning:
Carp::Clan::__ANON__(): Carp::Clan::__ANON__(): DBI Exception:
DBD::SQLite::db do failed: disk I/O error [for Statement PRAGMA
synchronous = OFF] at /usr/share/perl5/Slim/Schema/Storage.pm line
123
[12-01-03 08:14:57.1955] Slim::Schema::forceCommit (2067) Warning:
Trying to commit transactions before DB is initialized!
2012-01-03 08:14:57 Squeezebox Server died. Restarting.
[12-01-03 08:15:03.0563] main::init (350) Starting Squeezebox Server
(v7.6.1, r33110, Wed Aug 17 18:50:10 PDT 2011) perl 5.010001
[12-01-03 08:15:04.3039] Slim::Schema::Storage::throw_exception (119)
Error: DBI Exception: DBD::SQLite::db do failed: disk I/O error [for
Statement PRAGMA synchronous = OFF]
[12-01-03 08:15:04.3063] Slim::Schema::Storage::throw_exception (119)
Backtrace:

Anyone have any ideas?


-- 
stevemcintosh

stevemcintosh's Profile: http://forums.slimdevices.com/member.php?userid=52130
View this thread: http://forums.slimdevices.com/showthread.php?t=84735

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-01-07 Thread camelx

Yes that is correct. I'll send you file now. Thank you.


-- 
camelx

camelx's Profile: http://forums.slimdevices.com/member.php?userid=1063
View this thread: http://forums.slimdevices.com/showthread.php?t=91575

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


Re: [SlimDevices: Plugins] Playlist Manager version 6.0 released

2012-01-07 Thread MeSue

Sure, I can test a beta version. In a saved playlist, the Rhapsody
tracks look like: rhapd://Tra.203.mp3. I guess the main problem is
that I don't get Add to.. in the context menu for Rhapsody tracks.


-- 
MeSue

SUE

1 Touch | 2 Booms | 2 Radios | 1 Duet | 1 SB2 
HP MediaSmart EX470 | Logitech Media Server 7.7.1 | iPod Touch  iPad
w/ iPeng
Find me on 'Last.FM' (http://www.last.fm/user/MeSue) | 'Twitter'
(http://twitter.com/suechastain) | 'Rhapsody'
(http://www.rhapsody.com/members/mesue)

-*Logitech! Steal my idea, please! 'Squeezebox Radio 2.0'
(http://forums.slimdevices.com/showpost.php?p=674825postcount=2)*-

MeSue's Profile: http://forums.slimdevices.com/member.php?userid=985
View this thread: http://forums.slimdevices.com/showthread.php?t=89982

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


Re: [SlimDevices: Plugins] Custom Browse problem

2012-01-07 Thread darrell

Thanks, the enhancement would be most welcome. In the meantime, I have
devised a workaround: I have copied my WORK tag to ALBUM, and use
ALBUM instead of WORK in my custom menus. Then I have created a
playlist menu and a playlist for each cd, so that I have the option to
play the entire original (multi-work) album.


-- 
darrell

darrell's Profile: http://forums.slimdevices.com/member.php?userid=13460
View this thread: http://forums.slimdevices.com/showthread.php?t=92809

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-01-07 Thread camelx

jezbo;682344 Wrote: 
 I'm assuming you are scanning the files themselves via a folder scan
 rather than synchronisng with Squeezebox Server, correct? If so I'll
 double-check the flac tag support.
 And perhaps send me one or two flac files where you have all these
 attributes encoded, for testing purposes.


http://71.56.210.206:8080/01%20-%20Suite%20No.1%20In%20G%20Major,%20BWV%201007%20Prelude.flac.zip


-- 
camelx

camelx's Profile: http://forums.slimdevices.com/member.php?userid=1063
View this thread: http://forums.slimdevices.com/showthread.php?t=91575

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


[SlimDevices: Plugins] audioscrobbler

2012-01-07 Thread Squeezebox316

Hi,

I just installed two squeezeboxes. I activated my last fm account.
Before I had the squeezeboxes I played my music from a computer with
MediaPortal. In this software I also used audioscrobbler. It could do
two things: send my played music to lastfm and automatically add songs
from my own library to a playlist. 
I managed to get the first thing running on my SB (sending my played
songs to lastfm), but not the addin songs to a playlist. Can the
audioscrobbler on the SB do that too?


-- 
Squeezebox316

Squeezebox316's Profile: http://forums.slimdevices.com/member.php?userid=53153
View this thread: http://forums.slimdevices.com/showthread.php?t=92859

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


Re: [SlimDevices: Plugins] WD MyBook Live NAS

2012-01-07 Thread TimT

stevemcintosh;682375 Wrote: 
 Despite the wealth of terrific information n this thread, I can't get my
 server to run.
 
 I have a WD MyBookLive 2TB NAS drive that I installed SqueezeboxServer
 on via SSH using the instructions at the beginning of this thread. I
 get as far as issuing the dpkg -i squeezeboxserver_7.6.1_all.deb
 command to which I receive the following confirmations:
 (snip)
 

Did you create a new user squeezeboxserver and granted r/w permission
to access the share where your music files are stored? That may not
solve the problem, but I don't think it will create any.


-- 
TimT

TimT's Profile: http://forums.slimdevices.com/member.php?userid=22971
View this thread: http://forums.slimdevices.com/showthread.php?t=84735

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-01-07 Thread jezbo

camelx;682292 Wrote: 
 all my classical tags are ripped in flac by me.
 
 I have provided the conductor, Orchestra from MP3Tag.
 When I load your software, these fields are not filled in. (I'm
 guessing that they are either ID3v2 fields, which I don't populate for
 flac or they are Muso proprietary which means when I tag my 1000+ CDs,
 that info is ONLY good for Muso) Please clarify. Thanks.
 
 It's the best looking thing I've seen yet, but it MUST support
 classical typical vorbis comments. You could get around a big request
 mod here by allowing a mapping of fields.
 
 
 Where do you get the information for:
 
 Conductor
 Performer
 Band
 I have orchestra

I've worked out how to read the COMPOSER, CONDUCTOR and ORCHESTRA tags,
but I don't see PERFORMER in these examples, and don't see that in
mp3tag's list of extended tags, so that doesn't seem a standard tag id.
Do you encode the performer separately from ORCHESTRA for a soloist? If
so what do you use? The standard ARTIST tag perhaps?


-- 
jezbo

jezbo's Profile: http://forums.slimdevices.com/member.php?userid=9888
View this thread: http://forums.slimdevices.com/showthread.php?t=91575

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


Re: [SlimDevices: Plugins] Custom Browse Menus - different behaviours

2012-01-07 Thread erland

How have you configured Custom Scan regarding COMPOSER ? Is it just
configured in Mixed Tag module or have you COMPOSER also configured
in Custom Tag scanning module ?

If you have it in both, that might be the problem, then you can try to
remove COMPOSER from Custom Tag scanning module configuration and see
if that makes a difference. If you need to have it in Custom Tag
scanning module to make some other menu behave correctly, you can
instead remove it from Mixed Tag module.

Just to be clear, the issue is that you don't get the letter navigation
in the list of composers (first menu level) in Works by Composers menu
?


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=92847

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


Re: [SlimDevices: Plugins] WD MyBook Live NAS

2012-01-07 Thread stevemcintosh

Thanks, TimT.  Tried that and restarted the server.  No change.


-- 
stevemcintosh

stevemcintosh's Profile: http://forums.slimdevices.com/member.php?userid=52130
View this thread: http://forums.slimdevices.com/showthread.php?t=84735

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


[SlimDevices: Plugins] Last FM - Deezer - Spotify

2012-01-07 Thread Ernest

I live in Belgium and have a paid subscriber to Last FM. But still
impossible to play through my SB Duet or SB Radio, because of licences.
Situation still unchanged, correct?

Deezer is possible on SB in Belgium, but Spotify has now also arrived
here, I see. Please can anyone give any advice on which is better/asier
to connect up to my SB's? Deezer or Spotify? I am prepared to stop my
LastFM sub and tak up a paid sub with one of these two. Thanks in
advance.


-- 
Ernest

Ernest's Profile: http://forums.slimdevices.com/member.php?userid=51151
View this thread: http://forums.slimdevices.com/showthread.php?t=92867

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


Re: [SlimDevices: Plugins] Announce: Spotify Premium Plugin (Beta)

2012-01-07 Thread Triode

verypsb;682363 Wrote: 
 Moodagent for Spotify, is this an option that could be added to the
 Spotify plugin for Squeezebox? Or is this not possible...

That looks like a spotify app which means it will only work with the
spotify desktop applications rather than libspotify.  If Moodagent made
an api available it may be able to do, but their site doesn't seem to
have suggestion of an api.


-- 
Triode

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

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2012-01-07 Thread GoCubs

erland;679406 Wrote: 
 Greg, let me know if we can add this repository to the central one so
 users don't have to configure it manually.

Hi Erland-

Let's give it a go!

Thanks
Greg


-- 
GoCubs

GoCubs's Profile: http://forums.slimdevices.com/member.php?userid=312
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2012-01-07 Thread erland

GoCubs;682486 Wrote: 
 Hi Erland-
 
 Let's give it a go!
 
 Thanks
 Greg
 
Ok, the repository in the official list should be switched now.
So now it's no longer necessary to manually add the repository to the
Plugins tab in SBS/LMS Settings.


-- 
erland

Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))
Interested in music discovery ? See 'Social Music Discovery (SMD)'
(http://forums.slimdevices.com/showthread.php?p=656713) project.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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