Re: [SlimDevices: Plugins] Squeezeplay font replacement problem

2014-03-11 Thread jimbobvfr400

Setting full screen screen or not just involves editing s file and
changing a single value, I.e. a yes to a no or as 1 to a 0 or something
similar.

If you get the modified version from these forums that already has the
Joggler skin which is usefully different size wise

Sent from my Nexus 7 using Tapatalk





jimbobvfr400's Profile: http://forums.slimdevices.com/member.php?userid=56857
View this thread: http://forums.slimdevices.com/showthread.php?t=100739

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


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

2014-03-11 Thread Triode

seren wrote: 
> For us Synology owners:
> 
> DSM 5 is out including a new LMS package (still 7.7.3 based)
> I'm reluctant to update, because I want to keep Spotify working on my
> DS212+.
> Anyone willing to try on a ARM based Synology NAS?
> 
> Thx

I understand it doesn't work with arm based DSM 5 yet, but Synology are
looking at it.



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

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


[SlimDevices: Plugins] Problem with Custom Scan / iTunes Export

2014-03-11 Thread rlem

Hi Erland,

I’ve got a problem that has been bugging me for quite a time now. The
Custom Scan integration with iTunes is working perfectly in combination
with the iTunesUpdate.pl script: ratings/playcounts are exported from
and imported to iTunes, *but not for songs/albums that have special
characters in them.*

If I open the Trackstat_iTunes_Hist.txt then I immediately see what’s
causing it: the special characters are garbled, so that the script
cannot match them to the paths that iTunes is using.
If I convert the file to UTF-8, the characters become readable again, so
I think that solves it. 
But, I cannot save the file because Trackstat is using it. *So could it
be that there is a bug in Trackstat?*

Funny thing on the side: the iTunes *Import *works like a charm: if I
change a rating in iTunes, it gets picked up by Trackstat, no problem.

Please see my screenshots!
https://www.dropbox.com/sh/8ofvohl62gzzh82/NfUqttWH9c

Thanks for helping me out,
Randy

===

This is my set-up:
(1) LMS 7.8 Nightly on Ubuntu 12.04 server (UTF-8 encoding)
(2) iTunes Library on Windows 8 PC


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


rlem's Profile: http://forums.slimdevices.com/member.php?userid=46931
View this thread: http://forums.slimdevices.com/showthread.php?t=101126

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


Re: [SlimDevices: Plugins] Squeezeplay font replacement problem

2014-03-11 Thread ply3908

The screen size can be select from Settings > Screen > Select Skin.



ply3908's Profile: http://forums.slimdevices.com/member.php?userid=38634
View this thread: http://forums.slimdevices.com/showthread.php?t=100739

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


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

2014-03-11 Thread tigaaa

Triode wrote: 
> I understand it doesn't work with arm based DSM 5 yet, but Synology are
> looking at it.

