[SlimDevices: Plugins] [Announce] Squeezecenter STATS with Cacti

2009-03-08 Thread Blu3IcE

Ok, after having some free time to fly through the database I decided to
write a little PHP script to poll my Trackstat database.

Have a look at the attached picture to get an idea of what I'm talking
about.

What you need is Cacti (http://www.cacti.net/), PHP, and of course the
Squeezecenter with Erlands Trackstat Plugin (Many thanks for this,
makes me happy every day! :-)).

I'm using Ubuntu Linux as Server OS.
As database I'm using my own MySQL Database (not the embedded one).
(Guide: http://wiki.slimdevices.com/index.php/ExistingMySQLInstance)

Attached to the post you'll find all the necessary files.
Just rename the txt files. Insert your database password at
"yourpasswordhere" in the ss_squeeze_played.php file and move it to
/usr/share/cacti/site/scripts/ (Ubuntu Linux, see manual for other
distris).
Now you can import the xml files with cactis graphical interface.
Thats it!

I would be happy to get feedback!
Especially with the SQL query... I'm not completely sure what it does
with NULL's but as you can see till now it works fine.

Known "bug" is that only different songs are counted, means if you play
the same song over and over again count will always be 1.

The graph shows how it works.
"Songs played within 24h" are the number of songs played within 24h..
sounds pretty logical :-)
The "Rating within 24h" is the Average rating for the Songs you played
within 24h.
"Tracks played today" are the number of songs played since midnight.


+---+
|Filename: ss_squeeze_played.php.txt|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=7103|
+---+

-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=61105

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


Re: [SlimDevices: Plugins] [Announce] Squeezecenter STATS with Cacti

2009-03-08 Thread Blu3IcE

Here the plain SQL Query (embedded in the php script):

select tmp1.today, tmp2.oneday, tmp2.onedayrating 
from (select count(url) as today
from track_statistics
where
ifnull(lastplayed,0)>(unix_timestamp()-TIME_TO_SEC(CURTIME())) 
order by url) tmp1,
(select count(url) as oneday, cast(avg(rating) as UNSIGNED) as
onedayrating
from track_statistics 
where ifnull(lastplayed,0)>(unix_timestamp()-86400) 
order by url, rating) tmp2;


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=61105

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


Re: [SlimDevices: Plugins] [Announce] Squeezecenter STATS with Cacti

2009-03-10 Thread Blu3IcE

Hi Janina,

thats too bad, I just used the export function of the web interface.
I exported the templates again and attached them as zip files. Lets
hope it works this time. I'm running the same version of cacti as you.

Cacti form is kinda not so helpful, since nobody answers any
questions...

Do you only get this "Error: XML parse error" message or do you get
more error informations?


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

-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=61105

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


Re: [SlimDevices: Plugins] [Announce] Squeezecenter STATS with Cacti

2009-03-11 Thread Blu3IcE

jania;405586 Wrote: 
> After getting the templates imported successfully I was getting the
> following error in the cacti logs:
> Every derived table must have its own alias
> 
> turns out there is a syntax error in the ss_squeeze_played.php file:
> 
> where ifnull(lastplayed,0)>unix_timestamp()-TIME_TO_SEC(CURTIME()))
> 
> was the culprit, adding a left parenthesis in front of "unix" fixed it
> (which is what you have posted in this thread above):
> 
> where ifnull(lastplayed,0)>(unix_timestamp()-TIME_TO_SEC(CURTIME()))  
> 
> Now everything is working beautifully! Thanks for your effort on this.

whoops, that was pretty sure a copy&paste failure ^^

I just added these lines to the php script (and also changed the
attached file in the first post) because I found out that the graph
gets really ugly, as soon as there are only few tracks left for an
"average" rating:

//Use rating only if more them 10 tracks have been played
if($line[1] <= 10) {
$line[2] = 0;
}


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=61105

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


Re: [SlimDevices: Plugins] Help needed with installing amazon_image-1.5.5.1 (linux)

2009-04-06 Thread Blu3IcE

bpa;382628 Wrote: 
> 
> There are 3rd party non-plugin application which can do bulk loading of
> cover art.

Hmm.. do you know one that works fine.. even with current Squeezecenter
versions?


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=58031

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


[SlimDevices: Plugins] Activate AutoDim via cli/bash

2009-08-25 Thread Blu3IcE

Hi,

I'm trying to activate the autodim display plugin via CLI.
In other words I want to to trigger the dim time earlier as set in the
options.

The idear is to send the command while I shutdown my pc in the
evening.
Some bash script will do the trick ...of course with some preconditions
depending on the current time.

It tried some things with the CLI but did'nt succeed.
As I understood I have to send the MAC address followed by pluginname
and other commands. But I don't think there is a CLI programmed for
autodim.

Is there an other way?

Thanks in advance!


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=67034

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


Re: [SlimDevices: Plugins] Activate AutoDim via cli/bash

2009-08-26 Thread Blu3IcE

He Peter,

just saw your post and I think I have to explain what I'm trying to do
a little bit more detailed.

My Server is running Squeezecenter 24/7. And currently there is no need
to change this.

The computer in my room which is turned on at least for a short time to
check mails once a day is the computer I want to use to send a cli
command to my server to darken the display of the Squeezebox in my
room.
Your cli expansion as I understand it, is made to permanently change
the off_time. What I actually need is to temporary change it for the
case I go to bed early and don't want to be bothered by the Squeezeboxes
flarelight.
So I would just need a flag that is settable via cli that tells my
Squeezebox to be darkened till the next on_time.

