Re: [SlimDevices: Plugins] [Announce] Dynamic Playlists 3 (mod)

2021-09-26 Thread MillmoorRon


Thank you. Successfully reverted to version 2.

I had 2 available plugin updates and the Dynamic Playlist one showed the
warning about uninstalling the old one first so I unchecked it and
picked apply but when the server restarted both had been updated!

It's good that someone has taken over this plugin and it will be
maintained as I've used this for about 15 years now and it has always
worked well. I will investigate the new version at some point but
currently I just don't have as much time to tinker as I used to and my
system is working very well.

Have you taken over development of Erland's other plugins too?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=115073

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


Re: [SlimDevices: Plugins] [Announce] Dynamic Playlists 3 (mod)

2021-09-26 Thread MillmoorRon


I somehow update to version 3 (despite unselecting it) without removing
version 2 first.

What do I do now?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=115073

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2021-03-24 Thread MillmoorRon

erland wrote: 
> I’m not behind a computer right now so I can’t give you the exact query
> but the SQL at the bottom of the following page shows how to join in
> album and album artist:
> https://wiki.slimdevices.com/index.php/SlimServerDatabaseStructure.html
> You want to show contributors.name, albums.title and tracks.title I
> think.
> Let me know if this doesn’t help and I’ll take a look at it the next
> time I’m beside a computer and have some time.
> If you want to show track artists it gets a bit more complicated and
> you’ll need to join in contributors via contributor_track

Thanks for the link.

I couldn't get contributor_track to work to show the track artist but
did this:


Code:


  select contributors.name,albums.title,tracks.title from tracks
  join albums on
  tracks.album = albums.id
  left join contributors on
  tracks.primary_artist = contributors.id
  join track_statistics on 
tracks.url = track_statistics.url 
  where
  tracks.audio = 1
and (track_statistics.rating>=70)
  order by contributors.name, albums.title, tracks.title
  



Does this do the same thing? It seems to work OK!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2021-03-23 Thread MillmoorRon


Paul Webster wrote: 
> Post-process it ... e.g. run it through urldecode
> 
> %20 means character 20 hex which is 32 decimal - which is space.

Sorry, I wasn't very clear.

I meant how to dsiplay the tag info for the returned URLs using Database
Query.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2021-03-23 Thread MillmoorRon


I am trying to get a list of my top rated tracks to export to a file. 

Using Database query I have this...

> 
> 
> 
>   
>   sqlquery.xml
>id="queryname">PDA_4
>id="querydescription">Favourites
>   
>   select tracks.url from tracks
>   join track_statistics on 
>   tracks.url = track_statistics.url 
>   where 
>   audio=1
>   and (track_statistics.rating=70)
>   group by tracks.id
>   
>   
> 
> 

which returns the URLs (with lots of %20) but I'd like a more human
readable list showing "Artist - Album - Title"

Anyone know how to achieve this? (my SQL skills are not great!)



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-07-08 Thread MillmoorRon


I have rebuilt my LMS server and have my old backup file from Trackstat.
I want to use this to import only the ratings, but not added, playcount
or lastplayed.

If I modify the file by removing all  sections and any
lines from  that start with ,  or 
will this work?

Or is there an easier way?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-04-05 Thread MillmoorRon


The above seems to be true in the web interface only! 

I have just noticed that Squeeze Commander and Material Skin on my
Tablet both display the title in the correct format. (without the
additional by/from)

Orange Squeeze seems to be doing its own thing, but I'm not too worried
about that.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-04-05 Thread MillmoorRon


It's a standard Artists menu generated through Custom Browse settings
"create new menu".

In my Settings > Interface I have

Web Interface: Default
Show Artist with Albums: Disabled
Show Year with Albums: Disabled
Title Format: TITLE

If I change the title format it appends "by" (with no artist name) if
ARTIST is not present in the format, and "from" if ALBUM is not there!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-04-04 Thread MillmoorRon


In my Custom Browse menus when I drill down to track level I get

(track title) by from (album name)

where the bits in brackets are variables.

Which setting controls this behaviour?

I would like to turn off the "by" (which is always blank) and "from"
bits and just show the track title.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-03-04 Thread MillmoorRon


dolodobendan wrote: 
> No guarantee if this will work in your case, but I would save
> 
> >   >   > 
  - the cache folder
  - the prefs folder
  - and the playlist folder (that's where Custom Browse and Multi
  > Library store some settings unless you changed that)
  > > > 
> 
> 1) and then copy it to its new location.
> 
> 2) Or set up your LMS from scratch and just replace the settings for
> the plugins you want from prefs/plugin.
> 
> The latter might be the safest way to go.
> 
> Good luck.

Definitely 2)!

I will be doing a clean install of new OS, LMS and the plugins.

It's just the settings I want to import.

Would I just need to stop the LMS service, overwrite the pref files with
my old ones and restart LMS?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-03-03 Thread MillmoorRon


I'm building a new computer to host my LMS and music files. Current one
has been working well for nearly 10 years but it is huge, noisy and
power hungry so is going into retirement. My new one will have the same
absolute paths to the music and plugin directory locations. Both have
same OS (Mint Linux).

Is there a quick way to duplicate the settings for the all the plugins
exactly by copying over a file or files?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2020-02-06 Thread MillmoorRon


I have a new pc with clean install of LMS 7.9.3 on Linux Mint 19.3
Cinnamon.

Every restart of LMS I get the following messages in the log...

> Plugins::CustomScan::Scanner::executeSQLFile (522) Couldn't open:
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/CustomScan/SQL/SQLite/dbupgrade_valuesort.sql
> : No such file or directory
> Plugins::CustomScan::Scanner::executeSQLFile (522) Couldn't open:
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/CustomScan/SQL/SQLite/dbupgrade_extravalue.sql
> : No such file or directory
> Plugins::CustomScan::Scanner::executeSQLFile (522) Couldn't open:
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/CustomScan/SQL/SQLite/dbupgrade_valuetype.sql
> : No such file or directory

Is this something that needs attention or nothing to worry about?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2019-11-21 Thread MillmoorRon


erland wrote: 
> I'm a bit occupied right now with migrating everything to GitHub since
> Google just shutdown Google Code and also to make several of my plugins
> compatible with latest LMS 7.9 version. So it might take some time but I
> think it should definitely be doable and fairly easy to add a CLI
> command to get Custom Scan custom tags related to a track. I'll try to
> take a look at it during next month or so.

Erland,

RE. Post #1651

Did this get implemented before you became too busy to maintain the
plugins?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] SqueezeCommander Android app

2019-10-29 Thread MillmoorRon


I use Squeeze Commander and my phone is on Android 9.

Seems to work OK.

I will miss it when it finally stops working too!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=110958

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


Re: [SlimDevices: Plugins] Any up-to-date Android apps?

2017-07-15 Thread MillmoorRon

I still use Squeeze Commander, mainly because it supports setting of
ratings using Erland's Trackstat plugin.

Do any of the newer apps support this?

When I tried Orange Squeeze it didn't (or I couldn't work out how!) at
the time.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=107665

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


Re: [SlimDevices: Plugins] Announce: Smart Mix plugin

2016-04-27 Thread MillmoorRon

mark wollschlager wrote: 
> At the risk of wishful thinking, is there a way to have multiple random
> play 'presets' based on user criteria/tagging ( genres, years,
> artists)?
> I say wishful, as I am not a coder.

Check out Erland's plugins! Trackstat, Dynamic Playlists & SQL Playlists
in particular.

Some coding (SQL) is useful but there are lots of customisable templates
built-in that can just be used as is.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=97668

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2016-01-27 Thread MillmoorRon

erland wrote: 
> I'm a bit occupied right now with migrating everything to GitHub since
> Google just shutdown Google Code and also to make several of my plugins
> compatible with latest LMS 7.9 version. So it might take some time but I
> think it should definitely be doable and fairly easy to add a CLI
> command to get Custom Scan custom tags related to a track. I'll try to
> take a look at it during next month or so.

Thank you very much! I'll look out for the update.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2016-01-01 Thread MillmoorRon

Erland,

I have 2 custom tags in my library which I have used Custom Scan/Browse
to access on the web interface. 

Most of the time I listen to playlists generated by SQL Playlists or
Smart Mix plugins in a room with no computer, though I have a TV with a
"now playing" screen based on the SqueezeJS tutorial.

I would like to be able to display the custom tags on this page also but
I can't see how I can get the information from LMS. The Custom Scan CLI
only seems to have commands for things related to scanning. In Trackstat
I can use CLI to get/set the ratings and would like to able to get a
custom tag from the current track in the same way.

Would it be possible to add a simple CLI interface to Custom Scan?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: Smart Mix plugin

2015-12-01 Thread MillmoorRon

mherger wrote: 
> Are you using any streaming service? Did you make sure it's still 
> working as expected? Anything in the server.log file?

No, just local files.

fastfwd wrote: 
> To fix the problem: Open the Settings page, click Advanced, select
> Performance, then change "Maximum Playlist Length" from 0 to a larger
> positive integer. Click Apply, and SmartMix will work as before.

