Re: [SlimDevices: Plugins] Qobuz plugin Hi-Res

2019-03-25 Thread left channel


Fahzz wrote: 
> I signed up for Qobuz trial Studio version which is supposed to play up
> to 24 bit 192khz.The plugin works but the LMS UI shows only 320 kps Mp3
> being played. Is there a setting I need to implement?

In Settings > Advanced > Qobuz, it's possible your preferred format is
set to "MP3 320 kbps". If so, change that to "FLAC Hi-Res", and enjoy.



LMS: SGC microJukebox running Sonicorbiter OS
Control apps: Squeezelite-X on Win 10; Squeezer or Material web app on
Android
Players: Duet, Touch (two), Mac SqueezePlay, Win Squeezelite-X on laptop
and HTPC

left channel's Profile: http://forums.slimdevices.com/member.php?userid=67918
View this thread: http://forums.slimdevices.com/showthread.php?t=110053

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread BoomX2

spile wrote: 
> Something strange going on. I entered ukxx0018:1:uk for my location -
> Birmingham, UK
> Temperature shows 3°C but outside temperature is actually in double
> figures and this is confirmed by Weather.Com which shows 12°C

Your weather code needs to be upper case.  I tested it and the URL with
UKXX0018:1:UK embedded returns the JSON file with values of
"lat":52.48,"long":-1.9 for Birmingham, United Kingdom.

Weather code ukxx0018:1:uk in the URL returns a HTTP 404 error.  So the
lat and long values will be left at the values for the previous valid
weather code entered.  Possibly Chicago or even 0.0 and 0.0.

You can see the lat long values being used if you turn SDT logging up to
INFO level.  Here is what it looks like when using UKXX0018:1:UK.  The
geocode at the end of the URL for getWeatherNow and getWeatherToday is
your lat and long values.


Code:


  [19-03-25 20:52:23.0568] Plugins::SuperDateTime::Plugin::getLatLong (2618) 
async request: 
https://dsx.weather.com/wxd/v2/loc/en_US/UKXX0018:1:UK?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:52:23.5148] Plugins::SuperDateTime::Plugin::gotLatLong (2629) 
got 
https://dsx.weather.com/wxd/v2/loc/en_US/UKXX0018:1:UK?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:52:31.0597] Plugins::SuperDateTime::Plugin::refreshData (3905) 
Data refresh in process...
  [19-03-25 20:52:31.0610] Plugins::SuperDateTime::Plugin::getWeatherNow (3341) 
async request: 
https://api.weather.com/v2/turbo/vt1observation?apiKey=d522aa97197fd864d36b418f39ebb323=e=en-US=json=52.48,-1.9
  [19-03-25 20:52:32.2908] Plugins::SuperDateTime::Plugin::gotWeatherNow (3356) 
got 
https://api.weather.com/v2/turbo/vt1observation?apiKey=d522aa97197fd864d36b418f39ebb323=e=en-US=json=52.48,-1.9
  [19-03-25 20:52:32.2920] Plugins::SuperDateTime::Plugin::getWeatherToday 
(2900) async request: 
https://api.weather.com/v2/turbo/vt1dailyforecast?apiKey=d522aa97197fd864d36b418f39ebb323=json=en-US=e=52.48,-1.9
  [19-03-25 20:52:33.1390] Plugins::SuperDateTime::Plugin::gotWeatherToday 
(2915) got 
https://api.weather.com/v2/turbo/vt1dailyforecast?apiKey=d522aa97197fd864d36b418f39ebb323=json=en-US=e=52.48,-1.9
  



Here is what you see in the log file when ukxx0018:1:uk is entered for
the weather code.


Code:


  [19-03-25 20:53:41.7402] Plugins::SuperDateTime::Plugin::getLatLong (2618) 