Your current version would do the trick too, but I would have to set up
a cronjob to restore the "original" off_time.

Thanks a lot for your effort and improvements so far!
Hope this will be possible too.


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=67034

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


Re: [SlimDevices: Plugins] Activate AutoDim via cli/bash

2009-08-27 Thread Blu3IcE

peterw;452070 Wrote: 
> If that second cron job runs on the server sometime after the original
> off_time and before on_time, you should be all set, right?

Yes, right, but that would be a very ugly hack around the Squeezecenter
since I don't have a get "original_off_time" to restore it.
And because of the separated client server architecture
"original_off_time" could only be read by the client (which is the only
one who knows the time he sends the earlier off_time) but the cron job
(who needs this "original_off_time") has to be on the server.

Without restore I could reduce it all to this:
In the evening/or at client shutdown:  echo '00:04:20:xx:xx:xx
playerpref powerOffBrightness 0' | nc  192.168.x.x 9090 -w1 >>/dev/null
In the morning: echo '00:04:20:xx:xx:xx playerpref powerOffBrightness
4' | nc  192.168.x.x 9090 -w1 >>/dev/null

But for a real integration to Squeezeserver I would really appreciate a
solution that not includes any cron jobs.


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=67034

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


[SlimDevices: Plugins] Custompage - How to Play an album by AlbumID?

2009-09-20 Thread Blu3IcE

I've always missed something that gives my a page of random album
covers.
So I started to script a small piece of php which does the trick.
Selecting a number of random albums and display their covers works
fine.

Problem is I have no idea how to pass an album ID to squeezecenter and
make it start playing it. 
I've experimented a bit whith CLI and shell_exec but thats pretty
ugly.

Easiest way would be to attach an hyperlink to the picture to make it
play the album.

Some lines of my code (just in case):
$query = " SELECT a.titlesort, t.url, a.id FROM albums a, tracks t
WHERE t.album = a.id and t.audio = 1 order by rand() LIMIT 21 ";
print "";

What I'm searching for is something like:
print "";


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=68109

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


Re: [SlimDevices: Plugins] Custompage - How to Play an album by AlbumID?

2009-09-20 Thread Blu3IcE

erland;459904 Wrote: 
> If you like a simple url, the play links in the Classic skin looks like
> this:
> > 
Code:

  >   > 
  > 
http://localhost:9000/status_header.html?command=playlist&subcommand=loadtracks&&album.id=364&player=00%3A01%3A02%3A03%3A04%3A05
  > 

> > 
> 
> You will of course need to insert the correct album.id and player
> value.

Love you! :)


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=68109

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


Re: [SlimDevices: Plugins] Custompage - How to Play an album by AlbumID?

2009-09-20 Thread Blu3IcE

Any idea how I can edit the link so that not every time I click an album
squeezecenter opens?


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=68109

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


Re: Announce: Spicefly SugarCube Version 2.03 � (Automatic MusicIP DJ) for 7.x

2010-01-14 Thread Blu3IcE

It's working fine here too on Ubuntu Linux.

Just wanted to inform you that in file
/usr/share/squeezeboxserver/Plugins/SugarCube/Plugin.pm in the lines
1705,1734,1763 you assume that the default database name is slimserver.
I'm using a custom sql database and had to change it. Maybe you should
use a server parameter instead.


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.3
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=73988

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


[SlimDevices: Plugins] Lots of errors with new version of SugarCube Spicefly

2011-01-02 Thread Blu3IcE
/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 574.
[11-01-02 12:47:53.2206] Slim::Utils::Misc::msg (1165) Warning:
[12:47:53.2205] Use of uninitialized value in concatenation (.) or
string at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 576.
[11-01-02 12:47:53.2209] Slim::Utils::Misc::msg (1165) Warning:
[12:47:53.2207] Use of uninitialized value in string eq at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 578.
[11-01-02 12:47:53.2228] Slim::Utils::Misc::msg (1165) Warning:
[12:47:53.2225] Argument "" isn't numeric in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 787.
[11-01-02 12:47:53.2282] Slim::Utils::Misc::msg (1165) Warning:
[12:47:53.2279] Use of uninitialized value in length at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 663.
[11-01-02 12:47:55.2040] Slim::Utils::Misc::msg (1165) Warning:
[12:47:55.2036] Argument "" isn't numeric in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 685.
[11-01-02 12:47:55.2045] Slim::Utils::Misc::msg (1165) Warning:
[12:47:55.2042] Argument "" isn't numeric in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 1257.
[11-01-02 12:47:55.2090] Slim::Utils::Misc::msg (1165) Warning:
[12:47:55.2086] Use of uninitialized value in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 574.
[11-01-02 12:47:55.2110] Slim::Utils::Misc::msg (1165) Warning:
[12:47:55.2106] Use of uninitialized value in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 574.
[11-01-02 12:47:55.2115] Slim::Utils::Misc::msg (1165) Warning:
[12:47:55.2112] Use of uninitialized value in concatenation (.) or
string at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 576.
[11-01-02 12:47:55.2119] Slim::Utils::Misc::msg (1165) Warning:
[12:47:55.2116] Use of uninitialized value in string eq at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 578.
[11-01-02 12:47:57.8371] Slim::Utils::Misc::msg (1165) Warning:
[12:47:57.8367] Use of uninitialized value in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 574.


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.5.1 - r30836
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=84426

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


Re: [SlimDevices: Plugins] Lots of errors with new version of SugarCube Spicefly

2011-01-02 Thread Blu3IcE