That sorted it. 

Thanks.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=97668

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


Re: [SlimDevices: Plugins] Announce: Smart Mix plugin

2015-11-30 Thread MillmoorRon

My SmartMix plugin has started behaving oddly since I updated it.

I pick a song and it selects 4 more for the playlist from 'don't stop
the music'.

At the end of the track I hear a split second of a song but the playlist
changes to 5 different songs and stops!

Is there a new setting I need to look at?

I've tried updating to the latest 7.9 nightly.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=97668

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2015-01-23 Thread MillmoorRon

Erland,

Is there a CLI (or other) interface to the Custom Tag module of the
Custom Scan plugin?

i.e. to get the custom tags for the currently playing track



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2015-01-16 Thread MillmoorRon

The web interface doesn't update until the next track starts either.

The CLI command returns:

MAC_ADDRESS trackstat setrating 6557 3 rating%3A3 ratingpercentage%3A60



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2015-01-13 Thread MillmoorRon

erland wrote: 
 How do you view the ratings ?
 Is it through Music Information Screen and title formats on a Classic,
 Boom, Transporter display ?
 Is it through a third party smart phone app ?
 Is it through Custom Clock applet on a Touch, Radio ?
 
 I'm asking since the intention is that they should be updated
 immediately so to verify this scenario that isn't working it would help
 to know exactly how your setup looks like.

I have 2 methods of viewing ratings:

1. Squeeze Commander on Android
2. A Now Playing page on my TV using SqueezeJS



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2015-01-13 Thread MillmoorRon

PasTim wrote: 
 Please forgive the digression, but can you point me at something that
 would explain how to use SqueezeJS on a TV? (I have found the SqueezeJS
 wiki)  It's something I've never even imagined might be possible.

http://forums.slimdevices.com/showthread.php?46613-SqueezeJS-Tutorial
http://forums.slimdevices.com/showthread.php?74270-Remote-quot-NowPlaying-quot-Display

I use a Raspberry Pi with HDMI output.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2015-01-11 Thread MillmoorRon

Erland,

I have finally worked out how to set trackstat ratings by CLI but the
players don't recognise the changes until the next change of track.

Is there a CLI command I can send to force an update?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2014-07-31 Thread MillmoorRon

Erland,

How do you find the id of the currently playing track to replace 94 in
the following CLI example?


Code:

00:04:20:06:22:b3 trackstat setrating 94 4




MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2014-07-12 Thread MillmoorRon

erland wrote: 
 For example a playlist stored in the file all.sql.values.xml would
 have the playlist identity sqlplaylist_all and can be played with a
 command like:
  
Code:

  echo b8:27:eb:27:68:64 dynamicplaylist playlist play sqlplaylist_all 
| telnet 192.168.1.12 9090

  

Yes, that sorted it!

Many thanks.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2014-07-07 Thread MillmoorRon

Erland,

I am trying to call a SQL playlist using CLI with the command


Code:

echo b8:27:eb:27:68:64 dynamicplaylist playlist play All | telnet 
192.168.1.12 9090



Nothing happens but I get this in the log:


Code:


  [14-07-07 21:33:37.5119] Plugins::DynamicPlayList::Plugin::cliPlayPlaylist 
(3806) Entering cliPlayPlaylist
  [14-07-07 21:33:37.5126] Plugins::DynamicPlayList::Plugin::cliPlayPlaylist 
(3844) Got: _p3=All
  [14-07-07 21:33:37.5131] Plugins::DynamicPlayList::Plugin::playRandom (410) 
playRandom called with type All
  [14-07-07 21:33:37.5140] 
Plugins::DynamicPlayList::Plugin::clearPlayListHistory (4181) Deleteting 
playlist history for player: SB3
  [14-07-07 21:33:37.5145] 
Plugins::DynamicPlayList::Plugin::clearPlayListHistory (4181) Deleteting 
playlist history for player: Squeezebox Receiver
  [14-07-07 21:33:37.5150] 
Plugins::DynamicPlayList::Plugin::clearPlayListHistory (4181) Deleteting 
playlist history for player: PDA-Pi
  [14-07-07 21:33:37.5159] Plugins::DynamicPlayList::Plugin::getPlayList (801) 
Get playlist: All
  [14-07-07 21:33:37.5164] Plugins::DynamicPlayList::Plugin::playRandom (471) 
-1 songs remaining, songIndex = 0
  [14-07-07 21:33:37.5168] Plugins::DynamicPlayList::Plugin::getPlayList (801) 
Get playlist: All
  [14-07-07 21:33:37.5174] Plugins::DynamicPlayList::Plugin::findAndAdd (334) 
Starting random selection of 30 items for type: All
  [14-07-07 21:33:37.5178] Plugins::DynamicPlayList::Plugin::getPlayList (801) 
Get playlist: All
  [14-07-07 21:33:37.5183] 
Plugins::DynamicPlayList::Plugin::getTracksForPlaylist (3300) Calling:  with:  
, 30 , 0
  [14-07-07 21:33:37.5203] Plugins::DynamicPlayList::Plugin::cliPlayPlaylist 
(3851) Exiting cliPlayPlaylist
  [14-07-07 21:33:37.5214] Plugins::DynamicPlayList::Plugin::commandCallback65 
(1864) received command initiated byCLI
  [14-07-07 21:33:37.5218] Plugins::DynamicPlayList::Plugin::commandCallback65 
(1877) received command dynamicplaylist playlist play



Is this a problem with how I am making the call or with the plugin?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2013-01-01 Thread MillmoorRon

Yes, all seems to work again now.

Thanks again!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2012-12-31 Thread MillmoorRon

Erland,

Since the recent Dynamic Playlist update some of my SQL Playlists no
longer work in Squeeze Commander.

They are all in this style:


Code:

-- PlaylistName:All by Years...
  -- PlaylistParameter1:year:Select 1st year:
  -- PlaylistParameter2:custom:Select 2nd year:select tracks.year,tracks.year 
from tracks where tracks.year='PlaylistParameter1' and tracks.audio=1 group by 
tracks.year order by tracks.year
  select tracks.url from tracks
left join dynamicplaylist_history on
tracks.id=dynamicplaylist_history.id
where
tracks.audio=1
and dynamicplaylist_history.id is null
and tracks.year='PlaylistParameter1'
and tracks.year='PlaylistParameter2'
group by tracks.id
order by random()
limit 20;



and result in this in the log file:


Code:

[12-12-31 10:46:27.2800] Slim::Schema::Storage::throw_exception (122) 
Error: DBI Exception: DBD::SQLite::st bind_columns failed: bind_columns called 
with 3 values but 2 are needed [for Statement select tracks.year,tracks.year 
from tracks where tracks.year=2005 and tracks.audio=1 group by tracks.year 
order by tracks.year]
  [12-12-31 10:46:27.2802] Slim::Schema::Storage::throw_exception (122) 
Backtrace:
  
  frame 0: Slim::Utils::Log::logBacktrace 
(/usr/share/perl5/Slim/Schema/Storage.pm line 122)
  frame 1: Slim::Schema::Storage::throw_exception 
(/usr/share/squeezeboxserver/CPAN/DBIx/Class/Storage/DBI.pm line 1006)
  frame 2: DBIx::Class::Storage::DBI::__ANON__ 
(/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/DynamicPlayList/Plugin.pm
 line 1164)
  frame 3: (eval) 
(/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/DynamicPlayList/Plugin.pm
 line 1163)
  frame 4: (eval) 
(/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/DynamicPlayList/Plugin.pm
 line 1152)
  frame 5: Plugins::DynamicPlayList::Plugin::addParameterValues 
(/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/DynamicPlayList/Plugin.pm
 line 3555)
  frame 6: Plugins::DynamicPlayList::Plugin::cliJivePlaylistParametersHandler 
(/usr/share/perl5/Slim/Control/Request.pm line 1884)
  frame 7: (eval) (/usr/share/perl5/Slim/Control/Request.pm line 1884)
  frame 8: Slim::Control::Request::execute (/usr/share/perl5/Slim/Web/Cometd.pm 
line 880)
  frame 9: Slim::Web::Cometd::handleRequest 
(/usr/share/perl5/Slim/Web/Cometd.pm line 553)
  frame 10: Slim::Web::Cometd::handler (/usr/share/perl5/Slim/Web/Cometd.pm 
line 112)
  frame 11: Slim::Web::Cometd::webHandler (/usr/share/perl5/Slim/Web/HTTP.pm 
line 486)
  frame 12: Slim::Web::HTTP::processHTTP 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 139)
  frame 13: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 123)
  frame 14: Slim::Networking::IO::Select::__ANON__ 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 184)
  frame 15: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 184)
  frame 16: Slim::Networking::IO::Select::loop (/usr/sbin/squeezeboxserver line 
695)
  frame 17: main::idle (/usr/sbin/squeezeboxserver line 645)
  frame 18: main::main (/usr/sbin/squeezeboxserver line 1158)
  