async request: 
https://dsx.weather.com/wxd/v2/loc/en_US/ukxx0018:1:uk?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:53:42.0886] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6141) error getting 
https://dsx.weather.com/wxd/v2/loc/en_US/ukxx0018:1:uk?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:53:42.0891] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6142) 404 Not Found
  [19-03-25 20:53:42.0896] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6156) Trying getLatLong again.
  [19-03-25 20:53:45.0904] Plugins::SuperDateTime::Plugin::getLatLong (2618) 
async request: 
https://dsx.weather.com/wxd/v2/loc/en_US/ukxx0018:1:uk?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:53:45.2982] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6141) error getting 
https://dsx.weather.com/wxd/v2/loc/en_US/ukxx0018:1:uk?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:53:45.2987] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6142) 404 Not Found
  [19-03-25 20:53:45.2991] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6156) Trying getLatLong again.
  [19-03-25 20:53:48.3000] Plugins::SuperDateTime::Plugin::getLatLong (2618) 
async request: 
https://dsx.weather.com/wxd/v2/loc/en_US/ukxx0018:1:uk?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:53:48.6635] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6141) error getting 
https://dsx.weather.com/wxd/v2/loc/en_US/ukxx0018:1:uk?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
  [19-03-25 20:53:48.6640] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6142) 404 Not Found
  [19-03-25 20:53:48.6644] Plugins::SuperDateTime::Plugin::gotErrorViaHTTP 
(6156) Trying getLatLong again.
  




BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread treble


Thanks BoomX2, the old WU API for the WU version stopped working today
"this key does not exist".  I installed your version according to
instructions from you in 'this post'
(https://forums.slimdevices.com/showthread.php?14327-Announce-SuperDateTime-Current-Date-Temperature-and-or-Baseball-Screensaver=935584=1#post935584)
and I am back in business!

I also added my custom tweaks back in (like putting just an H or L
before the forecast temperature, and adding indoor temperature).

Thanks so much!  You should add your Paypal address as well to the
donation section.  You for sure deserve it!  And thank you tcutting for
maintaining the WU version all those years!  A great community!



treble's Profile: http://forums.slimdevices.com/member.php?userid=2797
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread BoomX2


bluebell wrote: 
> Is there a repository where I can install it from? Or are there other
> install instructions?

Here you go.


Code:

https://sourceforge.net/projects/sdt-weather-com/files/repo.xml



You will need to remove tcutting's SDT repository completely uninstall
tcutting's SDT plugin, before yo can install the SDT-weather-com plugin.



BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Qobuz plugin Hi-Res

2019-03-25 Thread Fahzz


I signed up for Qobuz trial Studio version which is supposed to play up
to 24 bit 192khz.The plugin works but the LMS UI shows only 320 kps Mp3
being played. Is there a setting I need to implement?



Living Room: Pi3 w/Allo Digione Player (Wired), Max2Play w/LMS Server
7.9 and SqueezeLite
Pioneer Elite VSX 80, Parasound 2125 v2
KEF LS50's, Paradigm SE Center, SVS SB12-NSD Subwoofer, Paradigm Atom
v.5 Surrounds
Harmony Smart Control w/Hub and iPeng
Dining Room: KEF Q100's
Bedroom: Logitech Boom
Porch: Boston Acoustics Voyager Metro II
Router: Asus RT-N56U

Fahzz's Profile: http://forums.slimdevices.com/member.php?userid=12585
View this thread: http://forums.slimdevices.com/showthread.php?t=110053

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


Re: [SlimDevices: Plugins] New plugin for audio bookmarks

2019-03-25 Thread sternenjaeger

Paul Webster wrote: 
> Try
> 18 hours, 12 minutes and 14 seconds = 65534 seconds
> and
> 18 hours, 12 minutes and 17 seconds = 65537 seconds

May i ask why you suspect the integer size as the cause? I'am by no
means a perl expert but from what i've read perl skalars should always
be big enough for at least 32bit integers.

Anyway: This is a bit weird. I created an mp3 file with app. 22h length
and on my systems the bookmarks work fine. The server shows the same
weird track length 35791:23 min. which would be ~ 25 days, but
bookmarking this track work without a problem


@pettifoggery: Could you tell me if the problem is a) that the plugin
does not create any bookmarks at all (i. e. you don't see an entry in
the menu of the bookmarks plugin) or if the bookmark exists but the
playback does not jump to the bookmarked position.
If a): Waht happens if you create a bookmark manually (with the context
menu)?
If b): What happens if you select the bookmark from the menu? Does the
playback resume from start?