I just upgraded to the last Version of Squeezeboxserver to see if the
errors are related to my version.
Errors still appear and I found this in the log:

[11-01-02 15:15:36.3396] main::init (323) Starting Squeezebox Server
(v7.5.2, r31632, Mon Dec 13 13:06:10 PST 2010) perl 5.008008
[11-01-02 15:15:54.0106] Slim::Utils::Misc::msg (1165) Warning:
[15:15:54.0100] DBIx::Class::ResultSet::single(): Query returned more
than one row.  SQL that returns multiple rows is DEPRECATED for ->find
and ->single at /usr/share/perl5/Slim/Schema.pm line 584


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.5.1 - r30836
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=84426

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


Re: [SlimDevices: Plugins] Lots of errors with new version of SugarCube Spicefly

2011-01-02 Thread Blu3IcE

more errors:

[11-01-02 17:38:42.7630] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7627] Use of uninitialized value in string comparison (cmp)
at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 887.
[11-01-02 17:38:42.7634] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7631] Use of uninitialized value in string comparison (cmp)
at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 887.
[11-01-02 17:38:42.7638] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7635] Use of uninitialized value in string comparison (cmp)
at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 887.
[11-01-02 17:38:42.7642] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7640] Use of uninitialized value in string comparison (cmp)
at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 887.
[11-01-02 17:38:42.7646] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7644] Use of uninitialized value in string comparison (cmp)
at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 887.
[11-01-02 17:38:42.7650] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7648] Use of uninitialized value in string comparison (cmp)
at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 887.
[11-01-02 17:38:42.7664] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7661] Use of uninitialized value in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 963.
[11-01-02 17:38:42.7668] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7665] Use of uninitialized value in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 982.
[11-01-02 17:38:42.7673] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7670] Use of uninitialized value in string eq at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/breakout.pm
line 181.
[11-01-02 17:38:42.7680] Slim::Utils::Misc::msg (1165) Warning:
[17:38:42.7677] Use of uninitialized value in string eq at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/breakout.pm
line 239.
[11-01-02 17:38:43.0184] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0180] Argument "" isn't numeric in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 684.
[11-01-02 17:38:43.0189] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0186] Argument "" isn't numeric in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 1256.
[11-01-02 17:38:43.0606] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0602] Use of uninitialized value in string eq at
/usr/share/perl5/Slim/Utils/ImageResizer.pm line 71.
[11-01-02 17:38:43.0610] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0607] Use of uninitialized value in string eq at
/usr/share/perl5/Slim/Utils/ImageResizer.pm line 72.
[11-01-02 17:38:43.0693] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0688] Use of uninitialized value in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 573.
[11-01-02 17:38:43.0709] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0705] Use of uninitialized value in numeric eq (==) at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 573.
[11-01-02 17:38:43.0713] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0710] Use of uninitialized value in concatenation (.) or
string at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 575.
[11-01-02 17:38:43.0718] Slim::Utils::Misc::msg (1165) Warning:
[17:38:43.0715] Use of uninitialized value in string eq at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/SugarCube/Plugin.pm
line 577.


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.5.2 - r31632, perl 5.008008
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=84426

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


Re: [SlimDevices: Plugins] Lots of errors with new version of SugarCube Spicefly

2011-01-03 Thread Blu3IcE

cparker;599357 Wrote: 
> Version 1.8 circa 2009?
yeah I guess ;-)

cparker;599357 Wrote: 
> I presume you upgraded to v2.65 as a minimum?  Why are you using a
> non-standard database, do you seriously expect me to support that?
All queries are made by the squeezeboxservers API. Since your plugin
doesn't address the Database directly that shouldn't be a problem, I
think.
Is there an easy way to check that?

cparker;599357 Wrote: 
> Make sure you have completely removed any old versions if you ever
> manually installed SugarCube.  If you have manual and repo installs
> they can not co-exist.
I completely removed everything from the old installation.


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.5.2 - r31632, perl 5.008008
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=84426

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-05-14 Thread Blu3IcE


First of all... I just discoverd this skin and I'm blown away. It's so
awesome how a skin can renew the look and feel of something.

I did not read through all the thread but I have one question. Is there
an option to make the artist and album in the playlist as reference
(maybe only in the desktop theme)? So if clicked the left frame shows
for example all the Albums of the artist.
This is usually the way I listen to music. I start with a dynamic
playlist. Then I explore my music by browsing forward and adding more
songs from these tracks.

Thanks in advance and keep up the good work!



System: Debian, Logitech Media Server Version: 7.9.0
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-05-15 Thread Blu3IcE


cpd73 wrote: 
> No, they are not links. You can, however, use the track's menu (the
> three dots), and select 'More'

Is there any chance that you'll make this links (to artist/album)
available directly? No additional elements are necessary for this and it
would reduce three clicks to one. And it could always be optional. 

I would be very happy to see this feature in the future :)



System: Debian, Logitech Media Server Version: 7.9.2
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-06-28 Thread Blu3IcE


For some reasons I'm having trouble with the Trackstat plugin. Viewing
an album by clicking the album from a song entry on the right side opens
the album on the left without any ratings. And it gets worse ... if the
material skin is opened in any browser it deletes my ratings for the
currently played song. This is pretty bad!



System: Debian, Logitech Media Server Version: 7.9.2
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=109624

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


Re: [SlimDevices: Plugins] Wanted: Verbarius Clock Style plugin

2007-10-31 Thread Blu3IcE

Hy Guys,