They still work through the web interface but in Squeeze Commander it
just hangs after picking the second year.

This is something which you have previously addressed and fixed. Has the
new version broken this again?

Could I manually re-install the older version of the plugin (using
Ubunutu) to verify that this is the cause?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2012-12-31 Thread MillmoorRon

Thanks! 

I can still use them through other means until then.

It happens with some other SQL playlists with user parameters too.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2012-10-10 Thread MillmoorRon

erland wrote: 
 It has a CLI interface to get/set rating for a track, I suspect this
 means that it can be called from SqueezeJS but I haven't really looked
 into SqueezeJS in more detail so far. The TrackStat CLI interface is
 documented on its documentation page:
 http://wiki.slimdevices.com/index.php/TrackStat_plugin#CLI_interface

Thanks. I'll give that a go - if I can work out how to attach an event
handler to a custom button!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2012-10-09 Thread MillmoorRon

Erland,

Does TrackStat have any methods for getting/setting ratings using the
SqueezeJS framework?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2012-06-01 Thread MillmoorRon

erland wrote: 
 Yes, take a look at the Random for custom tag template which should be
 available if you have Custom Scan installed.
 The template file name is in
 CustomScan/PlaylistTemplates/randomforcustomtag.* but you can probably
 just create a playlist of this type through the SQL Playlist user
 interface if you want to see how it looks like.

Thanks, that looks like what I'm after!

erland wrote: 
 Not easily, possibly it might be possible to combine it with some logic
 in the SQL which treats a certain value as not selected.
 What kind of scenario/type of playlist are you thinking of ?

I was just thinking of a generic playlist which could replace a lot of
my more specific ones.

For example, 4 parameters (genre, year, 'customtag', artist)

If 'all' was an option in the drop-down lists you could create a varying
degree of customisation to suit the mood without needing lots of
different SQL files.

I might one day want to listen specifically to tracks which are tagged
as metal from 1994 by Finnish bands (country of origin is one of my
custom tags) but the next day I might fancy pop music from any year by
Belgian artists - though that could be a very short playlist - or all
genres from a year, or all from a year by a specific artist, etc.

Similar to how the dynamic mixed tags Custom Browse menu works but in a
more structured way.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2012-05-29 Thread MillmoorRon

Yeah, it was a 'truly dynamic' (where all the parameters are picked at
runtime) dynamic playlist I was thinking of!

Currently, if the results of the custom browse are quite large it can
create a playlist with MANY tracks in.

On a related issue, is it possible to get all the possible values of a
Custom Scan custom tag as a PlaylistParameter in a SQL?

Also, is it possible to have a PlaylistParameter which has an 'all'
entry?

For example:


Code:

-- PlaylistParameter2:year:Select year:



might result in a list of 'All, 1970, 1972, 1973, ...' 

so that an optional narrowing down of results could be achieved.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2012-05-27 Thread MillmoorRon

Is there any way to create a dynamic playlist which works like the
'dynamic mixed tags' custom browse but creates a playlist based on the
matching songs?

Or a mixer which does this from the custom browse menu?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: Beta version of SvrPowerControl

2012-05-25 Thread MillmoorRon

philly4 wrote: 
 I have my system set up to suspend after 60 min of no activity.  After
 upgrading to 7.7.2, LMS would no longer suspend with no activity.  After
 doing some trouble shooting, I figured out that the Lazy Search plugin
 was the culprit.  After uninstalling Lazy Search, everything works
 perfectly again.  I never had a problem with 7.6 or anything before. 
 Somehow SvrPowerControl was getting info from it that there was activity
 and therefore not going to suspend.  Anyone else run into this issue? 
 Any workarounds?  Windows XP SP, 3 LMS 7.7.2 - r33893, Lazy Search
 v3.5.6.  Thanks for any help.

I have had this too since upgrading to 7.7.2.

I think it only happens the first time a shutdown occurs after a library
rescan. 

Rebooting the PC seems to clear the problem.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=48521

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


Re: [SlimDevices: Plugins] SQL Playlists: updating to 7.5 versions to LMS

2012-05-18 Thread MillmoorRon

Works perfectly now. Thanks!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=94854

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


Re: [SlimDevices: Plugins] SQL Playlists: updating to 7.5 versions to LMS

2012-05-09 Thread MillmoorRon

erland wrote: 
 It's a bug in Dynamic Playlist, will try to release a new version where
 it's fixed in the near future, just want to test the correction a bit
 more first, if everything goes as planned I should be able to release it
 later this week.

Thanks!

erland wrote: 
 Just out of interest, have these playlists really worked with a previous
 Dynamic Playlist version in
 iPeng/SqueezeCommander/Radio/Touch/Controller ?
 I'm just asking because I can't remember that I've done any changes
 recently in this area, so it feels like a very old problem, but I might
 have done things which I don't remember at the moment.

I think it was a couple of years ago but I'm not entirely sure whether
it was actually fixed or I just stopped using them as I knew they didn't
work properly!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=94854

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


Re: [SlimDevices: Plugins] SQL Playlists: updating to 7.5 versions to LMS

2012-05-08 Thread MillmoorRon

I have now tested all my old playlists and I have just one type which is
causing errors.

They are all generally of this format:


Code:


  -- PlaylistName:All by Years...
  -- PlaylistParameter1:year:Select 1st year:
  -- PlaylistParameter2:custom:Select 2nd year:select tracks.year,tracks.year 
from tracks where tracks.year='PlaylistParameter1' and tracks.audio=1 group by 
tracks.year order by tracks.year
  select tracks.url from tracks
left join dynamicplaylist_history on
tracks.id=dynamicplaylist_history.id
where
tracks.audio=1
and dynamicplaylist_history.id is null
and tracks.year='PlaylistParameter1'
and tracks.year='PlaylistParameter2'
group by tracks.id
order by random()
limit 20;



In iPeng or SqueezeCommander the '2nd year' selection does not appear at
all. I think Pippin suggested that the plugin was not passing the
correct data to is app but I thought that you had fixed this a couple of
years ago.

I get this in the log:

Code:


  [12-05-08 15:53:44.2372] Slim::Schema::Storage::throw_exception (122) Error: 
DBI Exception: DBD::SQLite::db prepare failed: near and: syntax error [for 
Statement select tracks.year,tracks.year from tracks where tracks.year= and 
tracks.audio=1 group by tracks.year order by tracks.year]
  



If I try it through the web interface it seems to work - i.e. it returns
the expected tracks - however I get the following (and some backtrace
lines) log:

Code:


  [12-05-08 15:59:22.4414] Slim::Schema::Storage::throw_exception (122) Error: 
DBI Exception: DBD::SQLite::st bind_columns failed: bind_columns called with 3 
values but 2 are needed [for Statement select id,name from genres order by 
namesort]
  [12-05-08 15:59:24.7529] Slim::Schema::Storage::throw_exception (122) Error: 
DBI Exception: DBD::SQLite::st bind_columns failed: bind_columns called with 3 
values but 2 are needed [for Statement select id,name from genres order by 
namesort]
  [12-05-08 15:59:25.1660] Slim::Schema::Storage::throw_exception (122) Error: 
DBI Exception: DBD::SQLite::st bind_columns failed: bind_columns called with 3 
values but 2 are needed [for Statement select year,year from tracks where year 
is not null group by year order by year desc]
  [12-05-08 15:59:28.7134] Slim::Schema::Storage::throw_exception (122) Error: 
DBI Exception: DBD::SQLite::st bind_columns failed: bind_columns called with 3 
values but 2 are needed [for Statement select id,name from genres order by 
namesort]
  [12-05-08 15:59:29.1253] Slim::Schema::Storage::throw_exception (122) Error: 
DBI Exception: DBD::SQLite::st bind_columns failed: bind_columns called with 3 
values but 2 are needed [for Statement select year,year from tracks where year 
is not null group by year order by year desc]
  [12-05-08 15:59:29.5156] Slim::Schema::Storage::throw_exception (122) Error: 
DBI Exception: DBD::SQLite::st bind_columns failed: bind_columns called with 3 
values but 2 are needed [for Statement select tracks.year,tracks.year from 
tracks where tracks.year=1997 and tracks.audio=1 group by tracks.year order by 
tracks.year]
  



Is this something that needs changing in my SQL to make it compatible,
or a problem with the plugin?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=94854

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


Re: [SlimDevices: Plugins] Custom Scan speed

2012-05-08 Thread MillmoorRon

Just an update to an old thread to add my experiences:

I skipped 7.6 totally and reinstalled my entire operating system (Ubuntu
10.04LTS) on to a new small (but fast) SSD and installed LMS 7.7.2. All
other hardware remained untouched with music being stored on a separate
conventional HD.

My standard scans (full rescan) were previously taking 2 hours with a
further 12-13 hours for Custom Scans.

This has reduced to 45 minutes and less than 2 hours!

I don't know if this great improvement is down to the SSD, a clean
install of OS or the latest Custom Scan plugin but I'm very happy with
the result!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=85180

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


Re: [SlimDevices: Plugins] Announce: SMD, let's discover the music

