Re: [SlimDevices: Plugins] TrackStat with LMS ver >8.0

2021-12-23 Thread mps


Trackstat works well for me with LMS 8.3.0



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=115613

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


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

2021-03-17 Thread mps

mherger wrote: 
> > I’m not sure I understand why this is so bad. If someone uses an
> older
> > version of LMS, they’ll just get the behavior they’ve been getting
> for
> > years, which is functionally correct, even if it consumes extra space
> > and time.
> 
> You're right of course, it wouldn't hurt the plugin.
> 
> > Independently of the MAI question, is there a reason not to put
> stable
> > IDs in LMS? Would it break anything?
> 
> It might be slightly slower overall. IIRC integers are quicker to look 
> up than strings. Some claim it's twice as fast. But I haven't hard
> evidence.

How about doing the same string -> MD5 -> 60 bit integer trick that is
done in DBCache.pm to make the id an integer?



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

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


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

2021-03-17 Thread mps

mherger wrote: 
> 
> That would be a great solution. Alas: it would require a major change in
> 
> LMS. And I can't expect everybody to be using the latest and greatest 
> dev version, just to use this plugin.
Hi Michael,
I’m not sure I understand why this is so bad. If someone uses an older
version of LMS, they’ll just get the behavior they’ve been getting for
years, which is functionally correct, even if it consumes extra space
and time. 

Independently of the MAI question, is there a reason not to put stable
IDs in LMS? Would it break anything?
Thanks,
Mike



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

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


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

2021-03-17 Thread mps