I tried to install your plugin on my SlimServer 6.3.1 but I failed.
Why is this plugin only working with version 6.5?
Is there an old version out there which still works with 6.3.1?

Thanks in advance...

IcE


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=32975

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


Re: [SlimDevices: Plugins] Announce: slimfx - Flash-based Skin / Control App

2008-02-06 Thread Blu3IcE

Hey, i just wanted to say thank you for this amazing skin!
I love it to have an alternative way to browse my music.

The only thing that would be very helpful... showing the correct "now
playing" Song, so that the prev. and next buttons work correctly.

Thanks again, and keep this skin alive!


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=32422

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-10 Thread Blu3IcE

Hi, I just downloaded Muso. It's quite cool.
However i don't understand the database concept.
When I change a rating in muso I would expect the same rating is
transferred to my server database.
But the changes are only visible and stored in muso. Is this a bug or
intentional?
I tried the latest muso (1.4.25).



Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
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] MUSO - Support Thread

2012-07-10 Thread Blu3IcE

I also recognized some missing pictures :-)

13560


+---+
|Filename: error.jpg|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=13560|
+---+


Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
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] MUSO - Support Thread

2012-07-11 Thread Blu3IcE

jezbo wrote: 
> I've seen this before, the Internet Explorer engine within .NET
> sometimes has an issue loading some images, it's normally sorted out
> next time you run the app, but let me know if it persists.

It does. I even tried an older version and had the same Problem.



Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
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] MUSO - Support Thread

2012-07-11 Thread Blu3IcE

jezbo wrote: 
> Muso has it's own database rather than using the LMS database (because
> LMS is only one of a few integration options that Muso supports).
> Ratings are synchronised with LMS when you invoke the Import/Synchronize
> with SqueezeBox Server (LMS) function - this assumes you have the
> Trackstat plugin installed. 
> 
> NB. If the Squeezebox community would prefer a tighter integration, I
> could look into making this more automatic rather than a manual trigger,
> but take-up of muso so far has been slow.

I'd really love to have that feature. Synchronizing only overwrites my
muso db with the LVM values (maybe I'm doing it wrong).
So far the best of all functions of my LVM is the rating combined with
SQL Playlists. Since I can use Muso only with the computer I'd really
love to have the rating always and immediately saved. I don't want to
synchronize every time I exit Muso. If people disagree this could be an
optional/selectable feature.

I have one more thing... :-) (sorry, I hope you enjoy coding)
The function I miss even more in Muso is a "play next" button. Browsing
with Muso through my library is great. Discovering all the music I
heaven't heard in a while...
But I'd rather wanted to enqueue tracks... instead of skipping them all
the time. 
I know that I can enqueue at the end of the list, but most of the time
the list is already very long.

Also the play button at the beginning of each track should only enqueue
the selected track, not the rest of the tracks of the album as well --
regardless if this option is selected in LVM.

Thanks and good work!



Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
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] MUSO - Support Thread

2012-07-12 Thread Blu3IcE

jezbo wrote: 
> If you're on Windows 7, do you see images named plus.gif and minus.gif
> in C:\Users\Public\Music\muso\themes\Light\images?

nope, neither plus.gif nor minus.gif are in this folder...



Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
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] MUSO - Support Thread

2012-07-12 Thread Blu3IcE

jezbo wrote: 
> Well this would explain why they are not showing up in the browser,
> however I'm not sure why they are not there! What IS in this folder?

13564


+---+
|Filename: list.jpg |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=13564|
+---+


Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
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] MUSO - Support Thread

2012-07-12 Thread Blu3IcE

jezbo wrote: 
> OK try with 1.4.27 now.

It's fixed!



Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
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] Looking for SugarCube Version 3.5 with MySQL support

2012-07-21 Thread Blu3IcE

My Squeezebox Server database is running on a shared MySQL server.
As I understood from the version history
(http://www.spicefly.com/spicefly-sugarcube/roadmap.html), Version 3.50
(9th July 2011) is the last one that supports this setup.
Unfortunately I can't find this version to download.
Could anybody share it?
THX!



Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=95867

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


Re: [SlimDevices: Plugins] Announce: Alternative Web Interface (beta)

2013-07-05 Thread Blu3IcE

Love the new look!

There is one thing that I would appreciate the most...

Due to a bug, all new versions of lms don't show the ratings in the left
column of the web UI.

Could you try to display ratings on the left side?
So when I select a track from the playlist I could see the currently
playing album tracks WITH their ratings.

Thanks in advance!



System: Ubuntu, SqueezeCenter-Version: 7.5.5 - r32671, perl 5.008008
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=98186

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


[SlimDevices: Plugins] How to use ratings with LMS (comming from 7.5.5)?

2013-07-05 Thread Blu3IcE

I recently updated from 7.5.5 to the latest LMS version.

I'm so unhappy with the fact that it is so terribly complicated to get
the ratings for a certain album.

My usual way to listen to music was to randomly play tracks and for some
I would click the TS icon
to select more music that I liked (which was directly visible through
the stars) from this album.

The whole concept of using ratings somehow got useless. It's too many
steps to reach the album stats.

I wonder how you guys manage this shortcoming of the new LMS version.
Is there an other skin, tool, plugin, that makes up for this?

I'd love to have the old skin back ;-(



System: Ubuntu, SqueezeCenter-Version: 7.5.5 - r32671, perl 5.008008
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=99109

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


Re: [SlimDevices: Plugins] How to use ratings with LMS (comming from 7.5.5)?

2013-07-05 Thread Blu3IcE

erland wrote: 
> 
> The only thing I've seen happening regarding skins lately is the
> extGUI4LMS skin, possibly you can convince Roland0 to offer something in
> this skin:
> http://forums.slimdevices.com/showthread.php?98186-Announce-Alternative-Web-Interface-%28beta%29
> 

I just tried ... *cross fingers* ;-)