Also: Please look up settings --> Information -> Logitech Media Server
Status 

What are the values listed there? Especially "Platform Architecture" and
"Perl Version"

Also it would be usefu if you could tell me the settings of the
bookmarks plugin. At least for "Precision of Bookmarks in Seconds" and
"Threshold für bookmarks"



sternenjaeger's Profile: http://forums.slimdevices.com/member.php?userid=57562
View this thread: http://forums.slimdevices.com/showthread.php?t=102859

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread bluebell


BoomX2 wrote: 
> Although it won't give all the WU detail that tcutting's plugin provided
> you can still get basic WU data in the SDT-Weather-com plugin. (such as
> current temp) It pulls a legacy comma delimited text file from WU.  It's
> not part of api and doesn't require a key.
> 
> To use enter your WU station ID on the advanced settings tab and use the
> WU specific macro variables shown on the player SDT settings page.
> 
> Hopefully that will reduce some of the pain of losing use of tcutting's
> plugin. 
> 

Is there a repository where I can install it from? Or are there other
install instructions?



bluebell's Profile: http://forums.slimdevices.com/member.php?userid=44283
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] New plugin for audio bookmarks

2019-03-25 Thread Paul Webster


Paul Webster wrote: 
> 7 hours is 25200 seconds ...
> maybe try something over 10 hours or over 19 hours to test 15-bit and
> 16-bit integer limits.

Try
18 hours, 12 minutes and 14 seconds = 65534 seconds
and
18 hours, 12 minutes and 17 seconds = 65537 seconds



Paul Webster
http://dabdig.blogspot.com
Author Radio France (FIP etc) plugin

Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105
View this thread: http://forums.slimdevices.com/showthread.php?t=102859

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread BoomX2

ftarz wrote: 
> I'm trying to get SuperDateTime plugin working with piCorePlayer Version
> 4.1.0. I have it set as a screensaver when piCorePlayer is off. When I
> first boor piCorePlayer on the date and time are displayed but no
> weather data is shown. If I run /Extras/SuperDateTime/Current Conditions
> 2 or 3 times then current weather data is shown and the screensaver will
> show it as well.
> 
> I enabled debugging for the SuperDateTime plugin and also captured
> network traffic from piCorePlayer.
> 
> Can anyone provide so light into what's happening?
> 
> When I first boot piCorePlayer I see SuperDateTime plugin trying to get
> weather data, but no values are returned:
> 
> [19-03-24 14:01:20.8554] Plugins::SuperDateTime::Plugin::initPlugin
> (1948) Initializing 5.9.51 .
> [19-03-24 14:01:20.8569] Plugins::SuperDateTime::Plugin::getLatLong
> (2618) async request:
> https://dsx.weather.com/wxd/v2/loc/en_US/08006:4:US?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
> [19-03-24 14:01:23.0272] Plugins::SuperDateTime::Plugin::gotLatLong
> (2629) got
> https://dsx.weather.com/wxd/v2/loc/en_US/08006:4:US?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
> [19-03-24 14:01:23.0280] Plugins::SuperDateTime::Plugin::gotLatLong
> (2636) New Latitude: 39.76
> [19-03-24 14:01:23.0284] Plugins::SuperDateTime::Plugin::gotLatLong
> (2637) New Longitude: -74.11
> [19-03-24 14:01:29.3689] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.3695] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: %t Period: -1
> [19-03-24 14:01:29.3709] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string: °
> [19-03-24 14:01:29.3714] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.3762] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.3767] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: %v Period: -1
> [19-03-24 14:01:29.3775] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string:
> [19-03-24 14:01:29.3779] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.3822] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.3827] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: Sunrise: %s Period: -1
> [19-03-24 14:01:29.3835] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string: Sunrise:
> [19-03-24 14:01:29.3839] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.3883] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.3888] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: Sunset: %S Period: -1
> [19-03-24 14:01:29.3896] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string: Sunset:
> [19-03-24 14:01:29.3900] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.3942] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.3947] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: %y Period: 0
> [19-03-24 14:01:29.3954] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string:
> [19-03-24 14:01:29.3958] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.4003] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.4008] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: %v Period: 0
> [19-03-24 14:01:29.4015] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string:
> [19-03-24 14:01:29.4019] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.4064] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.4071] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: %z Pr: %x% Period: 0
> [19-03-24 14:01:29.4081] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string:  ° Pr: %
> [19-03-24 14:01:29.4085] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.4136] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.4141] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: %y Period: 1
> [19-03-24 14:01:29.4150] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string:
> [19-03-24 14:01:29.4155] Plugins::SuperDateTime::Plugin::macroString
> (6996) Done
> [19-03-24 14:01:29.4217] Plugins::SuperDateTime::Plugin::macroString
> (6970) Inside CLI request macroString
> [19-03-24 14:01:29.4223] Plugins::SuperDateTime::Plugin::macroString
> (6977) Incoming string: %v Period: 1
> [19-03-24 14:01:29.4231] Plugins::SuperDateTime::Plugin::macroString
> (6980) Outgoing string:
> [19-03-24 14:01:29.4237] 

Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread BoomX2