2012-05-03 Thread MillmoorRon

erland wrote: 
 Sounds like a corrupt configuration for Database Query plugin, you will
 probably find an empty or corrupt sqlquery.dataquery.values.xml or
 sqlquery.dataquery.xml file in the directory configured in the settings
 page for Database Query plugin. You can just delete it manually in a
 file manager and then hit the Refresh data queries link at the bottom
 of the Extras/Database Query menu in the SBS/LMS web interface.

That got rid of it. Thanks!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=90278

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


Re: [SlimDevices: Plugins] Announce: SMD, let's discover the music

2012-05-02 Thread MillmoorRon

I think the sequence of events was:

Attempted full scan. 
Stopped about 2/3 though stage 1. 
Waited about 2 hours but no further progress.

Aborted scan. 
Restarted PC. 

Tried another scan with INFO level logging enabled for SMD. 
Stopped at EXACTLY same point. 
No hint in log as to what the problem was. (I was hoping a particular
file would be stated as the problem)
Aborted scan. 

Uninstalled plugin and restarted PC.
Log messages as above every 6 seconds.

Re-installed plugin and attempted a full scan.
Stopped at EXACTLY same point. (x of y files)
Went to work but still at same point in scan 10 hours later!

I will attempt Database Query next.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=90278

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


Re: [SlimDevices: Plugins] Announce: SMD, let's discover the music

2012-05-02 Thread MillmoorRon

Thanks, that seems to have sorted it!

I do get the following after restarting though:


Code:

2012-05-02 20:48:48 squeezeboxserver_safe stopped.
  [12-05-02 20:48:48.7126] Plugins::CustomScan::Plugin::shutdownPlugin (118) 
disabling
  [12-05-02 20:48:48.7128] Plugins::CustomScan::Plugin::uninstallHook (146) 
Uninstalling Custom Scan hooks
  [12-05-02 20:48:48.7129] Plugins::CustomScan::Scanner::shutdownScanner (552) 
disabling
  2012-05-02 20:53:19 squeezeboxserver_safe started.
  [12-05-02 20:53:20.9935] main::init (354) Starting Logitech Media Server 
(v7.7.2, r33893, Wed Mar 14 05:46:46 PDT 2012) perl 5.010001
  [12-05-02 20:53:21.7455] Slim::Utils::IPDetect::_init (120) Warning: Couldn't 
call connect() - falling back to 127.0.0.1
  [12-05-02 20:53:22.5523] Plugins::CustomScan::Scanner::initDatabase (96) 
CustomScan: Creating database tables
  [12-05-02 20:53:22.5526] Plugins::CustomScan::Scanner::executeSQLFile (498) 
Executing SQL file 
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/CustomScan/SQL/SQLite/dbcreate.sql
  [12-05-02 20:53:22.5535] Plugins::CustomScan::Scanner::initDatabase (439) 
Creating indexes
  [12-05-02 20:53:22.5538] Plugins::CustomScan::Scanner::executeSQLFile (498) 
Executing SQL file 
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/CustomScan/SQL/SQLite/dbindex.sql
  [12-05-02 20:53:22.5556] Plugins::CustomScan::Plugin::installHook (132) 
Installing Custom Scan hooks
  [12-05-02 20:53:22.5778] Plugins::SrvrPowerCtrl::Settings::new (209) Server 
Power Control, version 20120427.163654, is running on sbs version 7.7.2 on 
unix:Debian, mac  
  [12-05-02 20:53:22.6148] Plugins::TrackStat::Storage::refreshTracks (1236) 
TrackStat: Synchronizing TrackStat data, please wait...
  [12-05-02 20:53:28.0621] Plugins::TrackStat::Storage::refreshTracks (1814) 
TrackStat: Synchronizing TrackStat data finished
  [12-05-02 20:53:28.8985] 
Plugins::DatabaseQuery::ConfigManager::BaseParser::parseContentImplementation 
(501) Failed to parse configuration (sqlquery) because:
  
  not well-formed (invalid token) at line 17, column 30, byte 542 at 
/usr/share/squeezeboxserver/CPAN/XML/Parser.pm line 187



Are the last couple of lines anything to worry about?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=90278

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


Re: [SlimDevices: Plugins] Announce: SMD, let's discover the music

2012-05-01 Thread MillmoorRon

Nothing left over in the cache folders after uninstall and
SocialMusicDiscovery plugin folder has gone but still getting the log
entries every 6 seconds.

If I re-install it I can't get the scan to complete - it just locks up
about 2/3 through stage 1.



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=90278

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


Re: [SlimDevices: Plugins] Announce: SMD, let's discover the music

2012-04-25 Thread MillmoorRon

None of the above work.

If I reinstall the plugin the messages stop, however the scan stops at
the same point during phase 1/2 with:


Code:

[12-04-25 21:35:27.5280] Plugins::SocialMusicDiscovery::Server::request 
(146) GET: http://localhost:9998/mediaimportmodules/squeezeboxserver



every 2 seconds.

Any idea what could be the cause of this?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=90278

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


Re: [SlimDevices: Plugins] Announce: SMD, let's discover the music

2012-04-23 Thread MillmoorRon

I have uninstalled the SMD plugin but now I get the following in my
server log every 6 seconds:


Code:

[12-04-23 19:13:06.3109] Slim::Utils::Strings::string (490) Error: missing 
string PLUGIN_SOCIALMUSICDISCOVERY_PHASE_1_2_PROGRESS
  [12-04-23 19:13:06.3112] Slim::Utils::Strings::string (490) Backtrace:
  
  frame 0: Slim::Utils::Log::logBacktrace 
(/usr/share/perl5/Slim/Utils/Strings.pm line 490)
  frame 1: Slim::Utils::Strings::string 
(/usr/share/perl5/Slim/Web/Template/SkinManager.pm line 210)
  frame 2: Slim::Web::Template::SkinManager::__ANON__ 
(/usr/share/squeezeboxserver/HTML/Default/ajaxProgress.txt line 17)
  frame 3: (eval) (/usr/share/squeezeboxserver/HTML/Default/ajaxProgress.txt 
line 18)
  frame 4: (eval) (/usr/share/squeezeboxserver/HTML/Default/ajaxProgress.txt 
line 16)
  frame 5: Template::Provider::__ANON__ 
(/usr/share/squeezeboxserver/CPAN/Template/Document.pm line 151)
  frame 6: (eval) (/usr/share/squeezeboxserver/CPAN/Template/Document.pm line 
149)
  frame 7: Template::Document::process 
(/usr/share/squeezeboxserver/CPAN/Template/Context.pm line 347)
  frame 8: (eval) (/usr/share/squeezeboxserver/CPAN/Template/Context.pm line 
321)
  frame 9: Template::Context::process 
(/usr/share/perl5/Slim/Web/Template/Context.pm line 38)
  frame 10: Slim::Web::Template::Context::process 
(/usr/share/squeezeboxserver/HTML/EN/progress.html line 3)
  frame 11: (eval) (/usr/share/squeezeboxserver/HTML/EN/progress.html line 16)
  frame 12: Template::Provider::__ANON__ 
(/usr/share/squeezeboxserver/CPAN/Template/Document.pm line 151)
  frame 13: (eval) (/usr/share/squeezeboxserver/CPAN/Template/Document.pm line 
149)
  frame 14: Template::Document::process 
(/usr/share/squeezeboxserver/CPAN/Template/Context.pm line 347)
  frame 15: (eval) (/usr/share/squeezeboxserver/CPAN/Template/Context.pm line 
321)
  frame 16: Template::Context::process 
(/usr/share/perl5/Slim/Web/Template/Context.pm line 38)
  frame 17: Slim::Web::Template::Context::process 
(/usr/share/squeezeboxserver/CPAN/Template/Service.pm line 94)
  frame 18: (eval) (/usr/share/squeezeboxserver/CPAN/Template/Service.pm line 
91)
  frame 19: Template::Service::process 
(/usr/share/squeezeboxserver/CPAN/Template.pm line 65)
  frame 20: Template::process 
(/usr/share/perl5/Slim/Web/Template/SkinManager.pm line 323)
  frame 21: Slim::Web::Template::SkinManager::_fillTemplate 
(/usr/share/perl5/Slim/Web/Template/NoWeb.pm line 68)
  frame 22: Slim::Web::Template::NoWeb::_generateContentFromFile 
(/usr/share/perl5/Slim/Web/HTTP.pm line 2553)
  frame 23: Slim::Web::HTTP::filltemplatefile 
(/usr/share/perl5/Slim/Web/Pages/Progress.pm line 120)
  frame 24: Slim::Web::Pages::Progress::progress 
(/usr/share/perl5/Slim/Web/HTTP.pm line 1101)
  frame 25: Slim::Web::HTTP::generateHTTPResponse 