System: Ubuntu, SqueezeCenter-Version: 7.5.5 - r32671, perl 5.008008
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=99109

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


Re: [SlimDevices: Plugins] Announce: Alternative Web Interface (beta)

2013-07-05 Thread Blu3IcE

Roland0 wrote: 
> I've just added this to the dev version for all views where tracks are
> displayed (current/selected album/artist, search results, rating panel),
> so it'll be available in the next release.

Wow, that was fast! Thank you!!



System: Ubuntu, SqueezeCenter-Version: 7.5.5 - r32671, perl 5.008008
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=98186

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


Re: [SlimDevices: Plugins] Announce: Alternative Web Interface (beta)

2013-07-05 Thread Blu3IcE

I just played around a little bit and I can't seem to add a track from
my database to the playlist.
Am I missing something? Neither Crome nor Firefox is doing anything with
the tracks i'm trying to add via drag/drop to the playlist or the Add
button.
The skin shows the green checkbox and the text "Drag items to ... " but
they doesn't "drop".

My log has a lot of this lines:
[13-07-05 17:53:52.3012] Slim::Web::JSONRPC::requestMethod (443) request
not dispatchable!


Logitech Media Server Version: 7.7.2 - r33893 @ Wed Mar 14 05:46:46 PDT
2012
Betriebssystem: Debian - DE - utf8



System: Ubuntu, SqueezeCenter-Version: 7.5.5 - r32671, perl 5.008008
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=98186

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


Re: [SlimDevices: Plugins] Announce: Alternative Web Interface (beta)

2013-07-05 Thread Blu3IcE

Roland0 wrote: 
> - first, make sure that the plugin has loaded properly (default web
> ui>settings>plugins>active plugins, entry extGUI4LMS). If it isn't, look
> into the server log for errors
Looks all good

Roland0 wrote: 
> 
> - FF has an issue w/ D&D in some versions (you'd have to drop quickly
> and only in the lowest part of the button), Chrome should work better
> 
Ok, clearing cache and restarting the browser made the add button work
in Chrome, jeah!
In Firefox the button turns yellow but the helper text is kinda sticky
and won't go away as I release the mouse button. Another click makes the
text fly back to the left side of the menu.

Roland0 wrote: 
> 
> - dragging into the playlist doesn't work due some technical limitations
> of the gui framework used
> 
This is really a bummer. This would be a great feature!



System: Debian, Logitech Media Server Version: 7.7.2 - r33893
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=98186

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


Re: [SlimDevices: Plugins] ANNOUNCE: muso (production)

2013-07-05 Thread Blu3IcE

Is there a way to set the "Queued Music" column on the left to show the
actual playlist from the server?
Right now it only reflects the by muso selected items which is not
really helpful, since I always need the web ui to rearrange/delete
songs.



System: Debian, Logitech Media Server Version: 7.7.2 - r33893
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=81685

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


Re: [SlimDevices: Plugins] Announce: Alternative Web Interface (beta)

2013-07-05 Thread Blu3IcE

Roland0 wrote: 
> While I agree (from a usability point of view), it wouldn't add any
> functionality (you can already add and insert after the current track if
> you drag to the add button. LMS doesn't natively support inserting into
> an arbitrary position in the playlist, I'd have to implement this as
> well)

I can't make you :)

The problem I had was that from the interface it looked like as if it
would work that way. The ui even shows the spot it wants to insert the
song.



System: Debian, Logitech Media Server Version: 7.7.2 - r33893
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=98186

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


Re: [SlimDevices: Plugins] ANNOUNCE: muso (production)

2013-07-06 Thread Blu3IcE

jezbo wrote: 
> No, it only shows the music which has been queued in the order it was
> queued - if you shuffle or rearrange the queue, it won't be updated.

Hmm too bad. Is there a plan to add/change this? :-)



System: Debian, Logitech Media Server Version: 7.7.2 - r33893
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=81685

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


Re: [SlimDevices: Plugins] ANNOUNCE: muso (production)

2013-07-06 Thread Blu3IcE

jezbo wrote: 
> NB. Muso interfaces with several players not all of which give external
> access to query and manipulate the playlist, plus it would introduce
> extra comms between the player and muso to constantly query the
> playlist.

Hmm okay, fair enough. I thought since it is already there it could also
show correct data.

Something else..
Say I already have a playlist of 10 songs. Song 1 is playing.
I add a song via muso and it's correctly added at the end of the
playlist.
But right clicking and selecting another track via "play next track"
sets it behind this last entered track .. .right to the end (track 12)
instead of track two.

This is somehow related to my problem of the missing playlist
manipulation.
Most of the time I start browsing through my music, starting to play a
whole album. Then I continue browsing and add single songs that I like
... sometimes I'd like to play this track as next track, which would
need a manual track correction ... each time ...



System: Debian, Logitech Media Server Version: 7.7.2 - r33893
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=81685

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


Re: [SlimDevices: Plugins] Spotify-connect-web

2016-08-15 Thread Blu3IcE

I would also be interested in that. 
Simply switching between devices from the Android app to my Squeezeboxes
would be wonderful.
I just finished to setup ShairPort... only to find out that it is not
supported on Android devices.