spile wrote: 
> Something strange going on. I entered ukxx0018:1:uk for my location -
> Birmingham, UK
> Temperature shows 3°C but outside temperature is actually in double
> figures and this is confirmed by Weather.Com which shows 12°CTry using all 
> uppercase.  UKXX0018:1:UK

Sent from my SAMSUNG-SM-G891A using Tapatalk





BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] New plugin for audio bookmarks

2019-03-25 Thread sternenjaeger


pettifoggery wrote: 
> I've added another 20+ hour test file. I can jump back and forth within
> both files without issue. I noticed that the newer file also has a
> wildly inaccurate duration: listed as both 35791:23 (menu) and as
> 596:31:17 (player) rather than the expected 22hrs 45mins 17 seconds. All
> my shorter files ( 5 - 10 hours) work just fine.

Thanks for the tests - I'll create some longer mp3's with audacity and
will try to replicate the issue.



sternenjaeger's Profile: http://forums.slimdevices.com/member.php?userid=57562
View this thread: http://forums.slimdevices.com/showthread.php?t=102859

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-03-25 Thread cpd73


cpd73 wrote: 
> the drag'n'drop is some material specific javascript code (which uses
> HMTL5 drag'n'drop).

OK, just tried, and yup seems to not work on iOS anymore :-( will
investigate further when I get time...



cpd73's Profile: http://forums.slimdevices.com/member.php?userid=66686
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: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread karlek


Is the weather code still ukxx...?
I had a similar issue where SDT fell back to Chicago weather. It was
snowing there then, but not here. :)





karlek's Profile: http://forums.slimdevices.com/member.php?userid=64321
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread spile

BoomX2 wrote: 
> Good idea.  It could use a little more explanation. 
> 
> Sent from my SAMSUNG-SM-G891A using Tapatalk
Something strange going on. I entered ukxx0018:1:uk for my location -
Birmingham, UK
Temperature shows 3°C but outside temperature is actually in double
figures and this is confirmed by Weather.Com which shows 12°C



spile's Profile: http://forums.slimdevices.com/member.php?userid=37780
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-03-25 Thread rgdawson


Version 2.1.9 was just submitted to Microsoft Store.


- Updated version of squeezelite-win.exe player to 1.9.1-1139
  (3/22/2019).  This version of squeezelite adds support for WASAPI
  exclusive mode.
- Updated Chromium browser library.
- 
  

R Greg Dawson



Squeezelite-X