(/usr/share/perl5/Slim/Web/HTTP.pm line 924)
  frame 26: Slim::Web::HTTP::processURL (/usr/share/perl5/Slim/Web/HTTP.pm line 
734)
  frame 27: Slim::Web::HTTP::processHTTP 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 139)
  frame 28: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 123)
  frame 29: Slim::Networking::IO::Select::__ANON__ 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 184)
  frame 30: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 184)
  frame 31: Slim::Networking::IO::Select::loop (/usr/sbin/squeezeboxserver line 
695)
  frame 32: main::idle (/usr/sbin/squeezeboxserver line 645)
  frame 33: main::main (/usr/sbin/squeezeboxserver line 1158)



I can't turn logging off as the option is no longer there.

How can I stop this?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=90278

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


Re: [SlimDevices: Plugins] SQL Playlists: updating to 7.5 versions to LMS

2012-04-23 Thread MillmoorRon

Thanks for the tips. 

I think I'll go with the cron suggestion as it seems the easiest!



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=94854

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


Re: [SlimDevices: Plugins] SQL Playlists: updating to 7.5 versions to LMS

2012-04-22 Thread MillmoorRon

Yes, that seems to work.

Thanks!

One other (slightly related) issue I'm having is that after creating a
new SQL Playlist or Custom Browse menu through the web interface I find
that the owner of the file (server is on Ubuntu)  is 'squeezeboxserver'
and that only the owner has write permissions. I tend to edit these
files in a text editor (on a different Windows PC) rather than in the
web interface as it is easier to see the whole file. 

Is there any way to tweak it so that the owner is 'nobody' or write
permission is added for all?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=94854

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


[SlimDevices: Plugins] SQL Playlists: updating to 7.5 versions to LMS

2012-04-20 Thread MillmoorRon

Erland,

I'm trying to update my SQL Playlists to work on LMS.

I've changed all instances of rand() to random() which makes most work
OK but I still have some problematic ones.

My Recently Added SQL have a 'days' parameter:

Code:

-- PlaylistParameter1:list:Added in the 
last:1:Day,7:Week,14:Fortnight,30:Month,91:Quarter,182:Six Months,365:Year



which is later used in:

Code:

and track_statistics.addedUNIX_TIMESTAMP(DATE_ADD(NOW(),INTERVAL 
-'PlaylistParameter1' DAY))



Could you please advise the syntax for the new version:

Code:

and track_statistics.addedSTRFTIME(%s,DATE('NOW','-30 DAY'))



to add this parameter in the place of the 30 above?



MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=94854

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


Re: [SlimDevices: Plugins] Announce: Playlist Manager v4.0 released

2012-01-31 Thread MillmoorRon

Been happily using PlaylistManager 6.0 for some time (on 7.5.5) however
one of my playlists has been corrupted somehow and I cannot now open it
in Squeezecenter (web interface or iPeng/Squeeze Commander).

I made some new playlists to use instead but the old ones ones still
show up in the list! How do I get rid of these? (I have tried
restarting Squeezecenter) Are they cached somewhere?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=59071

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


Re: [SlimDevices: Plugins] Custom Scan and 7.6

2011-08-17 Thread MillmoorRon

PasTim;650502 Wrote: 
 If so, there is no way I can change it for a restart.

In 'Advanced Log Settings' just above all the drop-down lists there is
a check box entitled 'Save logging settings for use at next application
restart '.

I think this saves your setting permanently.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=89135

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


Re: [SlimDevices: Plugins] Custom Scan and 7.6

2011-08-12 Thread MillmoorRon

PasTim;649254 Wrote: 
 There don't seem to be any log entries for the Custom Scan, which
 surprised me (and I did stop/restart SB to make sure), but I can live
 without assuming that if something fails it will be logged.

I think the default only logs errors.

If you set plugin.customscan to 'info' under the advancedlogging
setting you'll get the start and stop times and some other relevant
stuff.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=89135

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2011-07-08 Thread MillmoorRon

erland;639615 Wrote: 
 I can reproduce it in my 7.5 setup but 7.6 seems to work better.
 
 I need to focus on fixing all the 7.6 bugs at the moment so it might
 take a while until I get the time to get back and fix this for 7.5.

Thanks. I can wait for 7.6!

Are the latest updates for 7.6 only or do they still work on 7.5?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Custom Browse not showing Custom Scan Last.FM Similar Artists

2011-04-20 Thread MillmoorRon

Works great again now. Thanks!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=86985

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


Re: [SlimDevices: Plugins] Custom Browse not showing Custom Scan Last.FM Similar Artists

2011-04-12 Thread MillmoorRon

I have the same issue, although I do have a Custom Browse menu but it
says no menu items are available.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=86985

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


Re: [SlimDevices: Plugins] Custom Scan speed

2011-03-27 Thread MillmoorRon

I'm on 7.5.3 and last time I checked, following a full library rescan,
Custom Scan took about 12 hours, but leaving my SB playing it took
nearer 6 hours.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=85180

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2011-02-13 Thread MillmoorRon

Saughassy;610513 Wrote: 
 Dear Erland! (or anyone who can help me:)
 
 How can i create a dynamic playlist with these parameters?
 
 Some kind of genres exclude
 top rated
 least played
 
 Thanks,
 Peter

Not exactly what you're after but it might give you some ideas!

You could use custom skip filters to exclude multiple genres?


Code:


  -- PlaylistName:Favourites least played by Genre...
  -- PlaylistGroups:Favourites...
  -- PlaylistParameter1:genre:Select genre:
  select tracks.url from tracks
join genre_track on
tracks.id=genre_track.track
and genre_track.genre='PlaylistParameter1'
left join dynamicplaylist_history on
tracks.id=dynamicplaylist_history.id 
  and dynamicplaylist_history.client='PlaylistPlayer'
left join track_statistics on
tracks.url=track_statistics.url
where
audio=1
and track_statistics.rating70
and dynamicplaylist_history.id is null
order by track_statistics.playCount asc
limit 10;
  



-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2011-02-13 Thread MillmoorRon

Just save it as a plain text file with '.sql.xml' extension in the
folder specified in your SQL Playlist settings.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2011-02-12 Thread MillmoorRon

Does the LastFM module of Custom Scan require other modules to be
enabled? The scan completes OK but Custom Browse says no matching
tracks and the SQL playlist only returns the originally selected
artist. It used to work before I rebuilt the computer on which
Squeezecenter is running and there have been several new versions of
both server and plugin, and many library rescans since.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Custom Scan speed

2011-02-04 Thread MillmoorRon

PasTim;608057 Wrote: 
 Your 12 hour custom scan sounds about the same as mine scaled up for the
 2-3 hours it takes for (now) about 12,000 tracks.  However, my straight
 SB full scan seems to be much quicker than yours.  Maybe a difference
 in raw CPU/Disc power? (not that my PC is any great shakes).

Mine's an AMD Athlon 64 X2 4800+ with 2 GB DDR2 RAM with music on
internal SATAII Drive. Hardly a supercomputer but more than good enough
for a dedicated Squeezecenter I would have thought!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=85180

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


Re: [SlimDevices: Plugins] Custom Scan speed

2011-02-03 Thread MillmoorRon

I've got more than 60k tracks and it takes about 12 hours to do a
CustomScan (CustomTag only, 2 new tags) after the 2 hours it takes for
a (full) Squeezecenter rescan.

This is the only thing that is slower since I switched from Win to
Ubuntu - no idea why though. Hard disc activity is fairly continuous
during the scan.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=85180

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


Re: [SlimDevices: Plugins] iPeng support thread

2010-12-08 Thread MillmoorRon

Since this morning's update my Dynamic Playlists no longer work from the
iPeng menus.

Still OK from standard SB3 remote and web interface though.

Must be caused by Penguin's new hat!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2010-09-14 Thread MillmoorRon

pippin;576315 Wrote: 
 OK, this looks like WOL needs explaining :) Note to self: update
 manual.
 
 If you enable WOL, the default is to permanently send WOL packets on
 startup and then every 30s or so.
 If you do NOT want that, there's also a manual WOL setting. If you
 enable THAT one, NO WOL packets will be sent automatically. Instead,
 you get a Power button on the server item in the MultiPlayer screen.
 Whenever you press that power button a WOL packet is being sent.
 Use this if you only want to wake up servers incidentally.

I guess I'll get used to stopping iPeng first eventually:)

Out of interest, why the change from once at startup to continuous?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2010-09-13 Thread MillmoorRon

If I have iPeng open on my Touch and I shut down my computer, iPeng
starts it up again!

This only started happening with one of the most recent updates.

Is this behaviour intentional? I thought it only sent the WOL packet at
startup.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] IPeng: Do you prefer the old or new player icons?

2010-08-12 Thread MillmoorRon


A poll associated with this post was created, to vote and see the
results, please visit http://forums.slimdevices.com/showthread.php?t=81028

Question: Which player icons in iPeng do you prefer?

- Old
- New


I also prefer the old penguin - bring back Coolio!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=81028

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-05-22 Thread MillmoorRon

Any ideas about my Custom Scan problem? [post 550]

I've done a clear of the LastFM module and rescanned with the debug
level logging enabled and it seems to finish OK