System: Debian, Logitech Media Server Version: 7.9.0
Player: Squeezebox v3 @ Bose LifeStyle Series III, Squeezebox Radio,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=105968

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


Re: [SlimDevices: Plugins] Announce: Moose 0.63 (windows frontend forss sc)

2008-04-06 Thread Blu3IcE

He you did a great job at this!

I have just one little thing.

Since Moose seems to be able to find album covers in Amazon, I was
wondering if it's  maybe possible to save those looked up covers (for
the songs who doesn't already have a cover) in an extra folder so that
I can add these later to my cover directory on my SC server.

Would be the best, greatest feature ever ;-)
So please, please ... :-)))


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=42073

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


Re: [SlimDevices: Plugins] Announce: Moose 0.63 (windows frontend forss sc)

2008-04-06 Thread Blu3IcE

DrLovegrove;288306 Wrote: 
> On 06/04/2008, Blu3IcE
> 
> wrote:
> >
> >  Since Moose seems to be able to find album covers in Amazon, I was
> >  wondering if it's  maybe possible to save those looked up covers
> (for
> >  the songs who doesn't already have a cover) in an extra folder so
> that
> >  I can add these later to my cover directory on my SC server.
> >
> >  Would be the best, greatest feature ever ;-)
> 
> Hi  Blu3IcE,
> 
> You should be able to save the downloaded pictures already. If you
> right-click over a cover the menu should have a save option which lets
> you save the full downloaded image as a jpeg, or whatever.
> 
> Now, yes, I know what you're going to ask next, and yes an 'auto-save
> all downloaded covers in a folder' option should be quite easy to add.
> I'll
> see what I can do.. :-)
> 
> -- 
> - Dr Lovegrove
> http://www.rusticrhino.com/drlovegrove
> http://groups.google.com/group/moosenews

yepii ;-), thanks in advance!


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=42073

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-06-26 Thread Blu3IcE

Hi there,

i tried to use your plugin with Linux.
MusicIp Server is functional, as far as I can see.
Plugin is installed correctly.

When I start to play a song, I get this in my log:

[08-06-26 18:14:19.9447] Slim::Control::Request::notify (1963) Error:
Failed notify: Couldn't get
http://localhost:10002/api/mix?song=file:///home/blu3ice/music/Pop/A-Ha%20-%20Headlines%20%26%20Deadlines%20(The%20%20Hits%20Of%20A-ha)/A-ha%20-%20Headlines%20&%20Deadlines%20-%2012%20-%20Crying%20In%20The%20Rain.mp3&style=25&variety=1
at /usr/share/squeezecenter/Plugins/SugarCube/Plugin.pm line 173.
[08-06-26 18:14:26.0365] Slim::Control::Request::notify (1963) Error:
Failed notify: Couldn't get
http://localhost:10002/api/mix?song=file:///home/blu3ice/music/Rock/Coldplay%20-%20Parachute/Coldplay%20-%20Parachutes%20-%2001%20-%20Don%27t%20panic.mp3&style=25&variety=1
at /usr/share/squeezecenter/Plugins/SugarCube/Plugin.pm line 173.

Any Idears?


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-06-28 Thread Blu3IcE

Hi, just updated to 1.2.2

But I'm still getting:
[08-06-28 12:10:07.7646] Slim::Control::Request::notify (1963) Error:
Failed notify: Couldn't get
http://localhost:10002/api/mix?song=home/blu3ice/music/Rock/U2%20-%2018%20Singles/U2%20-18%20Singles%20-%2015%20-%20Elevation.Mp3&style=120&variety=6
at /usr/share/squeezecenter/Plugins/SugarCube/Plugin.pm line 296.

I'm running:
SqueezeCenter-Version: 7.0.2 - 20472 @ Sat Jun 7 00:24:48 PDT 2008 -
Debian - DE - utf8
Perl-Version: 5.8.8 i486-linux-gnu-thread-multi
MySQL-Version: 5.0.51a-3ubuntu5.1
Plattformarchitektur: i686-linux

Maybe there is a "/" missing here: song=home/ before home???


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-01 Thread Blu3IcE

cparker;315622 Wrote: 
> Lets see, find v1.2.3 which will check you are not running windows and
> then add the "/" 
> 
> Thanks for debugging, let me know if it works!

He ;-)

Sorry man, didn't see that version in the middle of the threads.

This version works fantastic

Thanks for your work.


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-04 Thread Blu3IcE

Hey, I have some ideas for your plugin. Hope you have fun programming
:-)

First of all... inserting a boolean somewhere in the beginning of your
code for en/disabling the log/debug functions would be great.

Why ever it happens very often that I get the same song I'm currently
listening twice. I already disabled "Always include seed songs in mix"
but it still happens.

What I would most love to have is seeing more than just one song queued
up. So I can easily skip a song that I don't like or change the
genre/mood in an other direction. So maybe having like 6 or 8 Elements
in the playlist wouldn't kill us ;-).

I have the impression, that the song that is queued next in MusicIP's
array fits best to the seed. Maybe you should queue up this song
instead of a random song... but this is just an idea/feeling :-).

Oh and most important... thanks for the plugin!!!


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-08 Thread Blu3IcE

cparker;318138 Wrote: 
> Hey Blu3IcE
> 
> How do you see this working in reality, if I queue up say 3 tracks each
> time from the seed, the playlist will grow massive quickly, cant really
> see how it would work without the user having to mess about removing
> tracks they dont like which kind of takes the automatic out of the
> automatic DJ :s

Hey cparker,