rgdawson's Profile: http://forums.slimdevices.com/member.php?userid=65236
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

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


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-03-25 Thread left channel


Thanks Greg!



LMS: SGC microJukebox running Sonicorbiter OS
Control apps: Squeezelite-X on Win 10; Squeezer or Material web app on
Android
Players: Duet, Touch (two), Mac SqueezePlay, Win Squeezelite-X on laptop
and HTPC

left channel's Profile: http://forums.slimdevices.com/member.php?userid=67918
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

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


Re: [SlimDevices: Plugins] ANNOUNCE: Alexa voice control (development thread)

2019-03-25 Thread bobertuk


slartibartfast wrote: 
> Which website are you looking at? I just logged in and all looks normal
> to me.
> 
> Edit. I see what you mean. I logged into the project website. I will
> send him a message about it.
> 
> Sent from my SM-G900F using Tapatalk

Was just about to reply and your edit beat me to it...

Thank you



2 x Touch
2 x Radio
2 x Boom
1 x Intel-NUC server/squeezelite running LMS 7.91 on Windows 10
1 X Odroid-XU4 server/squeezelite running LMS 7.91 on Ubuntu 16.04
1 x iMac server running macos Hich Sierra
WaveIO USB into Lavry DA-10 DAC
Starfish Pre-amp : Based on NAIM NAC 72
Heavily modified NAIM NAP 250 Power-amp
Behringer DEQ2496
Linn Isobarik DMS

bobertuk's Profile: http://forums.slimdevices.com/member.php?userid=30376
View this thread: http://forums.slimdevices.com/showthread.php?t=106569

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-03-25 Thread cpd73


ericj wrote: 
>  Early on in this thread, it appears that the framework used does not
> work with IOS devices.   I use this extensively on the desktop.   On IOS
> (12.1.4 on a 8 plus), drag and drop editing does not appear to work.   I
> assume that this is the responsibility of the framework, but just wanted
> to make sure that I was not missing something.   Apologies in advance if
> I missed something in the thread, but I did look.
> Again, great work, and just checking that my understanding of the
> situation is correct.  Thanks in advance.

I don't regulary test on iOS devices - but my wife does have an iPhone
and iPad. The editing did work at some point, and I see no reason for it
to no longer work - but I can check later to confirm. You have to press
and hold an item for about 1, or 1.5, seconds before it will become
draggable. Does this not work?

Vue.js does fully work on iOS, but the drag'n'drop is some material
specific javascript code (which uses HMTL5 drag'n'drop).



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

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2019-03-25 Thread ericj


First, thanks for this terrific interface.   Early on in this thread, it
appears that the framework used does not work with IOS devices.   I use
this extensively on the desktop.   On IOS (12.1.4 on a 8 plus), drag and
drop editing does not appear to work.   I assume that this is the
responsibility of the framework, but just wanted to make sure that I was
not missing something.   Apologies in advance if I missed something in
the thread, but I did look.
Again, great work, and just checking that my understanding of the
situation is correct.  Thanks in advance.



ericj's Profile: http://forums.slimdevices.com/member.php?userid=3230
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: Alexa voice control (development thread)

2019-03-25 Thread slartibartfast


bobertuk wrote: 
> Anyone know how to contact meep. I took a look at his website today and
> looked at the linked support forum.
> 
> I looks like it's being spammed and has been for about a week.Which website 
> are you looking at? I just logged in and all looks normal
to me.

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=106569

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-03-25 Thread botze


mherger wrote: 
> > Hi! Is there a place to post feature requests? I would like to be able
> > to sort my albums by date added...
> 
> I added this to my list of suggestions. No promises.
> 
> -- 
> 
> Michael

Awsome, thanks! 

Been a daily user for several years, I have three Squeezeboxes, but
never checked this forum before. Thanks for keeping my Squeezeboxes
usable!



botze's Profile: http://forums.slimdevices.com/member.php?userid=51121
View this thread: http://forums.slimdevices.com/showthread.php?t=109991

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-03-25 Thread Michael Herger