Code:


  [10-05-22 10:32:37.9032] Plugins::CustomScan::Scanner::initArtistScan (1077) 
Got 2958 artists
  [10-05-22 10:32:38.0063] Plugins::CustomScan::Scanner::scanArtist (1435) 
Scanning artist: 10cc
  [10-05-22 10:32:38.0074] Plugins::CustomScan::Scanner::scanArtist (1453) 
Calling: Plugins::CustomScan::Modules::LastFM::scanArtist
  [10-05-22 10:32:38.0077] Plugins::CustomScan::Modules::LastFM::scanArtist 
(99) Scanning artist: 10cc
  [10-05-22 10:32:38.7124] Plugins::CustomScan::Scanner::scanArtist (1435) 
Scanning artist: 18 Wheeler
  [10-05-22 10:32:38.7144] Plugins::CustomScan::Scanner::scanArtist (1453) 
Calling: Plugins::CustomScan::Modules::LastFM::scanArtist
  [10-05-22 10:32:38.7151] Plugins::CustomScan::Modules::LastFM::scanArtist 
(99) Scanning artist: 18 Wheeler
  [10-05-22 10:32:39.9039] Plugins::CustomScan::Scanner::scanArtist (1435) 
Scanning artist: The 5.6.7.8's
  [10-05-22 10:32:39.9055] Plugins::CustomScan::Scanner::scanArtist (1453) 
Calling: Plugins::CustomScan::Modules::LastFM::scanArtist
  [10-05-22 10:32:39.9061] Plugins::CustomScan::Modules::LastFM::scanArtist 
(99) Scanning artist: The 5.6.7.8's
  
  and so on, until...
  
  [10-05-22 11:23:31.2856] Plugins::CustomScan::Modules::LastFM::scanArtist 
(112) Wating a bit to avoid LastFM overload
  [10-05-22 11:23:31.7867] Plugins::CustomScan::Modules::LastFM::scanArtist 
(114) Continuing...
  [10-05-22 11:23:32.2799] Plugins::CustomScan::Scanner::scanArtist (1435) 
Scanning artist: The High Fidelity
  [10-05-22 11:23:32.2817] Plugins::CustomScan::Scanner::scanArtist (1453) 
Calling: Plugins::CustomScan::Modules::LastFM::scanArtist
  [10-05-22 11:23:32.2823] Plugins::CustomScan::Modules::LastFM::scanArtist 
(99) Scanning artist: The High Fidelity
  [10-05-22 11:23:33.1855] Plugins::CustomScan::Scanner::scanArtist (1435) 
Scanning artist: Toaster
  [10-05-22 11:23:33.1875] Plugins::CustomScan::Scanner::scanArtist (1453) 
Calling: Plugins::CustomScan::Modules::LastFM::scanArtist
  [10-05-22 11:23:33.1882] Plugins::CustomScan::Modules::LastFM::scanArtist 
(99) Scanning artist: Toaster
  [10-05-22 11:23:33.7741] Plugins::CustomScan::Scanner::scanArtist (1435) 
Scanning artist: Unbelievable Truth
  [10-05-22 11:23:33.7761] Plugins::CustomScan::Scanner::scanArtist (1453) 
Calling: Plugins::CustomScan::Modules::LastFM::scanArtist
  [10-05-22 11:23:33.7769] Plugins::CustomScan::Modules::LastFM::scanArtist 
(99) Scanning artist: Unbelievable Truth
  [10-05-22 11:23:34.7879] Plugins::CustomScan::Scanner::scanArtist (1435) 
Scanning artist: Velocette
  [10-05-22 11:23:34.7899] Plugins::CustomScan::Scanner::scanArtist (1453) 
Calling: Plugins::CustomScan::Modules::LastFM::scanArtist
  [10-05-22 11:23:34.7906] Plugins::CustomScan::Modules::LastFM::scanArtist 
(99) Scanning artist: Velocette
  [10-05-22 11:23:34.7913] Plugins::CustomScan::Modules::LastFM::scanArtist 
(112) Wating a bit to avoid LastFM overload
  [10-05-22 11:23:35.2925] Plugins::CustomScan::Modules::LastFM::scanArtist 
(114) Continuing...
  [10-05-22 11:23:36.4223] Plugins::CustomScan::Scanner::exitScan (1009) Rescan 
finished of Plugins::CustomScan::Modules::LastFM



But I still get 'No matching songs, albums or artists were found'


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-05-12 Thread MillmoorRon

I've recently upgraded to 7.5.0 and noticed that the lastFM module of
Custom Scan does not appear to be working anymore.

If I do a manual scan the log has this:


Code:


  [10-05-11 21:18:00.8638] Plugins::CustomScan::Scanner::moduleRescan (741) 
Performing module rescan
  [10-05-11 21:18:00.8653] Plugins::CustomScan::Scanner::refreshData (1828) 
Refresh triggered by module: Custom Tag
  [10-05-11 21:18:00.8659] Plugins::CustomScan::Scanner::refreshData (1839) 
CustomScan: Synchronizing Custom Scan data, please wait...
  [10-05-11 21:18:00.8664] Plugins::CustomScan::Scanner::refreshData (1841) 
Starting to update musicbrainz id's in custom scan artist data based on names
  [10-05-11 21:18:01.3479] Plugins::CustomScan::Scanner::refreshData (1865) 
Finished updating musicbrainz id's in custom scan artist data based on names, 
updated 0 items : It took 0.481543 seconds
  [10-05-11 21:18:01.3515] Plugins::CustomScan::Scanner::refreshData (1871) 
Starting to update custom scan artist data based on musicbrainz ids
  [10-05-11 21:18:01.3602] Plugins::CustomScan::Scanner::refreshData (1894) 
Finished updating custom scan artist data based on musicbrainz ids, updated 0 
items : It took 0.008645 seconds
  [10-05-11 21:18:01.3605] Plugins::CustomScan::Scanner::refreshData (1901) 
Starting to update custom scan artist data based on names
  [10-05-11 21:18:01.6986] Plugins::CustomScan::Scanner::refreshData (1924) 
Finished updating custom scan artist data based on names, updated 0 items : It 
took 0.337966 seconds
  [10-05-11 21:18:01.6994] Plugins::CustomScan::Scanner::refreshData (1931) 
Starting to update musicbrainz id's in custom scan album data based on titles
  [10-05-11 21:18:01.7005] Plugins::CustomScan::Scanner::refreshData (1955) 
Finished updating musicbrainz id's in custom scan album data based on titles, 
updated 0 items : It took 0.000999 seconds
  [10-05-11 21:18:01.7008] Plugins::CustomScan::Scanner::refreshData (1961) 
Starting to update custom scan album data based on musicbrainz ids
  [10-05-11 21:18:01.7019] Plugins::CustomScan::Scanner::refreshData (1984) 
Finished updating custom scan album data based on musicbrainz ids, updated 0 
items : It took 0.000901 seconds
  [10-05-11 21:18:01.7021] Plugins::CustomScan::Scanner::refreshData (1990) 
Starting to update custom scan album data based on titles
  [10-05-11 21:18:01.7030] Plugins::CustomScan::Scanner::refreshData (2013) 
Finished updating custom scan album data based on titles, updated 0 items : It 
took 0.000692 seconds
  [10-05-11 21:18:01.7033] Plugins::CustomScan::Scanner::refreshData (2019) 
Starting to update musicbrainz id's in custom scan track data based on urls
  [10-05-11 21:18:01.8472] Plugins::CustomScan::Scanner::refreshData (2043) 
Finished updating musicbrainz id's in custom scan track data based on urls, 
updated 0 items : It took 0.143753 seconds
  [10-05-11 21:18:01.8478] Plugins::CustomScan::Scanner::refreshData (2049) 
Starting to update custom scan track data based on musicbrainz ids
  [10-05-11 21:18:01.8500] Plugins::CustomScan::Scanner::refreshData (2128) 
Finished updating custom scan track data based on musicbrainz ids, updated 0 
items : It took 0.002091 seconds
  [10-05-11 21:18:01.8503] Plugins::CustomScan::Scanner::refreshData (2134) 
Starting to update custom scan track data based on urls
  [10-05-11 21:18:01.9742] Plugins::CustomScan::Scanner::refreshData (2157) 
Finished updating custom scan track data based on urls, updated 0 items : It 
took 0.123747 seconds
  [10-05-11 21:18:01.9751] Plugins::CustomScan::Scanner::refreshData (2159) 
CustomScan: Synchronization finished
  [10-05-11 21:18:02.0456] Plugins::CustomScan::Scanner::initArtistScan (1077) 
Got 2953 artists
  [10-05-11 21:19:19.1829] Plugins::CustomScan::Scanner::exitScan (1009) Rescan 
finished of Plugins::CustomScan::Modules::LastFM
  



however, when I use the (latest) Custom Browse menu in the web
interface it says:

No matching songs, albums or artists were found

and an SQL playlist only returns songs by the SAME artist.

Has something changed in 7.5.0?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] iPeng support thread

2010-05-04 Thread MillmoorRon