just came back from college. And haven't been here for a few days since
I haven't figured out how to enable automatic mail notification ;).

I was so happy, when I just saw your new versions. Gimme some minutes
to install them.

And I think you are right, queuing up more then one song makes no
sense, if there is no way to keep a certain amount of tracks.


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-08 Thread Blu3IcE

cparker;317783 Wrote: 
> You mean you dont find it interesting watching it work away! ;)

Maybe that feature wasn't that bad :)
Because for the following there's no log file...

What I can say to the new version till now is that queuing up
duplicates happens almost every second track :(. It just queued up the
same track three times!?
But adding the "choose from top" option was definitive a good idea!!
:)
Even if have the suspicion that the first track is the seed, which
causes the duplicates. No idea why this happens only randomly...

Is there a different behavior when I press skip to when the song runs
out normally?

And the removal of songs doesn't seem to work at all??


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-09 Thread Blu3IcE

Hey... the new release.. there it is :)

Just tried it...
Now I'm getting EVERY song twice.


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-09 Thread Blu3IcE

cparker;318498 Wrote: 
> Well at least the settings page works ;)
> 
> Can you tell me whether you are using filters and whether there are a
> lot of music tracks available to choose from?
> 
> Unfortunately its not possible to request MIP not to send back the seed
> track which is really annoying.  :(
> 
> Are you able to edit the plugin.pm file and change line 167 to 'debug'
> and then look out for MIPArray as it will show the response from MIP. 
> Maybe MIP is only returning a narrow range??
> 
> More stuff to try;
> Forgot to mention, you can edit the filters and settings in realtime. 
> Filters via the MIP GUI and then just refresh the headless via its
> "reload cache" button.  On the next track selection SugarCube will
> refresh its settings and they will take affect.  You dont need to
> restart SugarCube.
> What settings do you have; style 60 and variety 2 does a nice
> transition around my library.
> Also the Mix Recipe according to MusicIP its not supported in Linux
> maybe try this as None.

Okay, here we go...
I have absolutely no filters... never used them and no idea how to.
My library ...lets say I have thousands of songs, all validated in
MIP.
The response gives me quite a lot tracks per question.
My MIP setting is style 40 and variety 2. Mix Recipe is set to "none".
Never touched this.


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-10 Thread Blu3IcE

cparker;318645 Wrote: 
> I found an old rusty PC in the garage last night and have started to
> install ubuntu on it, so hopefully I can reproduce the problem and fix
> it.  
> 
> Will take a while though, as I've never used linux before. 
> 
> So I have a add/remove programs section that mentions 3rd party
> installs, but then there is also this synaptic package manager...
> crikey, What no simple download and run setup.exe ?? LOL :s

No, sorry, its not as easy as just to click on the exe file ;-)

Install Ubuntu
Open a Terminal. (From the menu)
Enter:
sudo apt-get update #updates the software list from the ubuntu servers
sudo apt-get upgrade #download and install the updates
sudo gedit /etc/apt/sources.list #edits the package sources
Insert the following line:
deb http://debian.slimdevices.com testing main
Save and close the file.
sudo apt-get update #updates the software list. This time squeeze
servers too
sudo apt-get install squeezecenter  #installs sc


Hmm just found this...
http://wiki.slimdevices.com/index.php/DebianPackage
:-)


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-10 Thread Blu3IcE

What about this:

int x = value_setup_by_webinterface;

if (next_track_is_triggered) {

if (playlistlength > x) {
remove the first track from playlist; #but every time it's
triggered only remove ONE song
}

}

Would this also cause troubles in any way?


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-07-10 Thread Blu3IcE

Philip Meyer;318768 Wrote: 
> >Correct the latest version doesnt clear the current playlist and just
> >adds tracks to the end of the playlist.
> >
> If I am playing a random mix, and I'm currently listening to track 10
> of 20 and then enable SugarCube, nothing happens as no track change
> event has occurred yet.
> 
> If I press play to restart the current track, it does so and adds an
> additional song to the end of the playlist.  Is that a track selected
> from MusicIP based on the current track, or the 20'th track?
> 
> I'm suggesting that if selecting to enable SugarCube from the playerUI,
> the current song becomes the only track in the playlist (trim previously
> played songs and future songs, then add a new song based on the
> currently playing song).
> 
> Nb. Pressing play to restart the current track probably shouldn't add a
> new song to the mix - only add a new song when the current song changes?
> 
> Phil


I'm pretty sure it works like this:
You are playing 3 songs when you start the plugin.
Song1 is the currently playing song.

song1
song2
song3
song4
MIP song from seed of song 2
MIP song from seed of song 3
MIP song from seed of song 4


EDIT: I think ALL adds are based on the currently played song.


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Announce: Spicefly SugarCube (Automatic MusicIP DJ)

2008-11-09 Thread Blu3IcE

Does anybody have an idea how to add a line to the remote control's
Custom.map to "toggle" between SugarCube enable or disable?


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.2.1
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=49226

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


Re: [SlimDevices: Plugins] Songs Rated 2 or more with one Button on RC or as a favorite?!

2008-11-09 Thread Blu3IcE

signature *g*

abracadabra


-- 
Blu3IcE

System: Ubuntu, SqueezeCenter-Version: 7.2.1
Player: Squeezebox v3 @ Bose LifeStyle Series III
Plugins: TrackStat, SugarCube, Dynamic Playlists, AutoDim

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=54863

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


[SlimDevices: Plugins] Songs Rated 2 or more with one Button on RC or as a favorite?!

2008-11-09 Thread Blu3IcE