Oh my! I only I would have read this before udating to DSM 5. I was so
happy to have Spotify Support on my 112+ an my SB Boom. I tried to find
a solution for the not running helper app all day.
Well, now I have to wait :-(



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

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


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

2014-03-11 Thread thing-fish

Erland, I am wondering if my data is corrupted, or if I just don't
understand the model. I was fooling around with some queries and noticed
this, which I felt like was anomaly.

Code:


  select 'track_statistics', count(*) from track_statistics
  union
  select 'tracks', count(*) from tracks
  
  'track_statistics'count(*)
  track_statistics  38629   
  tracks22773  



I would have expected those to be one to one.  I ran Delete Unused
Statistic but got the same results.  In fact I ran the following query
but didn't get any rows:


Code:

select * 
  from track_statistics
  where track_statistics.url not in (select url from tracks)



Baffled, I did a little digging.  Here's a sample of one track in
particular from track_statistics:


Code:

url;musicbrainz_id;playCount;added;lastPlayed;rating;urlmd5
  
file:///storage/music/flac/AC%20-%20DC/Back%20in%20Black/02%20-%20Shoot%20to%20Thrill.flac;3931e32f-debc-423a-8e1e-91d058f7dd1f;10;1388541995;1388863178;;6f6f9bb7178fe6e49dd035a9bfbbaf87
  
file:///storage/music/flac/AC%20-%20DC/Back%20in%20Black/02%20-%20Shoot%20to%20Thrill.flac;3931e32f-debc-423a-8e1e-91d058f7dd1f;2;1274784902;1282497730;;6f6f9bb7178fe6e49dd035a9bfbbaf87



It strikes me that all the keys (url, musicbrainz_id and urlmd5) are the
same, yet these seemingly identical tracks were added different times,
have different playcounts and different lastPlayed?  I ran this:


Code:


  select count(*), url, musicbrainz_id, sum(playCount) as playCount, min(added) 
as added, 
  max(lastPlayed) as lastPlayed, max(rating) as rating, urlmd5
  from track_statistics
  group by url, musicbrainz_id, urlmd5
  having count(*) > 1
  order by count(*) desc


This returned 389 rows, with a counts as high as 477 (!) and as low as
2.

For my AC/DC example above I saw that they had different playcounts.  I
found a track that had 80 "dupes" and played it, then I saw that all 80
rows for that URL were updated with a playcount of 1.  Frankly that
makes more sense to me, as a likely outcome of something like UPDATE
TRACK_STATISTICS SET PLAYCOUNT=PLAYCOUNT+1 WHERE URL=someURL...I think
it is more odd that some of the "dupes" actually have different data.

What do you think?  Is this normal or do I need to do some cleanup?

Thanks for the wonderful plugins, I am a database guy and love being
able to interact with my music via SQL.



' Most Recent Tracks'
(http://www.last.fm/user/thing-fish/?chartstyle=basicrt10)

thing-fish's Profile: http://forums.slimdevices.com/member.php?userid=5288
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-11 Thread erland

thing-fish wrote: 
> 
> It strikes me that all the keys (url, musicbrainz_id and urlmd5) are the
> same, yet these seemingly identical tracks were added different times,
> have different playcounts and different lastPlayed?
> 
> ...
> 
> What do you think?  Is this normal or do I need to do some cleanup?
> 
It sounds like your system is affected by duplicate musicbrainz tags,
see the following section on the TrackStat documentation page for more
information about how to verify if this is the case and how to solve
it.
http://wiki.slimdevices.com/index.php/TrackStat_plugin#Issues_with_duplicate_musicbrainz_tags



Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))
You may also want to try my Android apps 'Squeeze Display'
(https://play.google.com/store/apps/details?id=info.isaksson.squeezedisplay)
and 'RSS Photo Show'
(https://play.google.com/store/apps/details?id=info.isaksson.rssphotoshow)
*Interested in the future of music streaming ? 'ickStream -  A world of
music at your fingertips'
(http://forums.slimdevices.com/showthread.php?98467-Pre-Announcement-ickStream&p=743516)*.

erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
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] Problem with Custom Scan / iTunes Export

2014-03-11 Thread erland

rlem wrote: 
> 
> If I convert the file to UTF-8, the characters become readable again, so
> I think that solves it. 
> 
Is the music mounted as a network drive on the iTunes machine ?
My personal experience is that it's best to avoid non us ascii
characters in file names and just have them in the tags, this solves a
lot of problems when you are using the files on multiple operating
systems with different default character encoding.

rlem wrote: 
> 
> But, I cannot save the file because Trackstat is using it. *So could it
> be that there is a bug in Trackstat?*
> 
Strange, TrackStat is supposed to close the file after writing to it.
Does it help if you temporarily shutdown LMS when you change the file ?
If you try to change it from the iTunes machine, could it be that you
have mounted the drive as read only ?



Erland Isaksson ('My homepage' (http://erland.isaksson.info))
(Developer of 'many plugins/applets (both free and commercial)'
(http://wiki.slimdevices.com/index.php/User:Erland). 
If you like to encourage future presence on this forum and/or third
party plugin/applet development, 'consider purchasing some plugins'
(http://license.isaksson.info))
You may also want to try my Android apps 'Squeeze Display'
(https://play.google.com/store/apps/details?id=info.isaksson.squeezedisplay)
and 'RSS Photo Show'
(https://play.google.com/store/apps/details?id=info.isaksson.rssphotoshow)
*Interested in the future of music streaming ? 'ickStream -  A world of
music at your fingertips'
(http://forums.slimdevices.com/showthread.php?98467-Pre-Announcement-ickStream&p=743516)*.

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

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