Hi! Is there a place to post feature requests? I would like to be able > to 
sort my albums by date added...


I added this to my list of suggestions. No promises.

--

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


Re: [SlimDevices: Plugins] ANNOUNCE: Alexa voice control (development thread)

2019-03-25 Thread bobertuk


Anyone know how to contact meep. I took a look at his website today and
looked at the linked support forum.

I looks like it's being spammed and has been for about a week.



2 x Touch
2 x Radio
2 x Boom
1 x Intel-NUC server/squeezelite running LMS 7.91 on Windows 10
1 X Odroid-XU4 server/squeezelite running LMS 7.91 on Ubuntu 16.04
1 x iMac server running macos Hich Sierra
WaveIO USB into Lavry DA-10 DAC
Starfish Pre-amp : Based on NAIM NAC 72
Heavily modified NAIM NAP 250 Power-amp
Behringer DEQ2496
Linn Isobarik DMS

bobertuk's Profile: http://forums.slimdevices.com/member.php?userid=30376
View this thread: http://forums.slimdevices.com/showthread.php?t=106569

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.6 (and higher) & BBCiPlayerExtra 2.0 (and higher) Support

2019-03-25 Thread Paul Webster


I don't think they have blocked them as such ... they have ask nicely
for them not to come ... via a settings in robots.txt
Google then co-operates by not accessing the data.

Would be good to see the full terms and conditions that BBC wants to
impose and what Google does not want, or is currently unable, to comply
with.
Seems to be to do with BBC getting some user info ... so perhaps Google
is proxying the requests with the result that BBC cannot see much info
about the requester.



Paul Webster
http://dabdig.blogspot.com
Author Radio France (FIP etc) plugin

Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105
View this thread: http://forums.slimdevices.com/showthread.php?t=109826

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-03-25 Thread botze


Hi! Is there a place to post feature requests? I would like to be able
to sort my albums by date added... this was recently implemented in the
Android Spotify app. Thanks!



botze's Profile: http://forums.slimdevices.com/member.php?userid=51121
View this thread: http://forums.slimdevices.com/showthread.php?t=109991

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.6 (and higher) & BBCiPlayerExtra 2.0 (and higher) Support

2019-03-25 Thread Raymond Woodward


Don't think it effects Iplayer Extra, but I see the Beeb have blocked
access to google where podcasts are concerned ...

https://radiotoday.co.uk/2019/03/bbc-stops-its-own-podcasts-appearing-on-google/?utm_source=feedburner_medium=feed_campaign=Feed%3A+radiotoday+%28Radio+Today+-+News%29



Raymond Woodward's Profile: 
http://forums.slimdevices.com/member.php?userid=63990
View this thread: http://forums.slimdevices.com/showthread.php?t=109826

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


Re: [SlimDevices: Plugins] New plugin for audio bookmarks

2019-03-25 Thread pettifoggery


Shozzer wrote: 
> Hi, what is the file format? Can you not split the track into several
> smaller files - even if they were 30 or 60 minutes in length? I don't
> know if a file size limitation applies but the file size seems too
> unwieldy to me.

The file is MP3. I use mp3wrap to bind multi-file audiobooks and
audio-dramas in to single files. Then I use mp3diags to clean up any
loose threads. Finally, I add the tags with Puddletag. I do all this for
easier portability and management. And so far I haven't had any problems
with the file sizes or track lengths on my Linux desktop, LibreElec,
android phone or Sansa clip player. While the workaround of hacking all
my 20+ hour audiobooks in to 50 or so rough chunks seems like an obvious
solution, it would mean weeks-months of hassle just to accommodate the
quirks of a single platform. I think I'd prefer returning to bluetooth
streaming from a phone to a portable speaker. Sorry if that sounds a
little lazy.



pettifoggery's Profile: http://forums.slimdevices.com/member.php?userid=69041
View this thread: http://forums.slimdevices.com/showthread.php?t=102859

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