pippin;542905 Wrote: 
 Please try a more recent version of the server, 7.4.1 has been quite
 buggy.

Updating SBS fixed it! Thanks for your assistance.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2010-05-03 Thread MillmoorRon

pippin;542224 Wrote: 
 7.4? Did you try a Clear and Rescan?
 Web interface is different from the other ones, if SP shows the same
 it's a server issue.

Using 7.4.1 for quite some time now. Done a full clear and rescan.

I think it only started doing this after upgrading to 7.4.x - it
certainly hasn't always done it.

How does iPeng decide which image to use? Is there a way I can get it
to use the correct image - without embedding it in every individual
MP3?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] iPeng support thread

2010-05-01 Thread MillmoorRon

I'm having an issue with cover art on iPeng. 

iPeng is showing the wrong cover for songs that have no album. It shows
the same one for ALL artists where the song does not belong to an album.
[I would guess that this is the first instance in the SBS database where
there is a 'No Album' track and also a cover.jpg in the same folder, but
I could be wrong!]

I initially thought this was a SBS problem but I've noticed that the
web interface and Moose both display the correct image (i.e. the
cover.jpg from the song's folder) however Squeezeplay doesn't. I'm
confused!

Is there a setting somewhere that affects this behaviour?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=51929

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-02-01 Thread MillmoorRon

My Full rescan and Custom Tag scan appeared to have finished when I
looked in the morning but I couldn't check in the log file as it was
completely blank. Not sure why that would be!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-01-30 Thread MillmoorRon
)
  frame 8: Slim::Control::Request::execute (/usr/share/perl5/Slim/Web/Cometd.pm 
line 806)
  frame 9: Slim::Web::Cometd::handleRequest 
(/usr/share/perl5/Slim/Web/Cometd.pm line 548)
  frame 10: Slim::Web::Cometd::handler (/usr/share/perl5/Slim/Web/Cometd.pm 
line 108)
  frame 11: Slim::Web::Cometd::webHandler (/usr/share/perl5/Slim/Web/HTTP.pm 
line 488)
  frame 12: Slim::Web::HTTP::processHTTP 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 139)
  frame 13: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 123)
  frame 14: Slim::Networking::IO::Select::__ANON__ 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 183)
  frame 15: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 183)
  frame 16: Slim::Networking::IO::Select::loop (/usr/sbin/squeezeboxserver line 
620)
  frame 17: main::idle (/usr/sbin/squeezeboxserver line 574)
  frame 18: main::main (/usr/sbin/squeezeboxserver line 1065)
  
  [10-01-30 10:28:19.7869] Slim::Display::Display::string (809) Error: missing 
string BBC
  [10-01-30 10:28:19.7873] Slim::Display::Display::string (809) Backtrace:
  
  frame 0: Slim::Utils::Log::logBacktrace 
(/usr/share/perl5/Slim/Display/Display.pm line 809)
  frame 1: Slim::Display::Display::string 
(/usr/share/perl5/Slim/Player/Player.pm line 186)
  frame 2: Slim::Player::Player::string (/usr/share/perl5/Slim/Control/Jive.pm 
line 3330)
  frame 3: Slim::Control::Jive::_localizeMenuItemText 
(/usr/share/perl5/Slim/Control/Jive.pm line 1977)
  frame 4: Slim::Control::Jive::_notifyJive 
(/usr/share/perl5/Slim/Control/Jive.pm line 391)
  frame 5: Slim::Control::Jive::mainMenu (/usr/share/perl5/Slim/Control/Jive.pm 
line 273)
  frame 6: Slim::Control::Jive::menuQuery 
(/usr/share/perl5/Slim/Control/Request.pm line 1914)
  frame 7: (eval) (/usr/share/perl5/Slim/Control/Request.pm line 1914)
  frame 8: Slim::Control::Request::execute (/usr/share/perl5/Slim/Web/Cometd.pm 
line 806)
  frame 9: Slim::Web::Cometd::handleRequest 
(/usr/share/perl5/Slim/Web/Cometd.pm line 548)
  frame 10: Slim::Web::Cometd::handler (/usr/share/perl5/Slim/Web/Cometd.pm 
line 108)
  frame 11: Slim::Web::Cometd::webHandler (/usr/share/perl5/Slim/Web/HTTP.pm 
line 488)
  frame 12: Slim::Web::HTTP::processHTTP 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 139)
  frame 13: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 123)
  frame 14: Slim::Networking::IO::Select::__ANON__ 
(/usr/share/perl5/Slim/Networking/IO/Select.pm line 183)
  frame 15: (eval) (/usr/share/perl5/Slim/Networking/IO/Select.pm line 183)
  frame 16: Slim::Networking::IO::Select::loop (/usr/sbin/squeezeboxserver line 
620)
  frame 17: main::idle (/usr/sbin/squeezeboxserver line 574)
  frame 18: main::main (/usr/sbin/squeezeboxserver line 1065)
  
  [10-01-30 10:35:40.9936] Plugins::CustomScan::Scanner::exitScan (1002) Rescan 
finished of Plugins::CustomScan::Modules::CustomTag
  



I'll try again with the autoscan tonight.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-01-29 Thread MillmoorRon

On my new Ubuntu server it takes about 1 hour to clear and rescan my
entire library as it used to on my old XP one. 

On the old system (exactly the same hardware but different OS) the
Custom Scan Custom Tag module then started and took approximately the
same amount of time to complete. (scanning just one custom tag)

My new system takes about 8 hours to do the Custom Scan bit!

Initially I assumed that this was due to it being the first scan but
subsequent scans take just as long.

I don't have the raw tags option enabled.

Is there another setting that could be causing it to be so slow?

There didn't appear to be any errors or warnings in the log file.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-01-02 Thread MillmoorRon

I'm having a big problem with a dynamic playlist.

My most frequently used 'Top Rated' sql playlist now just selects the
same 10 songs everytime!

It looks like they could be the most recently rated songs too.

I've tried recreating it using the latest templates but the same
happens.

I'm using 7.4.1 release version on Ubuntu 9.10.

Any suggestions?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-01-02 Thread MillmoorRon

I don't think so.

I've just switched to 7.4.1 on Ubuntu from 7.3.2 on XP and my SQL
playlists are unchanged - and it worked before.

Has there been another change between 7.3 and 7.4 that would affect the
syntax of my SQL?

this is my file:

-- PlaylistName: Favourites
-- PlaylistGroups: Favourites...
select url from
(select tracks.url from tracks
join track_statistics on
tracks.url=track_statistics.url
left join dynamicplaylist_history on
tracks.id=dynamicplaylist_history.id
where
audio=1
and dynamicplaylist_history.id is null
group by tracks.id
order by track_statistics.rating desc,rand()
limit 10)
as toprated
order by rand();


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-01-02 Thread MillmoorRon

I don't have any Custom Skip filters active and I only have one player
(SB3) on my system. The new version of the SQL also does the same
thing.

Database query tells me:
Number of 4 star rated songs1576  

If I do a Custom Browse of songs of specific rating the first 10 tracks
are indeed the ones that the SQL returns. These are also the ones I have
rated SINCE installing the new system and importing my old Track Stat
backup!

If I change the SQL to return more than 10 it does appear as though the
other tracks are random. Very Odd.

Does this give you any clues as to what is amiss?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-01-02 Thread MillmoorRon

Not sure exactly how to do the first thing, but I exported my TrackStat
backup and looked at the offending tracks and they do have ratings of 81
or 82!

I do have automatic rating enabled however I have the percentage
increase/decrease set at 0. Maybe these few tracks were played whilst I
was still setting everything up?

Could I edit my SQLs to select 'rating=x' rather than 'as top rated'
to get round this problem.

Thanks very much for your speedy help - I was worried that I'd
corrupted 3 years of trackstat data!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2010-01-02 Thread MillmoorRon

Oh, that explains it!

I misunderstood what the 'Automatic rating increase/decrease
percentage' actually did.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2009-12-30 Thread MillmoorRon

It took almost 3 hours in the end - I left it going while I did
something else and it finished JUST before I had to shut down to go away
for a few days!

I monitored progress using your Database query plugin and compared the
results with my old server.

Did you discover the cause of the Dynamic Playlist with iPeng problem
that stopped the second menu from displaying in the following example?

-- PlaylistParameter1:year:Select 1st year:
-- PlaylistParameter2:custom:Select 2nd year:select
tracks.year,tracks.year from tracks where
tracks.year='PlaylistParameter1' and tracks.audio=1 group by
tracks.year order by tracks.year


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2009-12-26 Thread MillmoorRon

I'm importing the Track Stat backup file from my old system and
initially I had repeated audio gaps for a few miuntes but since then -
about a hour - I still have a very unresponsive system and the HD light
is flashing lots.

Is this normal? 

How long would you expect it it to take? (my backup file was 17.7 MB)


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2009-12-25 Thread MillmoorRon

Thanks. I think they are both sorted now!

I missed that Custom Scan setting - I thought it was part of the Custom
Tag page but it was on Various Settings.