mherger wrote: 
> > Thanks for releasing this, Michael. I’m seeing artist picture scan
> as 40
> > times as fast as the previous version and 4x as fast as the patch I
> > wrote :)
> 
> Well... unfortunately this joy didn't last long: turns out the new 
> method not only caused some issues, but it's not working as expected 
> with Material or iPeng. As they use both create the image URL based on 
> the raw data, they don't get the updated URLs. Which means they don't 
> take advantage of the pre-cached artwork and will continue to flood the
> 
> cache file with copies of the images. I'll have to re-think how I handle
> 
> artist artwork :-(.

:( Here is what I was thinking:

Since many such clients use the artist id in paths like
"imageproxy/mai/artist/artist_id/image.png" as well as elsewhere, I
suspect that what we really want is for the artist id (which I presume
is generated by LMS rather than MAI) to be stable.

What if when LMS (not MAI) synthesizes an ID (assuming the source being
scanned doesn't provide one), it uses the name or a hash of the name
instead of just incrementing a count (which is what I'm guessing is done
now)?

If my speculation is correct, then the original MAI would work without
changes, and I suspect there would probably be other benefits to having
stable ids as well.

I realize that was all very speculative about what is happening behind
the scenes, but does that make sense?



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

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


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

2021-03-17 Thread mps


PasTim wrote: 
> Thanks.  Beyond my skills these days I'm afraid, but the problem is so
> rare for me that the inconvenience if it does happen is not too bad :)
As a workaround, I have gotten in the habit of modifying any SQL that
uses the multilibrary id to use the name and then do a join on
multilibrary_libraries to get the id. I admit it's really ugly, but I
don't really mind doing this because using names is more robust than
hardcoding library ids in the sql. Still, it's only really an option for
people comfortable modifying SQL (You can get to the SQL by choosing
Customize SQL in many of Erland's plugins)

Here's an example of a SQL playlist that I use to randomly play work
(i.e., all the movements of a symphony). I've marked out the relevant
lines.

Code:

-- PlaylistName:Random Played Works
  -- PlaylistGroups:
  -- PlaylistOption Unlimited:1
  DROP TABLE IF EXISTS albumworks;
  
  CREATE TEMPORARY TABLE IF NOT EXISTS albumworks 
  AS SELECT tracks.album AS album, customscan_track_attributes.value as work, 
Ifnull(track_statistics.playcount, 0) as playcount
  FROM tracks
  JOIN multilibrary_track
  *JOIN multilibrary_libraries*
  LEFT JOIN track_statistics
  JOIN customscan_track_attributes
  ON tracks.id = customscan_track_attributes.track
  AND tracks.url = track_statistics.url
  AND customscan_track_attributes.module = 'customtag'
  AND customscan_track_attributes.attr = 'WORK'
  AND tracks.id=multilibrary_track.track 
  *AND multilibrary_track.library=multilibrary_libraries.id*
  WHERE playcount > 0* AND multilibrary_libraries.libraryid = 'no_duplicates'*
  GROUP BY tracks.album, customscan_track_attributes.value
  ORDER BY random() limit 10 ;
  
  SELECT tracks.url FROM
  (SELECT rowid AS albumworks_id, album as albumworks_album, work, playcount 
from albumworks)
  JOIN tracks
  JOIN customscan_track_attributes
  ON tracks.id = customscan_track_attributes.track
  AND customscan_track_attributes.module = 'customtag'
  AND customscan_track_attributes.attr = 'WORK'
  AND customscan_track_attributes.value = work
  AND tracks.album = albumworks_album
  ORDER BY albumworks_id, tracks.tracknum;




mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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: Music & Artist Information plugin

2021-03-16 Thread mps

Thanks for releasing this, Michael. I’m seeing artist picture scan as 40
times as fast as the previous version and 4x as fast as the patch I
wrote :)mherger wrote: 
> I released v1.7.0:
> 
> >   >   > 
  - Look up genre information for albums imported from online music
  > services
  - improve artist picture lookups to speed up the import process and
  > optimize cache usage
  > > > 
> 
> The genre lookup is particularly interesting if you're importing
> Spotify or TIDAL libraries, as these services don't provide any genre
> information. MAI can now (optionally) look up genre information on
> AllMusic.com and automatically tag those imported tracks with that
> information. 
> 
> The second improvement around artist pictures is particularly
> important if you often run full wipe & rescans: in this case the
> artist ID would change with every scan. And previously I used the
> artist ID to store artwork. As that key would change, the image proxy
> cache would increase in size with every scan, as all the images would
> repeatedly be cached. With this new version the cache key shouldn't
> change any more. Which means that the import should be much faster, as
> the images most likely are already in the cache, and it will take less
> disk space. Please note that it will take several weeks before the
> old, stale entries expire and eventually get wiped. If you want to
> take immediate advantage of the space saving you'll have to shut down
> LMS, delete imgproxy.db from LMS' cache folder and re-run a full wipe
> & rescan.
> 
> Have fun!



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-15 Thread mps


cpd73 wrote: 
> Material's UI settings, accessed via the three-dotted menu button top
> right, are stored in your browser's localstorage. If you are using
> private mode, or have set your browser to clear cookies, etc, then these
> will be removed. You can, however, use the menu -within- Material's UI
> settings to save the current settings as the defaults. Then when you
> browser restarts, it will use those defaults for any settings which are
> not persisted in the browser.
Thanks for telling me about "Save as default." Unfortunately, even
though the Settings now say "Show Rating," no stars appear in the UI.
Any idea what might be going wrong?

Thanks,
Mike



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-03-15 Thread mps


I recently noticed that the rating stars disappeared from my material
skin views. When I go to the server settings, I can see that "Show
Rating" has turned off. I can turn it on, but no stars reappear, and if
I open Material skin in other browsers, it still says that "Show Rating"
is off.

Any suggestions deeply appreciated.

Mike



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

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


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

2021-03-14 Thread mps

Thanks, Michael! Let me know if you want me to test anything. E.g., with
Erland’s plug-ins.



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

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


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

2021-03-13 Thread mps


mherger wrote: 
> > 
> Yep, something I've wanted to address for a while...
> 
> https://github.com/Logitech/slimserver/issues/397
> 
:)
> 
> 
> > To measure the performance effect, I modified the MAI ImageProxy
> cache
> > to use the utf8-escaped artist names instead of the Artist IDs, and
> the
> > ArtistPictureLookup time for 1287 artists dropped from 40 seconds on
> the
> > first scan down to 3 seconds on subsequent scans! After making some
> 
> Yeah, that should work - except in the rare case of two different 
> artists of the same name, which got different Musicbrainz IDs.
> 
Do you get the IDs from MusicBrainz? If so, why do they change on each
scan (and why are mine so much shorter than MusicBrainz IDs)?
> 
> 
> > small changes to CustomBrowse and TrackStat to use the new cache
> keys,
> > things seem to work alright, at least in a quick ride around the
> block.
> 
> How would these plugins interact with the MAI cache?
> 
CustomBrowse artist menus use MAI's artist image.
https://github.com/erland/lms-custombrowse/blob/1c61b27e75b29c8541d06665fff4cbf895c3a182/src/MenuHandler/BaseMenuHandler.pm#L1092
Likewise, TrackStat most-played (and least played) artist menus get the
artist image.
https://github.com/erland/lms-trackstat/blob/fe583776eafce682086a0cc2731a8676b67652f6/src/Plugin.pm#L3505

> 
> 
> > Does my analysis seem correct? Is there anything wrong with my
> solution?
> > I'm happy to share the code changes. Does anything in addition to
> 
> Yes, please share with me.
> 
How should I share them? Although based on your mention of MusicBrainz
IDs above, I'm not sure my change is the right approach. What if we
could put a stable ID in the database (e.g., MusicBrainz if found, and a
hash of the artist name if not)? That seems like it could maintain the
performance improvement while still addressing the problem of
identically-named artists and without the need to change Erland plugins
(which is problematic to say the least...).



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

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


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

2021-03-13 Thread mps


I just cut my Artist Picture Lookup time on a rescan by 90% (but I'm not
sure if it is the right thing to do)!

I recently noticed that Importer2::_precacheArtistImage -always-
recaches the artist images during a scan. Further investigation showed
that this was because the key in the imgproxy.db cache includes the
Artist ID, which was changing on every full rescan. This leads to two
problems.

  
- imgproxy.db grows on each scan because all the old items are left in
  (I confirmed this with the DatabaseQuery plugin).
- The scan is much slower because it can't find any of the cached
  artist images -even though they are already in the cache-
  

To measure the performance effect, I modified the MAI ImageProxy cache
to use the utf8-escaped artist names instead of the Artist IDs, and the
ArtistPictureLookup time for 1287 artists dropped from 40 seconds on the
first scan down to 3 seconds on subsequent scans! After making some
small changes to CustomBrowse and TrackStat to use the new cache keys,
things seem to work alright, at least in a quick ride around the block.

Does my analysis seem correct? Is there anything wrong with my solution?
I'm happy to share the code changes. Does anything in addition to
artists in MAI use similarly unstable ids? In either case, I'm assuming
the indefinitely growing Image Proxy cache should be fixed.

Any thoughts greatly appreciated,
Mike



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

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


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

2021-03-07 Thread mps


mherger wrote: 
> > - If "Find artwork online during library scan" is enabled, is this
> also
> > expired?
> 
> It's using 90 days. Assuming that you most likely would run a scan more
> 
> often.
> 
> But you haven't even enabled that option.
I am running into a problem that feels like the opposite of expiration.
My library has hundreds of artists that are never found (almost
exclusively classical), but MAI keeps trying to download them every
time, which I suspect consumes most of the artist picture lookup scan
time. Is there any way to say don't try to lookup this artist if you
tried and failed in the last x days (and if not, do you think it would
be a good idea)?

Thanks,
Mike



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

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


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

2021-03-06 Thread mps

mherger wrote: 
> > However, when checking for the existence of the file, it calls
> > Common::getLocalNameVariants which doesn't have the same
> transformation
> > of the name in the candidate list.
> 
> Hmm... that might be an excellent catch! Will have to look into this. 
> Thanks for the heads up!

Now this is interesting. Even after I made my change, it looks like it
is looking for the right file but doesn't not find it even thought it
exists! 

Here's an example where André Previn.jpg keeps getting added every
time. First, I added a logging statement to the loop in
Common::imageInFolder to print out the file that is being looked for, 

Code:

foreach my $ext ('jpg', 'JPG', 'jpeg', 'JPEG', 'png', 
'PNG', 'gif', 'GIF') {
  my $file = catdir($folder, $name . ".$ext");
  
  if (-f $file) {
  $img = $file;
  last;
  } else {
  main::INFOLOG && $log->info("$file does not exist"); # Added this
  }
  }
  


and it is indeed failing to find André Previn.jpg,

Code:

[21-03-06 21:36:10.2987] Plugins::MusicArtistInfo::Common::imageInFolder 
(76) /share/Public/LMS/ArtistPictures/André Previn.jpg does not exist
  


But it doesn't find it even though it is there and is findable by perl
with -f

Code:

[\w] #  perl -e 'if(-f "/share/Public/LMS/ArtistPictures/André 
Previn.jpg") { print "exists\n"; } else { print "does not exist\n"; }'
  exists
  


This seems completely contradictory. Am I missing anything?



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

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


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

2021-03-06 Thread mps

carsten_h wrote: 
> The filename in the filesystem is still:
> "José Carreras.jpg"
> and at the second scan, this file ist still overwritten, so this change
> does not work for me. :-(
> 

That name is what is expected, but I wonder why it overwrite it. That
isn’t happening for me.  I’ll try to test with that particular artist
name.



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

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


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

2021-03-06 Thread mps

mherger wrote: 
> > My scans are spending over 80% of their time redownloading pictures
> in
> > Artist Picture Lookup. I suspect the problem is that all of the files
> > that get redownloaded have non-ASCII characters in them as shown
> below:
> 
> Where are you running your LMS? Where are your files stored? You're 
> accessing a network share from Windows, aren't you? There also might be
> 
> a Samba configuration issue.

My QNAP NAS is both storing the files and running LMS. Windows isn’t
involved at all (except to creat a screenshot of the directory)



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

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


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

2021-03-05 Thread mps


Thanks, Carsten. I think I might have a more automated solution, but
it's "random perl hacking." The hack consists of adding one line to
Common.pm in the MusicArtistInfo plugin directory. If you're comfortable
modifying a perl file (after backing it up) I was wondering if you'd
mind trying to reproduce the fix since you've already reproduced the
problem. The change is in the bottom code block of this post.

*Background:* If I am reading the code correctly, the file names for the
Artist images are calculated in Imported::filename as

Code:

Slim::Utils::Misc::cleanupFilename(
Slim::Utils::Unicode::encode_locale(
Slim::Utils::Text::ignorePunct($artist)
)


However, when checking for the existence of the file, it calls
Common::getLocalNameVariants which doesn't have the same transformation
of the name in the candidate list.

*Fix?:* So I tried to fix by simply adding the same expression to the
list of candidate file names by adding the bolded line below.

Code:

sub getLocalnameVariants {
  my ($name) = @_;
  
  my @candidates = (
  $name,
  Slim::Utils::Unicode::utf8encode($name),
  
*Slim::Utils::Misc::cleanupFilename(Slim::Utils::Unicode::encode_locale(Slim::Utils::Text::ignorePunct($name))),
 # Added this line*
  Slim::Utils::Text::ignorePunct($name)
  );
  push @candidates, 
Slim::Utils::Unicode::utf8toLatin1Transliterate($candidates[-1]);
  
  # de-dupe results
  my %seen;
  return [ grep { !$seen{$_}++ } @candidates ];
  }
  


and it seems to work!

Thanks,
Mike



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

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


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

2021-03-05 Thread mps


My scans are spending over 80% of their time redownloading pictures in
Artist Picture Lookup. I suspect the problem is that all of the files
that get redownloaded have non-ASCII characters in them as shown below:


33659

In case it's relevant, I'm running QLogitechMediaServer on QUTS Hero
(QNAP's Linux distro)

Thanks,
Mike


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


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

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


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

2020-12-31 Thread mps


On a related note, I notice that TrackStat has been added to the
'Unsupported Repositories'
(https://github.com/LMS-Community/lms-plugin-repository/blob/master/unsupported.xml)
with a 'commit '
(https://github.com/LMS-Community/lms-plugin-repository/commit/444f7c0ff6af8a6607b68a58ff0199ea4b0c3d4a#diff-de94c3fc47562876c76361826e8bee7be90e05f783a22020024434e477066c86)comment
of "Add a test repository file for unsupported plugins."If it helps, I
would be willing to take over support of TrackStat as well. More
generally, are Erland's plugins being added to the unsupported
repository list?



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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] up to date list of repositories

2020-12-31 Thread mps


https://github.com/LMS-Community/lms-plugin-repository/blob/master/include.json
(h/t Erland)



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=113566

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


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

2020-12-30 Thread mps


Thanks, Erland! I have created the pull request to add to the official
repository list as you described at
https://github.com/LMS-Community/lms-plugin-repository/pull/13.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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] Is the TrackStat plugin still working with LMS 8.x?

2020-12-22 Thread mps


Trackstat is working fine in LMS 8 for me as well



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=113311

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


Re: [SlimDevices: Plugins] iPeng support thread

2020-12-20 Thread mps


Thanks for your response, Pippin. I will try that when it happens again.
Here's a different example that AFAICT is internal to iPeng. When I go
to the big playlist view, initially everything shows correctly
32602
However, if I swipe up to switch to another app in IOS and then switch
back to iPeng, it doesn't display any of the images anymore
32603
To see them again, I have to go back to the menu browsing screen and
then come back to the now playing view. Thoughts?


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


mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2020-12-19 Thread mps


Hi,
I am missing a lot of images on iPeng that show up in other interfaces
(or even elsewhere in iPeng). For example, in the following picture, the
image for the current song is shown in the "slide in playlist" but not
the "now playing" in the upper left corner, even though they represent
the same song.
32580

Any thoughts greatly appreciated,

Mike


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


mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2020-12-17 Thread mps


I really appreciate all the plugins you built, Erland, and completely
respect your choice to step back. Still, I don't want to see the plugins
fade away. I would be willing to "stick a toe in the water" and try
maintaining the simple, useful, and relatively stable, DBQuery plugin.
If that works out, I'd consider adopting more. If I have to make any
changes, I would then create a fork, so I can keep any headaches out of
your hair.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-12-10 Thread mps


Just want to mention a slight upgrade issue that does not have to do
with LMS versions. If you are moving from a very old perl to a newer
one, the URI::Escape module 'changed its encoding strategy in 2010'
(https://metacpan.org/changes/distribution/URI#L265), so trackstat
backups written from very old versions of perl will not be read
correctly by a new version of perl. I ran into this when migrating of
ReadyNAS as described in 'this thread'
(https://forums.slimdevices.com/showthread.php?113274-Upgraded-from-7-9-1-gt-7-9-4-Logitech-Media-Server-died-Restarting).
I am trying to recover my trackstat history by diffing the backups on
both versions and editing accordingly.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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: Music & Artist Information plugin

2020-12-08 Thread mps


mherger wrote: 
> > Thanks, Michael. I've uploaded the scanner log to Dropbox. Note that
> > after this scan, The Cars now have an Artist Picture, but Johnny Cash
> > still does not.
> 
> Thanks! That log was very helpful. Showed another issue with the 
> placeholder file, too... An update is on its way to you.
> 
> -- 
> 
> Michael
Fixed it! Thanks so much!



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

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


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

2020-12-07 Thread mps


mherger wrote: 
> > Even after scan, I seem to always have a few missing artist pictures,
> > including ones that are well-known, like The Cars in the picture
> below.
> > If I look in the Artist Pictures folder from the plugin setting, I
> see
> > that those artists are missing from the folder as well. Any
> suggestions
> > would be greatly appreciated.
> 
> First of all you can always put your own pictures in that folder, of 
> course. Second there's nothing I can help with without a scanner.log 
> with plugin.musicartistinof=INFO logging set. Please re-run a scan and 
> upload the file to https://www.dropbox.com/request/T3RctyzGgNg0oFDubq6a
> 
> -- 
> 
> Michael
Thanks, Michael. I've uploaded the scanner log to Dropbox. Note that
after this scan, The Cars now have an Artist Picture, but Johnny Cash
still does not.

Mike



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

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


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

2020-12-07 Thread mps


Even after scan, I seem to always have a few missing artist pictures,
including ones that are well-known, like The Cars in the picture below.
If I look in the Artist Pictures folder from the plugin setting, I see
that those artists are missing from the folder as well. Any suggestions
would be greatly appreciated.

Thanks,
Mike
32458


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


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

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


Re: [SlimDevices: Plugins] Is the TrackStat plugin still working with LMS 8.x?

2020-11-30 Thread mps


FWIW, trackstat seems ok under light testing on 8.0.0 so far. I will
report anything I run into.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=113311

___
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-28 Thread mps

PasTim wrote: 
> Good.  I use this, and one additionally based on a Rating tag (eg tracks
> on a rating of 80 or more), more than most other menus.  For me this
> type of facility is why I stick with LMS and put effort into it. 
> Nothing else comes close :-)

Agree 100%. However, I'd like to add the most important thing, which is
that I can't imagine anything but Squeezebox that offers the kind of
(under the hood) help I just received from you. Thank you again!



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-28 Thread mps

pippin wrote: 
> BTW: for iPeng it would also help a lot if that songs list would be
> marked as a playlist, then you could use the add/add next play modes in
> iPeng to simply add selected tracks to the current playlist but that
> might indeed be a bit difficult, I don't know how this is being done on
> the plugin side. But albums are tagged as playlists (or albums, from
> ipeng's POV that's the same thing) so it seems to be possible. 
> It _might_ also solve the "random play" issue but that's pure
> speculation. But the "play" command on the item itself might work, after
> all it does so in the Web Interface. What you are seeing in iPeng now is
> the context menu, though, which is obviously broken in this respect.
> This would also only solve it in iPeng and SqueezeCommander, though, not
> the other Apps (at least not all of them) or the Squeezeboxes
> themselves, they still need the context menu.

Thanks for looking at this, Pippin. Any suggestions on how to distill
that into a well-specified ask that I can put in the issue?

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-28 Thread mps

PasTim wrote: 
> Mine is similar, but I note that I have ' PlaylistOption Unlimited:1'
> near the start. 
> http://wiki.erland.isaksson.info/index.php/SQL_Playlist_plugin seems to
> indicate that this could be the problem.
> 
> 
Fixed it! Thank you so much!



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-28 Thread mps

pippin wrote: 
> Sorry, I still don't get it. How do I "Choose my library"? There's no
> play button on "My Music" in the web interface and I don't have any
> other library menu item.

Home/Google Music/My Music/Browse Library

I have circled the play button.

17242

Thanks,

Mike


+---+
|Filename: google_play_library.png  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=17242|
+---+


mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-28 Thread mps

pippin wrote: 
> How do I do that? I can't find it in the web interface. I thought you
> were talking about the radios which are kind of a random play feature.
  
- Turn on shuffle mode
- Choose library and select play
  
In the web interface, it plays songs at random from the library. In
iPeng it plays songs at random from the first 500 songs in the library
as desired, which means my daughter only hears from "the letter A" from
her large library...

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-28 Thread mps

PasTim wrote: 
> Could you post your SQL?

Hi Pastim,
Here is my SQL for playing works (The playcount test is because I only
want to choose from works that I have already played at least once).
Note that the second image I posted above shows that the SQL Playlist is
not truncated when I run it in "test" mode, only when I use Dynamic
Playlists to actually listen to it.

Code:

-- PlaylistName:Random Played Works
  -- PlaylistGroups:
  DROP TABLE IF EXISTS albumworks;
  
  CREATE TEMPORARY TABLE IF NOT EXISTS albumworks 
  AS SELECT tracks.album AS album, customscan_track_attributes.value as work, 
Ifnull(track_statistics.playcount, 0) as playcount
  FROM tracks
  JOIN multilibrary_track
  LEFT JOIN track_statistics
  JOIN customscan_track_attributes
  ON tracks.id = customscan_track_attributes.track
  AND tracks.url = track_statistics.url
  AND customscan_track_attributes.module = 'customtag'
  AND customscan_track_attributes.attr = 'WORK'
  AND tracks.id=multilibrary_track.track 
  AND multilibrary_track.library=2
  WHERE playcount > 0 GROUP BY tracks.album, customscan_track_attributes.value
  ORDER BY random() limit 10 ;
  
  SELECT tracks.url FROM
  (SELECT rowid AS albumworks_id, album as albumworks_album, work, playcount 
from albumworks)
  JOIN tracks
  JOIN customscan_track_attributes
  ON tracks.id = customscan_track_attributes.track
  AND customscan_track_attributes.module = 'customtag'
  AND customscan_track_attributes.attr = 'WORK'
  AND customscan_track_attributes.value = work
  AND tracks.album = albumworks_album
  ORDER BY albumworks_id, tracks.tracknum;
  




mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-27 Thread mps

pippin wrote: 
> Umm I don't have any issues with playing radios on the Google music
> plugin with iPeng.
> Could you give me details about what doesn't work for you?
> 
> I do have a few old radios that don't work but these work with no
> interface, not just iPeng.
I'm not sure what you mean by radios, but the problem is with playing
your Google music library. There doesn't seem to be any way to play
songs randomly from your Google music library in iPeng. Interestingly,
you can random play from your Google music library in the web
interface.

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-27 Thread mps

pippin wrote: 
> Sure. Got a link for me?

Thanks so much, Pippin. It's
https://github.com/hechtus/squeezebox-googlemusic/issues/53

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-27 Thread mps

Hi Pippin,
pippin wrote: 
> OK, it's a I suspected: the plugin somehow does completely different
> stuff in the player interface (which iPeng uses) and the web interface.
> What it probably needs to do is respect the shuffle setting whenever the
> "googlemusic playlist play" command is issued and the add a list of
> randomly selected tracks instead of the current behavior of just adding
> all tracks. This should be somewhat straightforward given that the
> plugin seems to already do this from the web interface but I don't know
> the specifics.
> 
> There's nothing I can do here from the iPeng side (other than create a
> better icon which I will do now...)
> 
> Other than that the plugin works quite well, I like it. Should somehow
> be more easily installable.

The issue tracker now says
> Regarding iPeng ... I don't get the point. What is not working anymore?
> I don't have iPeng to test this out. Is there an Android-iPeng out there
> for testing?
Would you mind expanding on the issue to Hechtus. I'd love for the
Google Music plugin to work with iPeng.

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2015-01-27 Thread mps

PasTim wrote: 
> Is it working OK now?
Grrr...I was hoping it would work, but the works are still truncated by
Dynamic Playlists. Notice how Pictures at an Exhibition get cut off
after track 10 even though there are many more tracks in the work.
17237
I think this must be due to truncation by Dynamic Playlists rather than
SQL Playlists because (thanks to your help), the SQL statement now
returns 10 works worth of tracks rather than just 10 tracks.
17238
Any other ideas on how I can get Dynamic Playlists to use all of the
tracks returned by the SQL Playlist and not just the first 10?

Thanks,

Mike


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


mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-11-18 Thread mps

PasTim wrote: 
> I would move the 'limit 10' from the 2nd SQL statement to the end of the
> first after the ORDER BY Random() - see my example.  Where it is now it
> is limiting the tracks to 10 instead of the Works.

Thanks! That's very helpful. I also moved the "WHERE playcount > 0" into
the first query because I was only getting 4 or 5 tracks, but I'm
hopeful everything will work now.

Thanks again,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-11-17 Thread mps

PasTim wrote: 
> I don't get truncation with this SQL.  I don't see why you should.  
> 
> What this SQL does is select 10 Works and lists them in a table.  It
> then plays all the tracks in each Work, however many there are.  When
> near the end of the playlist it selects another 10 Works (not tracks). 
> That's why there are two separate steps.  If done in one SQL statement
> you will get truncation.
> 
> It may be that I have misunderstood your problem, but with this SQL (and
> variations on it) I have sat for many hours playing tens of random
> 'works' (some of which have 50 or more tracks) with no problem.  It's
> one of the tools I use the most.
Thanks for the response, PasTim. Maybe I am missing something obvious. I
use the following SQL, which works fine from "Test/Save & Play" in the
SQL playlist menu.

Code:

-- PlaylistName:Random Played Works
  -- PlaylistGroups:
  DROP TABLE IF EXISTS albumworks;
  
  CREATE TEMPORARY TABLE IF NOT EXISTS albumworks 
  AS SELECT tracks.album AS album, customscan_track_attributes.value as work, 
Ifnull(track_statistics.playcount, 0) as playcount
  FROM tracks
  JOIN multilibrary_track
  LEFT JOIN track_statistics
  JOIN customscan_track_attributes
  ON tracks.id = customscan_track_attributes.track
  AND tracks.url = track_statistics.url
  AND customscan_track_attributes.module = 'customtag'
  AND customscan_track_attributes.attr = 'WORK'
  AND tracks.id=multilibrary_track.track 
  AND multilibrary_track.library=2
  GROUP BY tracks.album, customscan_track_attributes.value
  ORDER BY random();
  
  SELECT tracks.url FROM
  (SELECT rowid AS albumworks_id, album as albumworks_album, work, playcount 
from albumworks WHERE playcount > 0 limit 10)
  JOIN tracks
  JOIN customscan_track_attributes
  ON tracks.id = customscan_track_attributes.track
  AND customscan_track_attributes.module = 'customtag'
  AND customscan_track_attributes.attr = 'WORK'
  AND customscan_track_attributes.value = work
  AND tracks.album = albumworks_album
  ORDER BY albumworks_id, tracks.tracknum;
  



However, when I run it as a dynamic playlist (easily accessed from
iPeng, etc.), it only plays the first 10 tracks and then gets one track
at a time, disregarding any work in progress.
16691
Does that make sense? What should I do differently?


+---+
|Filename: works1.png   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=16691|
+---+


mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-11-17 Thread mps

Hi PasTim,
That's essentially what I did, but how do you deal with the problem of
dynamic playlists truncating the list?

Thanks,

Mike
PasTim wrote: 
> Do you use custom scan, and do your 'works' include a 'work' tag?  If
> so, something like the following should do the job (it does for me).
> 
> > 
Code:

  >   > 
  > -- PlaylistName:Random Classical Works
  > -- PlaylistGroups:Random
  > -- PlaylistOption Unlimited:1
  > create temporary table sqlplaylist_random_work as
  > select customscan_track_attributes.extravalue as work, tracks.album as 
album from customscan_track_attributes
  > join tracks on
  > customscan_track_attributes.track = tracks.id
  > left join dynamicplaylist_history on
  > tracks.id=dynamicplaylist_history.id and 
dynamicplaylist_history.client='PlaylistPlayer'
  > where
  > customscan_track_attributes.module='mixedtag' and
  > customscan_track_attributes.attr='WORK' and
  > dynamicplaylist_history.id is null and
  > audio=1
  > group by customscan_track_attributes.extravalue, tracks.album
  > order by random()
  > limit 10;
  > 
  > select tracks.url from tracks
  > join customscan_track_attributes on tracks.id = 
customscan_track_attributes.track
  > join sqlplaylist_random_work on tracks.album = 
sqlplaylist_random_work.album
  > where sqlplaylist_random_work.work = 
customscan_track_attributes.extravalue and 
  > customscan_track_attributes.module='mixedtag' and
  > customscan_track_attributes.attr='WORK' and
  > audio=1
  > group by tracks.id
  > order by tracks.album,tracks.disc,tracks.tracknum;
  > drop  table sqlplaylist_random_work;
  > 

> >



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-11-16 Thread mps

I have created a Dynamic Playlist (using SQL Playlists) that returns all
of the tracks in a work so I can play an entire symphony, etc.. This
works fine for the first few works but then I run into a truncation
problem. Suppose I have a 4 movement symphony that is returned as track
9 of the dynamic playlist. Since the dynamic playlist seems to only
remember the first 10 tracks returned by the SQL playlist, it plays the
first two movements correctly, but then requeries for subsequent songs,
missing the last two movements of the symphony. 

I'm sorry if this is confusing, I forgot to grab a screenshot when it
happened. Hopefully the explanation makes sense...

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2014-10-20 Thread mps

pippin wrote: 
> You mean for local playback (in iPad). Yes, might be interesting.
> For the SBs obviously not, iPeng never sees those streams

Couldn't it use the microphone for those like a lot of the Music
visualization so apps do?



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2014-10-17 Thread mps

pippin wrote: 
> OK, it's a I suspected: the plugin somehow does completely different
> stuff in the player interface (which iPeng uses) and the web interface.
> What it probably needs to do is respect the shuffle setting whenever the
> "googlemusic playlist play" command is issued and the add a list of
> randomly selected tracks instead of the current behavior of just adding
> all tracks. This should be somewhat straightforward given that the
> plugin seems to already do this from the web interface but I don't know
> the specifics.
> 
> There's nothing I can do here from the iPeng side (other than create a
> better icon which I will do now...)
> 
> Other than that the plugin works quite well, I like it. Should somehow
> be more easily installable.

Thanks, Pippin. I've added your analysis to the plugin's github issue
tracker.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2014-10-16 Thread mps

When I use Hechtus' GoogleMusic plugin to play a GoogleMusic library
shuffled, it works fine on the LMS web interface (I set shuffle to on,
and choose "play" for the library's songs). However, when I do the same
thing on iPeng, it only plays the (shuffled) first 500 songs of the
library. Not that I don't like the Arctic Monkeys, but there's more to
music than that :)

Any help much appreciated,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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] Windows 8 App

2014-05-09 Thread mps

Hi Slate,
After several restarts of the app, it started working again. However,
it's still missing the artist picture, which I really enjoy. Any
suggestions for how to get it back.



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

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


Re: [SlimDevices: Plugins] Windows 8 App

2014-05-09 Thread mps

Now SqueezeRemote has stopped working for me. I just get a nearly empty
screen as attached.

Any suggestions?

Mike


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


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

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


Re: [SlimDevices: Plugins] Windows 8 App

2014-05-07 Thread mps

MusicMad wrote: 
> 
> Other:
> 4. Whilst the photograph and Bio information are enjoyable, their use is
> limited and I would prefer to see much larger Album artwork.  Also, the
> Main Menu list takes up the bulk of the screen centre but is of little
> use most of the time - I would prefer this to be relegated to the bottom
> of the screen so allowing more space for the artwork and titles (album,
> track and artist).  But this is just a personal preference.
> 
I just started using the app on my Windows 8 desktop under Stardock's
(essential) ModernMix and love it. I actually really enjoy the photo and
Bio information and like their size. My complaint with the photo and bio
is Squeeze Remote often displays them for the wrong artist (It seems to
go to the first artist on the playlist when the app is launched, even if
that is not the currently playing song) and lately the artist photo no
longer appears :(

All of this is niggling though. The app is awesome, and I'm thrilled you
put it out.

Mike



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

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


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

2014-05-03 Thread mps

After choosing to update Database Query, LMS no longer starts :( I am
running LMS 7.8 on a ReadyNAS Pro. Any suggestions on how to fix?

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-03-29 Thread mps

erland wrote: 
> I've just released a 3.2.3914 version of TrackStat where this should
> work in Touch/Radio/Controller interfaces and iOS/Android apps, it
> requires LMS 7.8.0 or later.
> I won't introduce it in TrackStat web interface at this time since
> that's a bit more complicated.
Thanks for the instant update. Works beautifully! 

You're awesome!

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-03-28 Thread mps

When I browse albums both normally and in trackstat, I see album
pictures.
When I browse artists normally, I see artist pictures (Thank you Music
Information plugin).
However, the artist pictures don't show up in trackstat. E.g.
Most-played artists.

Is it possible for Trackstat to display artists using artists-style
menus just like it uses albums-style menus to display albums?

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-02-01 Thread mps

Thanks for responding, Erland.
erland wrote: 
> Have you tried to:
> - Restart LMS
> - Restart SqueezePlay
> - Restart iPeng
> 
> Are there any errors in the server.log file ?
In the server.log, I saw many errors of the form 
Code:

2014-02-02 01:36:59 Logitech Media Server died. Restarting.
  [14-02-02 01:37:00.2116] main::init (369) Starting Logitech Media Server 
(v7.8.0, 1391011014, Fri Jan 31 19:17:28 PST 2014) perl 5.008008
  [14-02-02 01:37:00.4615] Slim::Networking::UDP::init (39) FATAL: There is 
already another copy of the Logitech Media Server running on this machine. (\
  Address already in use)


so I've just now killed the squeezebox_server process with "kill -9"
instead of my usual ReadyNAS FrontView. Now, I can start and stop LMS
through Frontview. This fixed some of the above problems but not the
primary one:  the menus still appear in the home menu even after I clear
their checkmark in "enable/disable menus". No further errors are
appearing in server.log (except for a complaint about not being able to
download firmware). 

Do you have any other suggestions?

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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-02-01 Thread mps

All of a sudden, enable/disable menus isn't working right anymore.

-  I can no longer remove CustomBrowse menus from the home screen.
  Even though the undesired menus are unchecked in Settings'
  Enable/Disable Menu screen, they show up on the home screen (web
  interface, squeezeplay, and iPeng).
-  Even if I delete the CustomBrowse menu (from the Settings' Manage
  Menus screen), that menu remains on the home screen. Of course, it
  doesn't find anything when you click on it.
-  If I attempt to check or uncheck menus in the enable/disable menu
  screen and hit "apply," they revert to their previous settings
  
Any suggestions as to what might be going wrong?

Any help deeply appreciated,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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


[SlimDevices: Plugins] CustomBrowse and iPeng 7 issue

2014-01-28 Thread mps

I have a custom browse classical menu that lets me browse composers by
works and albums. When I view it in the web interface, I see composer
images (presumably via the Music and Artist Information plugin),
15522.

However, when I view it in iPeng7 (my preferred interface), the composer
images are missing:
15523

Any thoughts about what I need to do to make composer images appear on
iPeng 7 (like artist images, which iPeng 7 displays correctly) would be
deeply appreciated.

In case it is helpful my CB menu (which is customized, so I may be doing
something dumb) can be seen at
15524.

Thanks,

Mike


+---+
|Filename: composers.cb2.xml.txt|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=15524|
+---+


mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=100856

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


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

2014-01-26 Thread mps

Not sure if this is a M&A Information plugin bug or not, but my 50x50
Jimi Hendrix picture in the artists menu (Going through the 7.8
imageproxy at
http://prairie:9000/imageproxy/mai/artist/61096/image_50x50_o) is the
following weird picture:
15513. 
A reasonable picture exists at other sizes, and this picture doesn't
show up at all if I browse Hendrix images in the Music and Artist
Information menu.

A google image search indicates that the same image is used for Jimi
Hendrix at  http://8tracks.com/explore/songs/Jimi_Hendrix and the image
is hosted at http://userserve-ak.last.fm/serve/500/87002.jpg, so maybe
that has something to do with what is going wrong.

Jimi Hendrix is my favorite artist, and I really don't want to see this
image everytime I browse my collection. Any suggestions/thoughts are
welcome


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


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

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


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

2013-07-16 Thread mps

I recently upgraded to LMS 7.7.2, and when I do a scan, the Settings
Information page of the web interface no longer shows my Custom Scan
taking place like it used to (just Discovering files..., Scanning new
music files, Discovering playlists, Scanning new playlists, and
Pre-caching artwork). I think a LMS scan causes a Custom Scan to take
place (I'm not 100% sure because I manually fire off a lot of Custom
Scans while hacking on menus). Should I be doing anything differently?

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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: YouTube Plugin

2013-06-29 Thread mps

I just started getting the Cannot Connect to Server message also.

Any suggestions?

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=87731

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


Re: [SlimDevices: Plugins] iPeng support thread

2012-10-29 Thread mps

pippin wrote: 
> Hm. That usually means that another answer came in from the server or
> plugin with an empty record.
> 
I do think it is consistent. For example,  "1983... [A Merman I Should
Turn to Be] - Moon, Turn the Tides... Gently, Gently Away" by Jimi
Hendrix.

If iPeng gets any answer with lyrics, shouldn't it prefer that to "no
lyrics"?
> Is this specific songs it happen with (i.e. it's always like that with a
> specific song)?
> If you say they are correct in the web interface, is this the SongLyrics
> menu?
I click on the song in the web interface to get the song menu and choose
Song Lyrics. I think this uses the Song Lyrics plugin in combination
with the Song Info plugin. This works for the Jimi Hendrix example
above.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-10-29 Thread mps

While many songs display lyrics correctly in iPeng, for a number of
songs, the iPeng lyrics screensaver flashes the correct lyrics for a
couple of seconds and then switches to the "Never see any lyrics here?"
screen. These songs display lyrics correctly in the web interface. How
can I stop iPeng from overwriting correct lyrics with the "Never see any
lyrics here?" page?

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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


[SlimDevices: Plugins] IRBlaster and Naim 82 preamp

2012-10-07 Thread mps

I've been stumped at controlling my Naim 82 preamp from my Squeezebox
Touch. I'm assuming that I'm not producing a proper lircd.conf (I've
tried about 50 different files, but I'm new to lirc, so they are
completely 'cargo cult'
(http://en.wikipedia.org/wiki/Cargo_cult_programming) and probably
laughably bad). The information I have about naim preamps is:


Code:

System Code = 16
  
  Volume Down
  System Code = 16 Command Code = 17
  5000   0001 0010 0011
  
  Volume Up
  System Code = 16 Command Code = 16
  5000   0001 0010 0010



There is also a CCF file at
http://www.remotecentral.com/ftp/ccf_templates/complete_system/paul-rowlands_pro.zip.

Any help would be much appreciated.

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=96714

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-20 Thread mps

jezbo wrote: 
> Actually the latest version 1.4.30 only uses the sqlite connection for
> reading data, the trackstat ratings are set after the sqlite connection
> is closed via the CLI. So try it without the write permission.

Hi Jezbo,
Thanks for your response. Unfortunately, not quite there :( In order to
make 1.4.30 work, I need to give write permission to persist.db-shm. As
another note, when I run the MSI to install the new version, it tries to
install it in the default location, instead of where I have installed. I
think the usual behavior would be to have it install in the location of
the existing version. Does that make sense?

I'm not trying to be a pain, so I hope you view all of these comments as
helpful,

Mike



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-20 Thread mps

jezbo wrote: 
> I'm not sure that you do need write access, you could try without, but
> on a synch muso will try to update the trackstat rating information in
> the LMS database when you have set a rating via muso. I'm working on a
> more immediate rating update also.
> 
> I don't know if LMS will reset file permissions after a scan, I hope
> not.
File permissions are reset after a scan :( Any chance you could allow
Muso to run without write permissions? (I could live without the
trackstat syncing).

Thanks either way,

Mike



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-16 Thread mps

Can anyone tell me why "Complete Clapton" doesn't show up under Eric
Clapton (It doesn't show up under Cream/B.B. King/Derek and the Dominoes
either).
1357013571

Thanks,

Mike


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


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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-16 Thread mps

jezbo wrote: 
> You need to change your separators to exclude / under Options/Album
> Collation 
> 
Thanks, that did the trick!
> 
> 
> Well muso has specialized support for Classical music (see
> Options/Classical) which allows you to choose the mode of viewing (so
> you can see classical only, modern only, or combined). Classical genres
> ("Classical", "Opera", "Orchestral", "Baroque" etc) can be listed which
> categorises each album as classical or not.  Specialized classical mode
> also changes the way in which an album's titled artist is interpreted -
> Composer becomes the primary attribute rather than Artist or Performer,
> and there is support for arranging a roster of composer names to ensure
> the references are consistent across the database.
> 
> However there's no specialized jazz mode - though if all your jazz is
> under a single genre "Jazz" that's easy to apply as a filter, just click
> in the filter box and you will see genre filter shortcuts. I might add a
> specialized jazz mode if it's as simple as categorising a list of
> genres, assuming the genre tags are used in a more specific way (eg.
> "Modern Jazz", "Trad Jazz", "Bebop", etc). That will then give muso the
> flexibility to distinguish the 3 main classes of music in different
> modes (always with the option to combine them of course).
> 
> I'll look into Erland's multi-library plugin to see if anything else can
> be done to support that.
That would be much appreciated. Multi-library lets you organize your
music in very flexible ways that you can piggyback. For example, when I
use muso, I see our daughter's music in my artist cloud (SBS is not
multi-user), which I generally don't want to see, so I just created some
libraries that only contain my music and browse them.

All that being said, I would totally understand if you didn't want to
support a 3rd-party plugin. I am hopeful, due to your already supporting
Erland's trackstat...

Thanks again for all your help,

Mike



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-15 Thread mps

jezbo wrote: 
> I can't see anything wrong there. Where do you see the artistsort data
> in LMS?
> 
> EDIT: Oh I think I found the issue. Will make a fix later today. Would
> still like to know where you see the artistsort data in LMS though, I
> know it reads it from the song tags but I can't find where you can
> review/edit it in LMS.
> EDIT(2): Fix is in build 01 of 1.4.28
Thanks a lot, Jezbo. The new build fixed the artist ordering issue. One
issue I still notice around artist names is that AC/DC shows up as just
"AC" in Browse albums by Artist. Also, I have my Classical, Jazz, and
Rock/Pop in 3 different libraries (using Erland's great multi-library
plugin). Is there some way for me to filter my view based on library?

Thanks again,

Mike



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-15 Thread mps

jezbo wrote: 
> You could zip it and send it, it should reduce quite a bit. Or you could
> just search in the file for "Get ArtistSort data" and send me this line
> and the following 10 or so - that's all I'm looking for.

1: Get ArtistSort data
1: . before 599
1: . fetched 599
1: . after 599
1: . trackstat
1: . query 3
1: TRACKS...
1: . .
150910|file:///media/Music/Blues/Buddy%20Guy/Damn%20Right,%20I%27ve%20Got%20The%20Blues/01%20-%20Damn%20Right,%20I%27ve%20Got%20The%20Blues.flac|Damn
Right, I've Got The Blues|271.293|714659975|8|Damn Right, I've Got The
Blues|1991|Blues|Buddy Guy||1|2|0|0|0|
1: . . AddUpdateTrack \media\Music\Blues\Buddy Guy\Damn Right, I've Got
The Blues\01 - Damn Right, I've Got The Blues.flac|Damn Right, I've Got
The Blues|01 - Damn Right, I've Got The Blues.flac
1: . . in DB
1: . . Nothing changed
1: . .
150911|file:///media/Music/Blues/Buddy%20Guy/Damn%20Right,%20I%27ve%20Got%20The%20Blues/02%20-%20Where%20Is%20The%20Next%20One%20Coming%20From.flac|Where
Is The Next One Coming From|277.533|1332601264|0|Damn Right, I've Got
The Blues|1991|Blues|Buddy Guy||2|1|0|0|0|



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-14 Thread mps

jezbo wrote: 
> Could you start muso in debug mode, run a synch, then send me the
> muso.log file?

Thanks. How do I send you the muso.log file? It's about 3.6MB long.

Mike



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-13 Thread mps

jezbo wrote: 
> You should do yes, do you see imported data in the Options/Sorting tab?

The sorting tab only has the name column filled in. The namesort column
is empty.



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-13 Thread mps

Hi Jezbo,
Thanks for all your help. One thing I notice is that
SqueezeboxServer/iPeng/Squeezepad use the ARTISTSORTORDER tag to sort
the artists, while muso is sorting them by first name. Since
Options/Sorting says "Sort names will however be automatically imported
from Squeezebox Server," shouldn't I see the artists sorted the same way
as I see them on SqueezeboxServer?

Thanks again,

Mike



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-13 Thread mps

jezbo wrote: 
> If you open up the file properties on the library.db file in q:\cache
> from your PC, what do you see in the file security properties? I see
> full access for everyone, but my LMS is on another windows7 box. Same
> for persist.db and the Cache folder itself. Let me know if you see
> different files than those mentioned here.
> 
> Once you've checked permissions, could you start muso in debug mode, try
> the Test Connection function again, close muso and send me the muso.log
> file? This should confirm the connection string its using.

chmod a+w * in the cache directory seemed to fix it. If you don't mind
my asking, why do you need write access?



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-13 Thread mps

jezbo wrote: 
> Hi Mike,
> 
> I'm assuming LMS 7.7.1 for ReadyNas uses an SQLite database, and you
> have the SQLite option set under muso options.
> 
Yes, that's right.
>  In the "Squeezebox .db folder location" field what have you set?
I have it set to q:\cache, which corresponds to /squeezeboxserver/cache
on the ReadyNas.
>  As LMS isn't on the same box as muso you will need to change the
> default, and point it to the .db folder location on your NAS somehow -
> either via a full UNC path or a drive mapping. This often requires a
> share to be set on the Squeezebox\Cache folder on your NAS to allow your
> PC to access it. You should test that windows explorer can see your
> NAS's Squeezebox\Cache folder using the same reference as you specify in
> the "Squeezebox .db folder location". You may also need to UnLock the
> database once this is set correctly, via the button provided. 
I can successfully browse q:\cache with Windows explorer. When I unlock
the DB with the button, I get a message that says: "Database UnLocked:
MAL, but I still get the same I/O error when I press the Test SQLite
Connection button. I also have the same problem if I use UNC paths. Any
other suggestions?
> 
> 
> NB. You can still scan your NAS for song files and play them on
> Squeezebox devices through the LMS CLI without having to do the above.
> The SQLite connection is only necessary if you want to regularly
> synchronise your muso db directly with the LMS database, which is useful
> for getting the metadata matching more precisely, and synchronising
> dynamic data like playcounts and ratings (it assumes you use the
> Trackstat plugin).
I use Trackstat pretty extensively, and have worked many hours tweaking
SBS, so I was hoping to get the DB access to work. Scanning the songs
directly is certainly a possible fallback.
> 
> 
> Let me know how you get on.
Thanks,

Mike



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

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


Re: [SlimDevices: Plugins] MUSO - Support Thread

2012-07-12 Thread mps

Hi. I just downloaded the muso trial. I have the Logitech Squeezebox
Server 7.7.1 for ReadyNAS package running on my ReadyNAS Pro. In the
Music Sources page's Squeezebox Server tab, everything seems to work
until I get to Test SQLite Connection, at which point it says
"Connection Failed: Some kind of disk I/O error occurred"  Note that I
have no problem browsing the database folder in Windows explorer. Any
advice?

Thanks,

Mike



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

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


Re: [SlimDevices: Plugins] iPeng support thread

2012-06-05 Thread mps

pippin wrote: 
> I know.
> No chance. And no, it's always been that way.
> 
> For the standard menus iPeng knows it actually shows an album, not a
> playlist, a top-100 list or something else, here iPeng doesn't because
> all the plugin- and server-generated menus are not content aware.
> Changing this would break the index bar for a lot of menus.
> 
> BTW: I _do_ have a few "Albums" where this is actually quite useful
> because they have over 1.000 tracks and then being able to use the index
> bar (which requires the intermediate headers you are seeing) helps a
> lot.
Thanks, Pippin. I use the index bar too (I assume this refers to the
"fast scrolling," which fixes a huge gripe I have with every other ios
app) and would never suggest getting rid of it. 

My question was about why you needed to duplicate the artwork for each
intermediate header (as shown in the screenshot). Wouldn't the text be
enough or are there scenarios where the artwork changes for each
intermediate header?

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-06-04 Thread mps

When I view an album with over 25 songs in CustomBrowse or Trackstat, it
displays a new copy of the album art every 25 items as attached. There
is no reason to show a second, because the album art doesn't scroll off
the top anyway. I think this used to be correct, BTW, but I don't
remember which version it changed.13447


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


mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-05-18 Thread mps

Just want to say thanks for the scrolling text controls on the new iPeng
for iPad. They make a huge difference to my collection (possibly due to
some idiosyncracies in my music/tagging). The continued introduction of
both major features and surprisingly useful polishing features is a
great part of the iPeng experience. Can't wait to see what comes next.



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-05-07 Thread mps

pippin wrote: 
> Open the Album or the current playlist, hold the track for 1s and select
> "show Artwork". That's not fullscreen but as big as it gets

Thanks, I knew it was a dumb question. What threw me off was that it
wasn't available from the album context menu. Would it make sense to put
it there?

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-05-07 Thread mps

I'm guessing this is a dumb question, but how do I see full-size album
art in iPeng for iPad for albums that don't have the "now playing" song?



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-04-30 Thread mps

When I use ipeng on iphone, I often go to the current song's context
menu from the screensaver by press-holding on the album image, but this
doesn't work for me on ipeng for ipad. Would it be possible to make the
context menu available from the album cover on the screensaver on ipeng
for ipad as well?

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-04-11 Thread mps

pippin wrote: 
> iPeng 1.5/1.3 would probably be the right version
> https://trac.penguinlovesmusic.de/trac/ipengnat/
> 
> But I was more or less serious, I seem to remember there's already an
> old one for visualizers

I've added a comment to ticket #207.

Thanks,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-04-11 Thread mps

Thanks, Pippin
pippin wrote: 
> Audiogasm generally doesn't work with streams.
> 
:(

> 
> Vizualizers could be doable for local playback but probably not for
> controlling other players.
> 
> I believe there's a ticket for it?
A ticket for which product? I'm mainly interested in it on the
iphone/ipad using ipeng streaming to the iphone/ipad.

Thanks again,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-04-11 Thread mps

I was thinking it would be cool if iPeng supported music visualizations.
I sometimes get tired of looking at the album cover, and it would make a
great screensaver (or even the right side of the main iPad screen when
nothing is selected). It seems like it should be doable now that you
have playback. I realize it would be a lot of work, but perhaps you
could offer the individual visualizations as in-app purchases (I also
wonder if you use enough of the ios music stack that something like
audiogasm could work with it).

Thanks for such a great project,

Mike



mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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


[SlimDevices: Plugins] Trackstat and Multilibrary

2012-03-19 Thread mps

Is there any way to restrict the trackstat menus to a particular library
(or the active library)? IOW, I may be interested in browsing my
most-played classical albums without them being buried in my rock
albums.

Thanks,

Mike


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=94201

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


Re: [SlimDevices: Plugins] Coming soon... The iPeng teaser thread

2012-03-08 Thread mps

pippin;694809 Wrote: 
> I can't, you can't modify how and where the automatic back button is
> being put.
> You can create your own back button and then you can do what you want
> but it also means you have to do the whole button creation and handling
> yourself maybe in a later update.
Could you put a setting on whether to display the home button? I might
turn it off.


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=93980

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


Re: [SlimDevices: Plugins] ipeng and CustomBrowse

2012-02-05 Thread mps

erland;675223 Wrote: 
> Sorry, it didn't make it into the 3730 release, hopefully I'll be able
> to fit it into the next release.

I see this was fixed in the most recent release (and works
beautifully!). Thanks!


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=91659

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


Re: [SlimDevices: Plugins] iPeng support thread

2012-02-05 Thread mps

pippin;688386 Wrote: 
> Well, iPeng has to run to be able to do that, iPhone doesn't wake up
> background Apps when a call comes in, why should it?
> The next release (currently waiting for App Store approval) will have a
> changed behavior for background execution that I originally added for
> another purpose (being able to use the lock screen for
> volume/skip/pause and the volume keys) but that works with call
> pausing, too:
> If you enable "Settings->iPeng Settings->Preserve Connection" iPeng
> will stay active in the background for up to an hour, during this time
> "Pause on call" will work.
> But please be aware that this costs some battery.

Preserve connection did the trick, thanks! Looking forward to the long
term solution but happy in the meantime.


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-02-03 Thread mps

mps;686497 Wrote: 
> I tried setting "Pause On Call" and testing it over the last few days.
> It successfully paused five times (although it failed one other. I'll
> let you know if I figure out how to reproduce). 
> 
> Thanks so much for supporting this valuable functionality,
> 
> Mike

Spoke too soon :( It doesn't work at all when ipeng is in the
background. Any hope for a fix?

Thanks,
Mike


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2012-01-26 Thread mps

pippin;679049 Wrote: 
> I'll try again with forcing background execution. The last time I tried
> the problem was that the command did no longer go through when the call
> came in, but that was a few iOS releases ago.
I tried setting "Pause On Call" and testing it over the last few days.
It successfully paused five times (although it failed one other. I'll
let you know if I figure out how to reproduce). 

Thanks so much for supporting this valuable functionality,

Mike


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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] Custombrowse and Classical

2012-01-24 Thread mps

erland;686116 Wrote: 
> Feels a bit strange.
> 
> The easiest way to check, is probably to:
> 1. Check the CPU usage in the task manager, if it's high it probably
> means that something is still going on.
> 
> and
> 
> 2. Goto SBS Settings/Advanced/Logging and enable debug logging on
> "plugin.customscan" and "plugin.customscan.customtag", then wait a
> minute and open up the server.log. If there isn't any activity that
> indicates that Custom Scan is running in the server.log, there is
> probably some bug somewhere in the alpha version which is causing this.
Just updated to 3.0pre3781 and the problem did not occur. I'll keep my
fingers crossed...

Thanks for your help,

Mike


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=93184

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


Re: [SlimDevices: Plugins] Custombrowse and Classical

2012-01-23 Thread mps

erland;685771 Wrote: 
> Have you tried the "Tags" menu which is available if you have scanned
> your music with the "Mixed Tag" scanning module in Custom Scan ?
> 
> It should be visible by default if "Mixed Tag" scanning module has been
> used but you can also create a custom one using the "Dynamic Tags" menu
> template in Custom Browse.
> 
> The tags menu is very dynamic, it have this intermediate "select what
> you like to browse next" level you are asking for on all menu levels.
> If you want a more static version I don't think there is any
> pre-defined menu template for it, so you would have to edit the XML/SQL
> manually to accomplish what you want at the moment.
I was about to try your suggestion, but then noticed something funny. 
The summary in the LMS information tab says the Custom Scan stages
completed in about 30 minutes last Friday. However, the CustomScan page
says that the "Custom Scan" and "Mixed Tag" scanning modules are still
running days after the last scan.Does this seem plausible?

Note that I am running the v3.0pre3742 alpha version of CustomScan.


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=93184

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


[SlimDevices: Plugins] Custombrowse and Classical

2012-01-22 Thread mps

I have fully tagged all of my music as in
http://wiki.slimdevices.com/index.php/Setup_browse_menu_for_classical_music.
The problem with that page's approach to creating custombrowse menus is
that I would have many different top level menus (e.g "Works by
Composer," "Albums by Composer," etc.) What I want to do is be able to
select a particular composer and then have the next level menu let me
choose between Works, Albums, etc.

More concretely, I want to have the following menu structure (among
others) for my classical library.

Composers
Tracks
Works
Individual Works
Albums
Works
Tracks

For example, I would like to be able to click on "Bach," which would
bring to a menu with just three elements "Tracks," "Works," "Albums."
If I click on "Works," It will show me "Brandenburg Concerto No 1,"
"Brandenburg Concerto No 2,"... "Goldberg Variations," etc.

If I click on Brandenburg Concerto No. 1, It will show me two albums:

Academy of Ancient Music, Brandenburg Concertos
I Musici, Brandenburg Concertos, Violin Concertos

If I choose to play "Academy of Ancient Music," it will play the tracks
for Brandenburg Concerto No. 1. If I drill into the menu, it will show
me the individual tracks for it.

Any suggestions for how to do this?

Thanks,

Mike


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
View this thread: http://forums.slimdevices.com/showthread.php?t=93184

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


Re: [SlimDevices: Plugins] iPeng support thread

2012-01-12 Thread mps

jezbo;683046 Wrote: 
> It's possibly already mentioned but I can't read through 400+ pages, but
> does iPeng not support half-star ratings? ie. the equivalent of base-10
> ratings in LMS.

Being able to see and enter half-star ratings just by touching in the
right place would be awesome! (I know you can enter 1-10 ratings in the
context menu, but that does not have said awesomeness). Please consider
that.


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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] Anyone want to help testing new TrackStat version ?

2012-01-08 Thread mps

erland;682327 Wrote: 
> I'll add so next version of TrackStat (in 7.6 or later) can display
> total number of play counts per library in the "TrackStat Statistics"
> query available through the Database Query plugin user interface.
> 
> If you were looking for more detailed browsing per library, what kind
> of things would be most critical to be able to see ?
> 
> I'm asking because currently I don't plan to add full support for Multi
> Library libraries in TrackStat (because it requires too much work) but
> if there is something simple that would be very useful I will consider
> it for a future release.

I was just thinking playcount and rating for a library, like for albums
and artists (or do we do more for them?).


-- 
mps

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

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


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

2012-01-06 Thread mps

Just wondering if I could use trackstat for statistics on libraries like
how much I play different libraries (i.e., rock vs classical). If not,
would it be a difficult enhancement?

Thanks,

Mike


-- 
mps

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

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


Re: [SlimDevices: Plugins] iPeng support thread

2011-12-23 Thread mps

pippin;679049 Wrote: 
> I'll try again with forcing background execution. The last time I tried
> the problem was that the command did no longer go through when the call
> came in, but that was a few iOS releases ago.

Thanks, Pippin. Whether it works or not, I appreciate the effort. I
know you're dealing with limitations of the iOS architecture.

Mike


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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

2011-12-23 Thread mps

pippin;678654 Wrote: 
> Whether you still need the controller is up to others to judge, but hey,
> iPeng has been around for longer than the Controller (although only as a
> web skin for the first year) ;)
> 
> Both have their pros and cons. The touch screen interface is better for
> browsing and a lot of stuff can be accessed faster. On the other hand,
> the controller has hard keys for volume (ok, here you can use the ones
> on the iPhone/iPad/iPod, too) and play/pause and at least if you keep
> it in the cradle it will always be available immediately while on the
> iThingy you have to unlock the screen first.

I nearly always use iPeng. However, there are two reasons I still need
my controller.

1. To turn off the music when my iPhone rings (I can't access iPeng
when the phone is ringing). IMO, this would be the most valuable
enhancement you could make to iPeng (tho I don't know if it is even
possible) as I would no longer need to ever use the controller.

2. However, my family would since they don't have (or carry) a
smartphone all the time. It is nice to have a remote that stays by the
stereo. Obviously, there are other ways to accomplish this, but since I
have a Duet already, the controller serves an important household
purpose.


-- 
mps

mps's Profile: http://forums.slimdevices.com/member.php?userid=36351
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] Anyone want to help testing new TrackStat version ?

2011-12-22 Thread mps

erland;678341 Wrote: 
> I've released a new version which hopefully should fix this and also the
> previous mentioned layout issue where play counts weren't shown in
> iPeng.
I just confirmed that the new patch fixes both issues. Thanks!

Have a great holiday,

Mike


-- 
mps

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

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


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

2011-12-21 Thread mps

erland;678466 Wrote: 
> It's actually intentional because iPengHD (on iPad) is only able to
> display one line beneath albums and tracks even though its screen is
> larger. So I wanted it to work in both not just in iPeng on iPhone.

:( But makes sense


-- 
mps

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

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


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

2011-12-21 Thread mps

The fix for the artist display might have broken Trackstat's song and
album displays, which now all show the two line display. Since each
song and album is displayed with an album thumbnail (unlike artists),
there is no benefit to restricting to a 2 line display, so I much
prefer the attractive 3 line display to the IMO cramped 2 line display
that now appears with the latest alpha.

I tried to attach before and after pictures, but this site is now
telling me every image I try to attach (I tried a bunch of formats and
sizes) is an invalid image. I can email you the pictures if the above
description isn't clear.

Thanks for all your great work,

Mike


-- 
mps

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

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


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

2011-12-21 Thread mps

erland;678341 Wrote: 
> I've released a new version which hopefully should fix this and also the
> previous mentioned layout issue where play counts weren't shown in
> iPeng.
I updated and now am seeing playcounts in iPeng (on a 2 line display).
I'll confirm that playcounts are incremented in real-time once the kids
are awake.

One thing I've noticed is that just entering
http://erlandplugins.googlecode.com/svn/repository/trunk/alpha.xml into
my repositories causes all of your new plugins to be installed, even
when not selected. The "Update plugins automatically" checkbox is
cleared, so I don't understand why this is happening. I've never had
plugins automatically updated in the past, so this is new behavior for
me.


-- 
mps

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

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


  1   2   3   >