Re: [SlimDevices: Plugins] iPeng support thread

2013-07-02 Thread pippin
Yes, Twitter currently doesn't work because they turned off the 1.0 API. Will fix that in the next update --- learn more about iPeng, the iPhone and iPad remote for the Squeezebox and *New: Logitech UE Smart Radio* as well as iPeng Party, the free Party-App, at penguinlovesmusic.com

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

2013-07-02 Thread Michael Herger
Yes, I'm positive that they're identical tracks. I'm using ver 1.3.5 of Smart Mix Could you please capture a log from smart mix activity. I would then see what exact IDs it's using, and why it might be failing. What is the name of the cache you're logging the track ID's to? It's stored

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

2013-07-02 Thread Michael Herger
Thanks, I'll look into these. Michael Am 28.06.2013, 20:14 Uhr, schrieb Tony T tony.t.5xn...@no-mx.forums.slimdevices.com: Michael, The Song Type field allows for christmas, live or studio, but shouldn't it also allow for ‘electric’ and ‘acoustic’ (see: http://blog.echonest.com) If you

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

2013-07-02 Thread Tony T
mherger wrote: Yes, I'm positive that they're identical tracks. I'm using ver 1.3.5 of Smart Mix Could you please capture a log from smart mix activity. I would then see what exact IDs it's using, and why it might be failing. [color=blue] Here's a log (set to Debug) Code:

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

2013-07-02 Thread Tony T
mherger wrote: What is the name of the cache you're logging the track ID's to? It's stored in the default cache.db file (sm_played_songs key). A simple list of song IDs. -- Michael I'm not seeing sm_played_songs in the cache: Code: Mac-mini:~

Re: [SlimDevices: Plugins] iPeng support thread

2013-07-02 Thread d6jg
Thanks Pippin QNAP TS419p 4Tb LMS7.6.1 Living Room - SB3 - Onkyo TS606 connected Digitally - Celestion Ditton F20s - and connected Analogue for Zone 2 - Sony TA FE 320 - Sennheiser HDR 130 Office - SB3 - Sony TA FE320 - Wharfedale Modus Cubes Bedroom - SBT - Topping TP21 - Wharfedale Modus

Re: [SlimDevices: Plugins] Announce: Local Player plugin and Squeezelite for Linux/Windows/OSX

2013-07-02 Thread orangeart
Hi all, new here and am trying to give this new player a go. I currently use squeezeslave but squeeze lite seems to get round the drawbacks of the older player. I couple of brick walls though. I have installed squeeze lite using the local player plugin in LMS on my windows 8 machine. However it

Re: [SlimDevices: Plugins] Spotify [Triode] problem: Frequent bufferunderruns

2013-07-02 Thread hansg
Well, now I installed an opensuse 11.4 virtual client on the same machine, installed the latest LMS and the Spotify plugin, and everything works perfectly. So, something has happened with the networking from 11.4 to 12.2 that has this effect. And it isn't just opensuse, the latest debian server

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

2013-07-02 Thread Roland0
Tony T wrote: I'm not seeing sm_played_songs in the cache: Code: Mac-mini:~ Tony$ cat /Users/Tony/Library/Caches/Squeezebox/cache.db | grep -a sm_played_songs cache.db is a SQLite database, you'll need to use a SQLite client to

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

2013-07-02 Thread Tony T
Roland0 wrote: cache.db is a SQLite database, you'll need to use a SQLite client to access it (e.g. the standard CLI sqlite3) and write a SQL query to get the data. Even this probably won't help you, though, as the track data is saved as a BLOB, which won't be displayed by the DB client. Is

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

2013-07-02 Thread Roland0
Tony T wrote: Is the key (sm_played_songs) in the cache as plain text? Not sure what you mean by plain text - this is a database file, nothing is plain text from a file point of view. The key is 308122744161790494 in the db table, if that was your question. Code:

Re: [SlimDevices: Plugins] Spotify [Triode] problem: Frequent bufferunderruns

2013-07-02 Thread Triode
hansg wrote: Well, now I installed an opensuse 11.4 virtual client on the same machine, installed the latest LMS and the Spotify plugin, and everything works perfectly. So, something has happened with the networking from 11.4 to 12.2 that has this effect. And it isn't just opensuse, the

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

2013-07-02 Thread Michael Herger
Code: select * from cache where k=308122744161790494; will give you the row. Correct. But it won't be really helpful, as as you mentioned it's a serialized array stored in a blob field. Nothing you'd want to decipher outside of LMS code :-). You