I think I must have had some older (duplicate) Custom Browse menus left
over from previous versions as I had already disabled what I thought
were the CB ones.

Thanks again!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] Announce: New versions of erlands plugins

2009-12-24 Thread MillmoorRon

I'm building a new server using Ubuntu 9.10 and Squeezecenter 7.4.2 and
I've encountered a couple of things that I cannot solve:

On my old system (7.3.2) I had a title format of

ARTIST - TITLE - ALBUM (CUSTOMSCAN_CUSTOMTAG_SINGLE)

using Custom Scan and my own 'single' tags.

On my new system this just displays (CUSTOMSCAN_CUSTOMTAG_SINGLE) as
text after the album name.

Is this not supported in 7.4.x or have I forgotten a setting I need to
adjust?

Also is there anyway to NOT display the Custom Browse versions of the
Album, Artist, Genre  Year menus? 
I just want to use my own custom menus for use with Custom Scan and
Track Stat alongside the built-in menus.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=49483

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


Re: [SlimDevices: Plugins] SQLPlaylist plugin: Help needed with multi-year range playlist

2009-09-28 Thread MillmoorRon

I've been trying to do a similar thing where the first PlaylistParameter
only lists artists where there is a track that satisfies
'track_statistics.rating = 70'. 

The intention being to play my favourite tracks by a particular artist
without having to go through a list of ALL artists who may or may not
have any favourites.

I've managed (despite not really understanding) to get a list of
matching tracks, but I can't work out how just display a list of the
actual artists from which to select the tracks!

Anybody got any suggestions?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=65850

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


Re: [SlimDevices: Plugins] TrackStat survey, what's most important ?

2009-06-02 Thread MillmoorRon


A poll associated with this post was created, to vote and see the
results, please visit http://forums.slimdevices.com/showthread.php?t=64055

Question: What functionality in TrackStat do you need most ?

- The ability to set track ratings on currently playing track
- The ability to set track ratings when browsing music library
- The ability to set track ratings from third party clients like
  iPeng and Moose
- Dynamic playlists offered through Dynamic Playlist plugin
- Browsing top rated statistics
- Browsing most played statistics
- Browsing last added statistics
- iTunes statistics import/export modules offered through Custom Scan
- MusicIP statistics import/export modules offered through Custom
  Scan
- Amarok statistics import/export modules offered through Custom Scan


The loss of your excellent plugin functionality would probably disuade
me from upgrading to any future version of Squeezecenter unless I
absolutely had to!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=64055

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


Re: [SlimDevices: Plugins] Dynamic/SQL Playlists with iPeng

2009-05-25 Thread MillmoorRon

Pippin, did you try the SQL?

I don't understand why it works OK on the SB3 itself and through the
web interface but not in iPeng/Squeezeplay!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=62953

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


Re: [SlimDevices: Plugins] Announce: SqueezeCenter 7.0 beta versions of my plugins

2009-05-25 Thread MillmoorRon

Is there a way to control the position of Custom Browse within the
Squeeze Center home page and iPeng's More page? (not just whether it
appears in Music Library or Extras)


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=39026

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


[SlimDevices: Plugins] Dynamic/SQL Playlists with iPeng

2009-05-02 Thread MillmoorRon

I have several playlists that take two years as input that work fine
through the SB (classic) remote. 

When I try them in iPeng (1.1) after selecting the first year I just
get a blank screen.

Do I need to make change to the code (example below) or is this an
iPeng issue?

-- PlaylistName:Favourites by Years...
-- PlaylistGroups:Favourites,Years
-- PlaylistParameter1:year:Select 1st year:
-- PlaylistParameter2:custom:Select 2nd year:select
tracks.year,tracks.year from tracks where
tracks.year='PlaylistParameter1' and tracks.audio=1 group by
tracks.year order by tracks.year
select tracks.url from tracks
join track_statistics on
tracks.url=track_statistics.url
left join dynamicplaylist_history on
tracks.id=dynamicplaylist_history.id
where
audio=1
and dynamicplaylist_history.id is null
and tracks.year='PlaylistParameter1'
and tracks.year='PlaylistParameter2'
and track_statistics.rating=70
group by tracks.id
order by rand()
limit 10;


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=62953

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


Re: [SlimDevices: Plugins] Dynamic/SQL Playlists with iPeng

2009-05-02 Thread MillmoorRon

I don't own a Controller but I've just tried Squeezeplay and it doesn't
work with that either! Works fine through the standard remote or web
interface though.

It's not based on a template, the attached code is all I use. (in a
'.sql.xml' file)


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=62953

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


Re: [SlimDevices: Plugins] Custom Browse survey, why do you use it ?

2009-01-27 Thread MillmoorRon


A poll associated with this post was created, to vote and see the
results, please visit http://forums.slimdevices.com/showthread.php?t=58894

Question: Why do you use Custom Browse ?

- I need to be able to browse multiple libraries
- I need to be able to browse composers or conductors separately
- I need it to be able to filter the contents of albums, artists or
  genres menus
- I need an itermediate A-Z menu before showing artists or albums for
  a specific letter
- I need to be able to browse custom tags
- The standard browse menus can't be configured as I like them
- I need to be able to browse decades
- I need more flexible browse menus to browse classical or jazz music
- I use it because it exists but the standard browse menus works good
  enough
- Some other reason


I use some of the menus exposed by its integration with other plugins
such as browse by Trackstat rating or the Last.FM similar artists.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=58894

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


Re: [SlimDevices: Plugins] Announce: Title Switcher for switching texts on player display

2008-11-20 Thread MillmoorRon

erland;361685 Wrote: 
 Something like this:
 ARTIST - TITLE:5,ALBUM - TITLE:5
 
 However, to make that work you will first have to add the following
 title formats in SqueezeCenter Settings/Interface:
 ALBUM - TITLE
 ARTIST - TITLE

That works. Thanks!

I also have a request/suggestion: if one of the title formats returns a
blank string then could it should be skipped rather then sitting empty
for x seconds?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=55240

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


Re: [SlimDevices: Plugins] Announce: Title Switcher for switching texts on player display

2008-11-19 Thread MillmoorRon

Is it possible to switch between:

'ARTIST - TITLE'  'ALBUM - TRACK'

If so, what is the syntax?

Tried several things but keep getting Invalid format!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=55240

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


Re: [SlimDevices: Plugins] SQL Playlist help

2008-10-29 Thread MillmoorRon

I think your final suggestion could do roughly what I want, with mostly
the least played but a few more frequently played track thrown in for
variety.

Thanks again!


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=53604

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


Re: [SlimDevices: Plugins] SQL Playlist help

2008-10-16 Thread MillmoorRon

Does that then play all the tracks that have never been played (in a
random order) then move on to tracks that have been played once, and so
on?

If so, is there a way to select the x% least played tracks?

e.g. if you have quite a few tracks and listen randomly, the older ones
(which have been in the database longest) will probably have been played
most often but newer ones maybe only once. Can you get a playlist that
includes the least played 20% of the total tracks available - which may
have been played once to 10 times but not tracks that have been played
50 times? (and not just below a specific playcountn value)


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=53604

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


Re: [SlimDevices: Plugins] Announce: SqueezeScrobbler 1.0 for SqueezeCenter 7.0

2008-08-14 Thread MillmoorRon

Just looked on my LastFM page and my listening charts are all screwed up
because it is registering each song I play 60 or 70 times, all with the
same time!

How do I check if it is the plugin (using v1.1.12) that is doing this
or an error at LastFM? (The SC plugin is disabled)

I did recently upgrade to SC7.1 from 7.0.1 but this odd behaviour
started prior to that, however it doesn't do it ALL the time, which is
odd.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=38845

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


[SlimDevices: Plugins] Custom Browse query

2008-06-01 Thread MillmoorRon

When browsing by artists and the list of albums is shown, there is an
'all songs' entry at the top.

Is it possible with Custom Browse to get this to show songs in
alphabetical order rather than by the year of the album and track
position?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=48367

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


Re: [SlimDevices: Plugins] Custom Browse

2008-05-23 Thread MillmoorRon

My problem is not what I thought it was!

I have actually got the Custom Browse menu how I want it, but when I
press Browse on the remote the SB3 displays the standard browse menu!

Can I modify the .map file to bring up Custom Browse instead in this
event?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=47960

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


Re: [SlimDevices: Plugins] Custom Browse

2008-05-23 Thread MillmoorRon

That did the trick!

Thanks.


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=47960

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


[SlimDevices: Plugins] Custom Browse

2008-05-22 Thread MillmoorRon

On Slimserver 6.5 Custom Browse was able to replace entirely the
built-in Browse menu on the SB3. I can't find out where to do this on
SC7!

Is this no longer possible or am I just not looking in the right place?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=47960

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


Re: [SlimDevices: Plugins] Custom Browse

2008-05-22 Thread MillmoorRon

I can't get rid of 'Music Folder'  'Search'.

Also the TrackStat and Dynamic Playlists ones.

Am I stuck with these?


-- 
MillmoorRon

MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=47960

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


  1   2   >