Is that possible?!
I only found so far : modefunction_PLUGIN.RandomPlay::Plugin->tracks.

See my plugins in the signature.

Any hints?!


-- 
Blu3IcE

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=54863

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.6 - sorting option for Albums/Artists/Songs, replay gain fix

2021-08-03 Thread Blu3IcE


Hey, after a restart of my lms docker instance the volume of my players
is set to 49 (or 50 not quite sure). My docker image is updated
automatically. So whenever this happens, the morning after the SB Radion
in my kitchen literally screams my awake XD.
Not sure if i'm in the correct thread. I found a related topic when I
googled the problem.
(https://forums.slimdevices.com/showthread.php?108898-Announce-Spotty-2-3-0-Spotify-Connect-for-your-Squeezebox&p=918288&viewfull=1#post918288).
What other info I could provide? The log shows nothing.



System: Debian, Logitech Media Server Version: 8, Community Docker
Version
Players: Squeezebox v3 @ ARCAM 550 + B&W 603, Squeezebox Radio x2,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=114836

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.6 - sorting option for Albums/Artists/Songs, replay gain fix

2021-08-03 Thread Blu3IcE


mherger wrote: 
> > Hey, after a restart of my lms docker instance the volume of my
> players
> > is set to 49 (or 50 not quite sure). My docker image is updated
> 
> Are you running the latest Spotty version? This should be fixed.

Yes, I'n running on Spotty version 4.6.0. Currently no updates are
available.



System: Debian, Logitech Media Server Version: 8, Community Docker
Version
Players: Squeezebox v3 @ ARCAM 550 + B&W 603, Squeezebox Radio x2,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=114836

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.6 - sorting option for Albums/Artists/Songs, replay gain fix

2021-08-03 Thread Blu3IcE


Sorry for spamming but I just uninstalled the plugin and restarted
several times (via the GUI and the docker itself). Volume was stable and
did not change.
I reinstalled Spotty and after the restart (initiated by the web
interface) the volume immediately went to 49% again.



System: Debian, Logitech Media Server Version: 8, Community Docker
Version
Players: Squeezebox v3 @ ARCAM 550 + B&W 603, Squeezebox Radio x2,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=114836

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.6 - sorting option for Albums/Artists/Songs, replay gain fix

2021-08-03 Thread Blu3IcE


Could you please enable INFO logging for plugin.spotty until this 
happens again, then send me your server.log.zip?

I uploaded a server.log including all messages after the restart. I guess
this is the interesting part:

[21-08-04 08:36:34.1584] Plugins::Spotty::Connect::_connectEvent (368) Got
called from spotty helper: volume
[21-08-04 08:36:34.1605] Plugins::Spotty::API::__ANON__ (1329) Trying to
read from cache for me
[21-08-04 08:36:34.1613] Plugins::Spotty::API::__ANON__ (1332) Returning
cached data for me
[21-08-04 08:36:34.1622] Plugins::Spotty::Connect::_connectEvent (383) Set
volume to 49



System: Debian, Logitech Media Server Version: 8, Community Docker
Version
Players: Squeezebox v3 @ ARCAM 550 + B&W 603, Squeezebox Radio x2,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=114836

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.6 - sorting option for Albums/Artists/Songs, replay gain fix

2021-08-04 Thread Blu3IcE


mherger wrote: 
> >
> Are you using a slow internet connection? Or slow hardware to run LMS
> on?
Hmm, not really. LMS runs on an Intel Celeron G3900 (2,8GHZ, 2 Cores, 2
Threads) with 12 GB RAM and 95% idle most of the time. Internet
connection is via fibre.

Could be docker related... a restart of the container takes ~12
seconds:
>time docker-compose restart lms
Restarting lms ... done

real0m11.880s
user0m0.590s
sys 0m0.085s


mherger wrote: 
> >
> As you're running Linux you might be comfortable editing a file? Open 
> /config/cache/InstalledPlugins/Plugins/Spotty/Connect.pm, modify line 20
> 
> to make VOLUME_GRACE_PERIOD be 15 or even longer. That's the period in 
> seconds during which an instruction from Spotify to set the volume to 49
> 
> or 50 would be ignored. You could even set it to a minute. The only 
> drawback then would be that you could not use the Spotify app to set the
> 
> volume to one of these two values during that period.

Setting the value from 5 to 10 did the trick for me. Too bad I will have
to do this after each update.
Any chance to make this a parameter in the settings?
Strange that I seem to be the only one with this problem.



System: Debian, Logitech Media Server Version: 8, Community Docker
Version
Players: Squeezebox v3 @ ARCAM 550 + B&W 603, Squeezebox Radio x2,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=114836

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.6 - sorting option for Albums/Artists/Songs, replay gain fix

2021-08-04 Thread Blu3IcE


mherger wrote: 
> > Setting the value from 5 to 10 did the trick for me. Too bad I will
> have
> > to do this after each update.
> > Any chance to make this a parameter in the settings?
> > Strange that I seem to be the only one with this problem.
> 
> I'm probably simply going to increase it to some safe value, as the only
> 
> drawback is that you can't manually set those value for the period of
> time.

Good Idea. Thank you! ;-)



System: Debian, Logitech Media Server Version: 8, Community Docker
Version
Players: Squeezebox v3 @ ARCAM 550 + B&W 603, Squeezebox Radio x2,
Squeezebox Boom

Blu3IcE's Profile: http://forums.slimdevices.com/member.php?userid=13792
View this thread: http://forums.slimdevices.com/showthread.php?t=114836

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