Re: [SlimDevices: Plugins] [Announce] Squeezelite-X

2019-03-25 Thread rgdawson


left channel wrote: 
> Haven't received 2.1.8 through the Store yet. Does it include the latest
> squeezelite-win? Ralphy has added WASAPI Exclusive support in
> 1.9.1-1139:
> https://forums.slimdevices.com/showthread.php?110319-Windows-10-Master-volume-amplified=936768=1#post936768

No, SLX 2.1.8 did not include squeezelite-win 1.9.1-1139.  Working on
that in the next version of SLX (soon).

R Greg Dawson



Squeezelite-X

rgdawson's Profile: http://forums.slimdevices.com/member.php?userid=65236
View this thread: http://forums.slimdevices.com/showthread.php?t=108550

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread paul-


If I had to guess, the plugin load timers are getting hung up since LMS
starts before the system clock is set.



piCorePlayer a small player for the Raspberry Pi in RAM. 
Homepage: https://www.picoreplayer.org

Please 'donate'
(https://www.paypal.com/cgi-bin/webscr?cmd=_donations=U7JHY5WYHCNRU=GB_code=USD=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
if you like the piCorePlayer

paul-'s Profile: http://forums.slimdevices.com/member.php?userid=58858
View this thread: http://forums.slimdevices.com/showthread.php?t=14327

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


Re: [SlimDevices: Plugins] Announce: SuperDateTime - Current Date/Temperature and/or Baseball Screensaver

2019-03-25 Thread ftarz

I'm trying to get SuperDateTime plugin working with piCorePlayer Version
4.1.0. I have it set as a screensaver when piCorePlayer is off. When I
first boor piCorePlayer on the date and time are displayed but no
weather data is shown. If I run /Extras/SuperDateTime/Current Conditions
2 or 3 times then current weather data is shown and the screensaver will
show it as well.

I enabled debugging for the SuperDateTime plugin and also captured
network traffic from piCorePlayer.

Can anyone provide so light into what's happening?

When I first boot piCorePlayer I see SuperDateTime plugin trying to get
weather data, but no values are returned:

[19-03-24 14:01:20.8554] Plugins::SuperDateTime::Plugin::initPlugin
(1948) Initializing 5.9.51 .
[19-03-24 14:01:20.8569] Plugins::SuperDateTime::Plugin::getLatLong
(2618) async request:
https://dsx.weather.com/wxd/v2/loc/en_US/08006:4:US?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
[19-03-24 14:01:23.0272] Plugins::SuperDateTime::Plugin::gotLatLong
(2629) got
https://dsx.weather.com/wxd/v2/loc/en_US/08006:4:US?apiKey=7bb1c920-7027-4289-9c96-ae5e263980bc=json
[19-03-24 14:01:23.0280] Plugins::SuperDateTime::Plugin::gotLatLong
(2636) New Latitude: 39.76
[19-03-24 14:01:23.0284] Plugins::SuperDateTime::Plugin::gotLatLong
(2637) New Longitude: -74.11
[19-03-24 14:01:29.3689] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.3695] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: %t Period: -1
[19-03-24 14:01:29.3709] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string: °
[19-03-24 14:01:29.3714] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.3762] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.3767] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: %v Period: -1
[19-03-24 14:01:29.3775] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string:
[19-03-24 14:01:29.3779] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.3822] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.3827] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: Sunrise: %s Period: -1
[19-03-24 14:01:29.3835] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string: Sunrise:
[19-03-24 14:01:29.3839] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.3883] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.3888] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: Sunset: %S Period: -1
[19-03-24 14:01:29.3896] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string: Sunset:
[19-03-24 14:01:29.3900] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.3942] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.3947] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: %y Period: 0
[19-03-24 14:01:29.3954] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string:
[19-03-24 14:01:29.3958] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.4003] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.4008] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: %v Period: 0
[19-03-24 14:01:29.4015] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string:
[19-03-24 14:01:29.4019] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.4064] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.4071] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: %z Pr: %x% Period: 0
[19-03-24 14:01:29.4081] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string:  ° Pr: %
[19-03-24 14:01:29.4085] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.4136] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.4141] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: %y Period: 1
[19-03-24 14:01:29.4150] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string:
[19-03-24 14:01:29.4155] Plugins::SuperDateTime::Plugin::macroString
(6996) Done
[19-03-24 14:01:29.4217] Plugins::SuperDateTime::Plugin::macroString
(6970) Inside CLI request macroString
[19-03-24 14:01:29.4223] Plugins::SuperDateTime::Plugin::macroString
(6977) Incoming string: %v Period: 1
[19-03-24 14:01:29.4231] Plugins::SuperDateTime::Plugin::macroString
(6980) Outgoing string:
[19-03-24 14:01:29.4237] Plugins::SuperDateTime::Plugin::macroString
(6996) Done


I left piCorePlayer sit for 2 hours, but no weather data was ever
shown.

Then I run /Extras/SuperDateTime/Current Conditions and observe that
weather 

Re: [SlimDevices: Plugins] New plugin for audio bookmarks

2019-03-25 Thread Paul Webster


7 hours is 25200 seconds ...
maybe try something over 10 hours or over 19 hours to test 15-bit and
16-bit integer limits.



Paul Webster
http://dabdig.blogspot.com
Author Radio France (FIP etc) plugin

Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105
View this thread: http://forums.slimdevices.com/showthread.php?t=102859

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


Re: [SlimDevices: Plugins] New plugin for audio bookmarks

2019-03-25 Thread sternenjaeger


pettifoggery wrote: 
> Hello,
> Everything working just fine. That was until I added an audiobook with a
> single large file. The file is 1.3gb and +32 hours long. I've
> double-checked that the audiobook is tagged correctly and tweaked every
> option in the plugin's setting but still the plugin will not bookmark
> this audiobook. Is this a problem with the plugin or a bug in /
> limitation of Squeezebox?
> 

I think this is an issue with the file size or encoding. The longest
track i have in my library is somewhat smaller (0,5GB with app. 7h
playtime) and the bookmarking works fine with that. I don't see any
reason why the plugin should not be able to handle longer files.

Please try to jump in the track a few times using the web interface or
one of the iOS/Android apps (i.e from the beginning to near the end or
somewhere in between) with just a few seconds delay between each jump.
Does your client execute the jumps? If you here stuttering or the client
does jump to the wring position or not at all then the plugin can't work
(because it does the same - it sends a command to the server to change
the played position to the one it has stored in it's settings.



sternenjaeger's Profile: http://forums.slimdevices.com/member.php?userid=57562
View this thread: http://forums.slimdevices.com/showthread.php?t=102859

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-03-25 Thread Paul Webster


See the earlier comment in this thread for what Michael suggested doing
to help investigation
https://forums.slimdevices.com/showthread.php?109991-Announce-Spotty-2-7-x-Spotify-Connect-for-your-Squeezebox=936694=1#post936694



Paul Webster
http://dabdig.blogspot.com
Author Radio France (FIP etc) plugin

Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105
View this thread: http://forums.slimdevices.com/showthread.php?t=109991

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


Re: [SlimDevices: Plugins] [Announce] Spotty 2.7.x - Spotify Connect for your Squeezebox

2019-03-25 Thread slartibartfast


mherger wrote: 
> Hi tole,
> 
> > I have a recurring problem with the spotty app: within the timeframe
> of
> > a few (2 to 5) days, the plugin forgets my username/password. The I
> have
> 
> The plugin never stores username/password. Your conclusion must be wrong
> 
> :-).
> 
> Could you please tell me what why you think it's forgetting credentials?
> 
> -- 
> 
> MichaelThis morning I had the exact same thing happen. I tried to use Spotty
and saw the message "Spotify credentials are missing". After authorising
using the Spotify app everything is back to normal. I have not
experienced this previously. Latest 7.9.2 and Spotty 2.7.5 on Pi3B
running max2play.

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=109991

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