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

2021-09-01 Thread RobbH


I am unable to install the plugin from the repo. When the server
restarts after an attempt to install, the server log tell me this:


Code:

[21-09-02 00:42:45.8786] Slim::bootstrap::tryModuleLoad (286) Warning: 
Module [Plugins::DynamicPlayList::Plugin] failed to load:
  Can't locate Plugins/DynamicPlayList/Plugin.pm in @INC (you may need to 
install the Plugins::DynamicPlayList::Plugin module) (@INC contains: 
/usr/sbin/Plugins/Bandcamp/lib 
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/Bandcamp/lib 
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/BBCSounds/lib 
/var/lib/squeezeboxserver/cache/InstalledPlugins 
/usr/share/squeezeboxserver/CPAN/arch/5.28/arm-linux-gnueabihf-thread-multi-64int
 
/usr/share/squeezeboxserver/CPAN/arch/5.28/arm-linux-gnueabihf-thread-multi-64int/auto
 
/usr/share/squeezeboxserver/CPAN/arch/5.28.1/arm-linux-gnueabihf-thread-multi-64int
 
/usr/share/squeezeboxserver/CPAN/arch/5.28.1/arm-linux-gnueabihf-thread-multi-64int/auto
 /usr/share/squeezeboxserver/CPAN/arch/arm-linux-gnueabihf-thread-multi-64int 
/usr/share/squeezeboxserver/CPAN/arch/5.28 /usr/share/squeezeboxserver/lib 
/usr/share/squeezeboxserver/CPAN /usr/share/squeezeboxserver /usr/sbin 
/etc/perl /usr/local/lib/arm-linux-gnueabihf/perl/5.28.1 /usr
 /local/share/perl/5.28.1 /usr/lib/arm-linux-gnueabihf/perl5/5.28 
/usr/share/perl5 /usr/lib/arm-linux-gnueabihf/perl/5.28 /usr/share/perl/5.28 
/usr/local/lib/site_perl /usr/lib/arm-linux-gnueabihf/perl-base) at (eval 900) 
line 1.
  BEGIN failed--compilation aborted at (eval 900) line 1.
  
  [21-09-02 00:42:45.8795] Slim::Utils::PluginManager::load (323) Error: 
Couldn't load Plugins::DynamicPlayList::Plugin



Logitech Media Server Version: 8.3.0 - 1629376548 @ Thu Aug 19 14:58:08
CEST 2021
Operating system: Debian - EN - utf8
Platform Architecture: armv7l-linux
Perl Version: 5.28.1 - arm-linux-gnueabihf-thread-multi-64int
Audio::Scan: 1.02
IO::Socket::SSL: 2.060
Database Version: DBD::SQLite 1.58 (sqlite 3.22.0)

Will try a manual install tomorrow.



LMS 8 nightly running on Raspberry Pi OS. Mostly virtual players,
occasionally with SB Radio, Boom or Classic.

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

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-09-01 Thread te36


I can't quite figure out from the thread:
Does the community firmware claim to have better wifi driver to help
protect against those wifi disconnects ?
Or would i equally need wlanpoke as i need on stock firmware ?
Would be cool FAQ info to add to first message in thread to easier find
it.

Thanks!



te36's Profile: http://forums.slimdevices.com/member.php?userid=32586
View this thread: http://forums.slimdevices.com/showthread.php?t=113479

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


Re: [SlimDevices: Plugins] [Announce] 'MediaServer' *certified* Alexa skill for LMS

2021-09-01 Thread philchillbill


raglencross wrote: 
> My favourites consist of 4 folders with the 4th folder containing 4
> subfolders. When I ask MS on an echo show to list level 2 favourites, it
> correctly lists the contents of the first 3 folders by showing each
> folder and its contents in succession.  A level 3 request results in the
> contents of the the 4th folder's subfolders and contents being listed as
> expected. My problem is when I request an item using the "dot" notation
> [e.g. Stream favourite 2 (level No.)dot 3 (level item No.)], I get an
> error that says the device can't determine the base ID to apply to the
> dotted notation. In the quoted post you also talk about a base ID which
> I don't understand what this is in my file structure.  Just to note, the
> dot notation did work for me when the folders were part of the listings
> e.g. "Stream favourite 4 dot 2 dot 5" played the 5th item in the 2nd
> subfolder of folder No. 4. That 4th folder has a lot of German names and
> the dot notation was a neat way of getting around me trying to murder
> the German language ;-) I can of course access all items using their
> item number alone, but I would like to figure out the dot level
> approach.

The base-ID is not an end-user's concern, it's mine. Favorites in LMS
are more like a plugin-thing than a built-in. They have to be
queried/controlled via LMS' XML Browser which is basically like parsing
the UI's menu structure and figuring out which sub-item to select. Very
unlike control for e.g. songs/albums/genres/playlists. Every time I call
up XML Browser, it uses a different set of ephemeral IDs for
-everything-, but the dotted sub-parts remains the same. The base ID
changes on every call so it has to be figured out each time
(unfortunately). It's like SeaSide-FM is 1fbd2fed.2.3 now but
e2b431ac.2.3 next time. Etc. Without the base-ID I cannot apply the
correct dotted sub-ID to play it. 

Playing via dot notation used to first request all the favorites (which
was fine if your internet and LMS server are fast). Then the whole ID is
just there every time and nothing has to be fudged. I decided to change
it because lots of people have problems with nested favorites due to
slow internet or LMS. By just requesting the top level favorites and not
recursing, I can figure out what the ID of a sub-favorite would be by
fudging. And so the theory goes :rolleyes:

I have not yet figured out why your LMS is not returning a base-ID that
I can discern. In my testing (with v8.3) it always worked just fine.
What LMS version are you on? I've added some debug lines to the code so
if you could please try a few more commands that result in the base-ID
error I can take a deeper look.

The dotted notation indeed used to include the position of folder names
in the hierarchy but I took that out. If you want to figure out the new
dotted notation, just skip folders when counting at each level. If
that's a pain I can put the folders back in. Having them in makes
listing favorites longer than needed but probably would not be a
negative thing for playing/streaming. Would it be confusing if they were
not mentioned during listing but needed to be counted when playing?
Thoughts?



philchillbill's Profile: http://forums.slimdevices.com/member.php?userid=68920
View this thread: http://forums.slimdevices.com/showthread.php?t=111016

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


Re: [SlimDevices: Plugins] [Announce] 'MediaServer' *certified* Alexa skill for LMS

2021-09-01 Thread raglencross

philchillbill wrote: 
> MediaServer's handling of favorites has been extensively re-written to
> improve the user-experience with nested hierarchies. The call-out of
> ordinal numbering while listing favorite names was removed as it adds
> little value. Folder names are likewise no longer called-out, as they
> are not in themselves playable audio items.
> 
> In the past, MediaServer always retrieved -all- your favorites
> recursively from LMS before processing anything further. From now on, a
> fuzzy-match is attempted at each retrieved level and further retrieval
> stops upon a match. Top-level items therefore play/stream much quicker.
> 
> To assist with handling very deep nesting levels, the DOT notation now
> fudges a favorite ID for XMLbrowser after retrieving the base-item ID
> from the top level of the hierarchy. This makes it possible to play
> favorites at -any- depth without timeouts, provided you can figure out
> from looking at the LMS GUI (default skin!) what the numbers between the
> dots should actually be :cool: It's better than failure!
> 
> Here's a summary of the 4 ways to play/stream favorites:
> 
> *[NAME]* 'Play favorite "Jazz FM"' — looks for a (fuzzy) match by name.
> Although all hierarchical levels will be traversed if necessary, an
> early match now stops unnecessary further recursion.
> 
> *[NUMBER]* 'Play favorite number 6' / 'Play my sixth favorite' — plays a
> favorite from any hierarchical level, based on its position in the
> overall flattened hierarchy. Useful if the favorite-name is
> long/unwieldy or Alexa regularly misunderstands it.
> 
> *[ITEM]* 'Play favorite: folder "Podcasts", item 4' — plays a favorite
> within a named folder, denoted by the favorite's numbered position
> within that folder. Useful for targeting e.g. episodes by number when
> you cannot remember their names.
> 
> *[DOT]* 'Play favorite 5 dot 1 dot 6' — if you have a -lot- of favorites
> and Alexa always times out before your hierarchy is traversed, this
> notation can be used as a fallback to successfully play deeply-nested
> favorites. It does not request the whole hierarchy from LMS, just the
> base level (for the volatile ID #) and then the favorite itself
> directly.
> 
> When it comes to *listing* favorites, there are 3 approaches:
> 
> 'List my favorites' — lists all playable audio favorites at any depth,
> skipping folder names found along the way. The whole nested
> favorites-hierarchy is effectively flattened to mention only
> playable-audio entries.
> 
> List level 2 favorites' / 'List second level favorites' — mentions all
> favorites at that level of hierarchy, even if in different parent
> folders along the way. Level is level!
> 
> 'List favorites in folder "Radio"' — list playable entries in that named
> folder, no matter how deep 'Radio' lies in the overall hierarchy.
> 
> Enjoy!

My favourites consist of 4 folders with the 4th folder containing 4
subfolders. When I ask MS on an echo show to list level 2 favourites, it
correctly lists the contents of the first 3 folders by showing each
folder and its contents in succession.  A level 3 request results in the
contents of the the 4th folder's subfolders and contents being listed as
expected. My problem is when I request an item using the "dot" notation
[e.g. Stream favourite 2 (level No.)dot 3 (level item No.)], I get an
error that says the device can't determine the base ID to apply to the
dotted notation. In the quoted post you also talk about a base ID which
I don't understand what this is in my file structure.  Just to note, the
dot notation did work for me when the folders were part of the listings
e.g. "Stream favourite 4 dot 2 dot 5" played the 5th item in the 2nd
subfolder of folder No. 4. That 4th folder has a lot of German names and
the dot notion was a neat way of getting around me trying to murder
the German language ;-) I can of course access all items using their
item number alone, but I would like to figure out the dot level
approach.



raglencross's Profile: http://forums.slimdevices.com/member.php?userid=7239
View this thread: http://forums.slimdevices.com/showthread.php?t=111016

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-09-01 Thread Paul Webster


Have you tried the wlanpoke script?



Paul Webster
http://dabdig.blogspot.com
author of \"now playing\" plugins covering radio france (fip etc),
planetradio (bauer - kiss, absolute, scala, jazzfm etc), kcrw, supla
finland, abc australia, cbc/radio-canada and rte ireland

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

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


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

2021-09-01 Thread afriend


Hi.

I've uploaded my modified version of *Dynamic Playlists* to github.
Based on Erland's original plugin but not maintained by him.
If you're interested please visit the '*github page*'
(https://github.com/AF-1/lms-dynamicplaylists) for more information
(latest description, changes, installation, notes...).

If you're running DPL (v2.x) and want to give DPL (v3+) a try you have
to uninstall v2.x first and then install v3.x. Sorry for the
inconvenience but that's by design to prevent unintentional automatic
updates. 

Please report bugs *only here* (including relevant server log entries
and the version number of LMS and your OS). Thank you.



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

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-09-01 Thread JJZolx


P Nelson wrote: 
> I had similar issues with my Radios; I changed nothing in my setup but
> they suddenly stopped working.  Test the SB Radio with an ethernet
> connection.  If this solves the problem, it is likely interference from
> a neighbor using WiFi6.There appears to be two solutions.  One is
> install a WiFi to ethernet bridge to bypass the SB Radio's internal
> WiFi.  Another option is to install WLANPOKE created by POMDEV, see this
> post:
> https://forums.slimdevices.com/showthread.php?114775-Simplified-instructions-for-Squeezebox-Radio-Wi-Fi-fix-(wlanpoke)

The thing that baffles me is that it can't reconnect. I've actually
found that while playing, if there's inteference (primarily from a
nearby microwave oven) this firmware is good at reconnecting and picking
up the stream again. Why it never reconnects while idle, and can't
reconnect when asked to is a mystery.



JJZolx's Profile: http://forums.slimdevices.com/member.php?userid=10
View this thread: http://forums.slimdevices.com/showthread.php?t=113479

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-09-01 Thread slartibartfast


JJZolx wrote: 
> How does one roll back to the stock firmware?
> 
> I've been having nothing but problems keeping the Radio connected to my
> wifi network. Nothing has changed with the network that worked for
> years, and other devices are having no issues. The Radio drops off after
> a period of inactivity and will not reconnect without rebooting. It
> stays connected while playing, but never stays connected.If you uncheck the 
> box in settings for the Community Firmware plugin you
will be offered the official firmware.

Sent from my Pixel 3a using Tapatalk





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

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-09-01 Thread P Nelson


JJZolx wrote: 
> How does one roll back to the stock firmware?
> 
> I've been having nothing but problems keeping the Radio connected to my
> wifi network. Nothing has changed with the network that worked for
> years, and other devices are having no issues. The Radio drops off after
> a period of inactivity and will not reconnect without rebooting. It
> stays connected while playing, but never stays connected.

I had similar issues with my Radios; I changed nothing in my setup but
they suddenly stopped working.  Test the SB Radio with an ethernet
connection.  If this solves the problem, it is likely interference from
a neighbor using WiFi6.There appears to be two solutions.  One is
install a WiFi to ethernet bridge to bypass the SB Radio's internal
WiFi.  Another option is to install WLANPOKE created by POMDEV, see this
post:
https://forums.slimdevices.com/showthread.php?114775-Simplified-instructions-for-Squeezebox-Radio-Wi-Fi-fix-(wlanpoke)

Good luck.

Paul



P Nelson's Profile: http://forums.slimdevices.com/member.php?userid=58158
View this thread: http://forums.slimdevices.com/showthread.php?t=113479

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


Re: [SlimDevices: Plugins] Announce : Global Player (UK) Plugin (Classic FM, Capital, Smooth, Heart, LBC etc.)

2021-09-01 Thread slartibartfast


expectingtofly wrote: 
> Oh yes, thanks for the report.  Unfortunately, this plugin is not doing
> anything with the stream urls apart from passing them on to LMS for
> playing.   I'll see if I can work out why LMS can't play these
> particular MP4 stream, we may have to open an LMS bug.  As the same
> streams work outside of LMS, as you point out.All the catch up shows seem to 
> be 22.05kHz. Is that an issue?

Sent from my Pixel 3a using Tapatalk





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

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


Re: [SlimDevices: Plugins] Squeezelite - won't play Ogg Vorbis files and plays MP3s Mickey Mouse style

2021-09-01 Thread Kvaks


Here's what the log says around the moment I try (and fail) to play back
the same file that worked for Ralphy:

https://pastebin.com/FyTfvpum

In the end it says the following, but I'm not able to understand where
and why it fails:


Code:

[21-09-01 18:30:54.7936] 
Slim::Player::TranscodingHelper::getConvertCommand2 (443) Error: Didn't find 
any command matches for type: ogg




Kvaks's Profile: http://forums.slimdevices.com/member.php?userid=21610
View this thread: http://forums.slimdevices.com/showthread.php?t=115044

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


Re: [SlimDevices: Plugins] [Announce] Community Firmware for Squeezebox Radio/Touch/Controller and LMS 8

2021-09-01 Thread JJZolx


How does one roll back to the stock firmware?

I've been having nothing but problems keeping the Radio connected to my
wifi network. Nothing has changed with the network that worked for
years, and other devices are having no issues. The Radio drops off after
a period of inactivity and will not reconnect without rebooting. It
stays connected while playing, but never stays connected.



JJZolx's Profile: http://forums.slimdevices.com/member.php?userid=10
View this thread: http://forums.slimdevices.com/showthread.php?t=113479

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


Re: [SlimDevices: Plugins] Announce : Global Player (UK) Plugin (Classic FM, Capital, Smooth, Heart, LBC etc.)

2021-09-01 Thread Jaca


staresy wrote: 
> Hi I noticed over the weekend that some (but not all) of the the Global
> Catch Up Streams don't seem to work via the plugin (they report "Problem
> can't connect to server for : Service Name XYZ...). They play OK via the
> Global Player android app - so looks like they are streaming from their
> end OK.
> 
> Specifically the feeds I see this issue with are LBC radio, Nick Abbot,
> all catch up feeds for weekend of 27 Aug-30 Aug.Yeah I have noticed Nick 
> Abbott catch up didn't work recently .. Had to
use podcast on spotty. What was weird is that it was fine following
day.. But down now again.. :(



3x Squeezebox Touch, 4x Squeezebox Radio, Squeezelite (RPi 3B with
HiFiBerry DAC+Pro on OSMC), Material Skin Apk, Squeeze Commander,
Logitech Media Server Version: 8.2.0 with Material Skin (Docker in
DS218+)

Jaca's Profile: http://forums.slimdevices.com/member.php?userid=58187
View this thread: http://forums.slimdevices.com/showthread.php?t=114305

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


Re: [SlimDevices: Plugins] Squeezelite processing on DSD recordings?

2021-09-01 Thread firedog


MikeDC wrote: 
> There really aren't any options offered.  When you select the DSDPlayer
> Plugin option, it just says:
> 
> "This player supports native playback of DSD files.  DSD-over-PCM should
> be configured on the player configuration interface."

Anyone know how I get this player configuration to appear? I can't see
it.
I'm running dietpi on a RPI4



GIK Acoustics Room Treatments. Isol Line conditioner/protection. iFi AC
iPurifiers>CAPS4 Pipeline w/Sonore PS >Kii Control>Kii Three
speakers.iFi iOne+ Schiit Freya Pre for analog. An SB Touch, Duet
Controller,  a RB Pi 3B+ running piCorePlayer as an SBT emulator in
additional rooms.

firedog's Profile: http://forums.slimdevices.com/member.php?userid=11550
View this thread: http://forums.slimdevices.com/showthread.php?t=114785

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


Re: [SlimDevices: Plugins] ANNOUNCE: AirPlay Bridge = integrate AirPlay devices with LMS (squeeze2raop)

2021-09-01 Thread alfcnx


Hi,

this is my first post so I apologize for mistakes.

I am running a fresh install of LMS as a (unofficial) plugin in Truenas
(freeBSD):

Code:


  [21-09-01 16:20:22.3481] main::init (389) Starting Logitech Media Server 
(v8.1.2, 1624550702, Thu Jun 24 18:46:58 CEST 2021) perl 5.032001 - 
amd64-freebsd-thread-multi
  



Airplay Bridge discovers my AppleTV, but it does not appear as a player
in LMS.
When I press the "pair" buttom nothing happens. The log in LMS says:

Code:


  [21-09-01 16:36:38.5397] Plugins::RaopBridge::Pairing::displayPIN (57) Cannot 
load crypto modules, please check your configurationAttempt to reload CryptX.pm 
aborted.
  Compilation failed in require at 
/var/lib/logitechmediaserver/cache/InstalledPlugins/Plugins/RaopBridge/Pairing.pm
 line 47.


There are also numerous warnings similar to

Code:


  [21-09-01 16:36:31.2246] Slim::Utils::Misc::msg (1283) Warning: 
[16:36:31.2244] Use of uninitialized value in concatenation (.) or string at 
/var/lib/logitechmediaserver/cache/InstalledPlugins/Plugins/RaopBridge/HTML/EN/plugins/RaopBridge/settings/basic.html
 line 108.



Is there something I can try?

Thanks



alfcnx's Profile: http://forums.slimdevices.com/member.php?userid=72065
View this thread: http://forums.slimdevices.com/showthread.php?t=105198

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


Re: [SlimDevices: Plugins] [Announce] 'MediaServer' *certified* Alexa skill for LMS

2021-09-01 Thread philchillbill


https://forums.slimdevices.com/showthread.php?113966-Announce-Easy-ngrok-setup-for-MediaServer-amp-LMS-lite-Alexa-skills=1032022=1#post1032022



philchillbill's Profile: http://forums.slimdevices.com/member.php?userid=68920
View this thread: http://forums.slimdevices.com/showthread.php?t=111016

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


Re: [SlimDevices: Plugins] [Announce] Easy ngrok-setup for MediaServer & LMS-lite Alexa skills

2021-09-01 Thread philchillbill


The easy-installer script now has a pulldown/selector which includes
*MacOS* (both Intel and ARM64 variants) to setup ngrok to run as a
daemon on a Mac.

The setup.sh file that will be downloaded from the configurator needs to
be run from a Terminal. Hope that's not too scary for Mac users
:rolleyes: The online instructions have been updated accordingly.

If you already have ngrok running on some other platform and just want
to play with this, select a different ngrok region code to your current
install or you'll get an error that you cannot run more than one
instance of ngrok while on the free plan.

Enjoy!



philchillbill's Profile: http://forums.slimdevices.com/member.php?userid=68920
View this thread: http://forums.slimdevices.com/showthread.php?t=113966

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


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

2021-09-01 Thread rgdawson


backball wrote: 
> Happy to help. Which log would you want to look at?

The SLX Debug log for now.  In settings, when you enable "Show
advanced/debug" you will see more options available.  You can enable
debug logging and or turn on display of log window. 
F12 is the shortcut to display the log window. Next time it happens,
just press F12 and copy the last couple of pages of log info.  Thanks.



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 : Global Player (UK) Plugin (Classic FM, Capital, Smooth, Heart, LBC etc.)

2021-09-01 Thread expectingtofly


staresy wrote: 
> Hi I noticed over the weekend that some (but not all) of the the Global
> Catch Up Streams don't seem to work via the plugin (they report "Problem
> can't connect to server for : Service Name XYZ...). They play OK via the
> Global Player android app - so looks like they are streaming from their
> end OK.
> 
> Specifically the feeds I see this issue with are LBC radio, Nick Abbot,
> all catch up feeds for weekend of 27 Aug-30 Aug.

Oh yes, thanks for the report.  Unfortunately, this plugin is not doing
anything with the stream urls apart from passing them on to LMS for
playing.   I'll see if I can work out why LMS can't play these
particular MP4 stream, we may have to open an LMS bug.  As the same
streams work outside of LMS, as you point out.



Stuart McLean   

EXPECTINGTOFLY PLUGINS :

- *BBC Sounds* : 
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin 
- *Virgin Radio (UK)* : 
  https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin 
- *Times Radio* : 
  https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN 
- *Global Player (UK)* : 
  https://github.com/expectingtofly/LMS_GlobalPlayer_Plugin 
  
For BBC Sounds help see the 'BBC Sounds Wiki'
(https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki).

expectingtofly's Profile: http://forums.slimdevices.com/member.php?userid=63263
View this thread: http://forums.slimdevices.com/showthread.php?t=114305

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


Re: [SlimDevices: Plugins] Announce : Global Player (UK) Plugin (Classic FM, Capital, Smooth, Heart, LBC etc.)

2021-09-01 Thread staresy


Hi I noticed over the weekend that some (but not all) of the the Global
Catch Up Streams don't seem to work via the plugin (they report "Problem
can't connect to server for : Service Name XYZ...). They play OK via the
Global Player android app - so looks like they are streaming from their
end OK.

Specifically the feeds I see this issue with are LBC radio, Nick Abbot,
all catch up feeds for weekend of 27 Aug-30 Aug.



location 1: lms 8.3 on win 10 brix server, x3 sb radios, x1 touch, x1
controller : location 2: lms 8.3 on win 10 brix server, x2 sb radios, x1
duet receiver, x1 controller : alexa mediaserver smart skill, material
android, squeezelitex control

staresy's Profile: http://forums.slimdevices.com/member.php?userid=807
View this thread: http://forums.slimdevices.com/showthread.php?t=114305

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


Re: [SlimDevices: Plugins] Announce : BBC Sounds Plugin

2021-09-01 Thread agbagb


expectingtofly wrote: 
> Unfortunately that is the case, some of the BBC Sounds content is not
> available outside the UK due to restricted broadcasting rights they have
> for some content, especially sport.

Obviously a VPN is the OP's friend ..  But the Beeb doesn't
necessarily police this geographical availability issue consistently,
over the various listening options.  Reasonably often - and even with
sport stuff - when LMS Sounds won't deliver outside the UK, one of the
old MP3 streams still around will (and even the old iPlayer
plug-in..).  And, even more often, playing the "restricted" stream
direct on a computer from the Beeb website (and then pushing it to LMS
(via PCStream etc etc) will work.  Fiddly, obviously, and not always a
reliable set of alternatives.  But surprisingly often delivers results.



LMS 8.2.1 - 1628023316 
Win10
Control: Web GUI; sometimes OrangeSqueeze on Android phones / pads

Machines / devices are in France, in two locations.
a) Livebox 4
Internal HDD (FLAC music; mp3 voice), LAN Desktop
3 x Touch - 2 wireless, 1 LAN. (7.8.0-r16754)
3 x SB Radios [2 wireless, 1 LAN] (7.7.3-r16676)
1 x Riva Arena (via Airplay LMS PlugIn)

b) Freebox
External SSD, WiFi Laptop
1 x Touch LAN (Firmware:7.8.0-r16754)
2 x SB Radios, Wireless (7.7.3-r16676)

agbagb's Profile: http://forums.slimdevices.com/member.php?userid=7034
View this thread: http://forums.slimdevices.com/showthread.php?t=113045

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


Re: [SlimDevices: Plugins] Announce : BBC Sounds Plugin

2021-09-01 Thread expectingtofly


Release 2.20.1 contains :

BUGFIX
- The ability to add Series/podcasts and the whole of "My Sounds" is
  now available in Material Skin and Jive based players as well as the
  web ui now.   Requires LMS 8.2 and later.
-



Stuart McLean   

EXPECTINGTOFLY PLUGINS :

- *BBC Sounds* : 
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin 
- *Virgin Radio (UK)* : 
  https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin 
- *Times Radio* : 
  https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN 
- *Global Player (UK)* : 
  https://github.com/expectingtofly/LMS_GlobalPlayer_Plugin 
  
For BBC Sounds help see the 'BBC Sounds Wiki'
(https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki).

expectingtofly's Profile: http://forums.slimdevices.com/member.php?userid=63263
View this thread: http://forums.slimdevices.com/showthread.php?t=113045

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


Re: [SlimDevices: Plugins] Announce : BBC Sounds Plugin

2021-09-01 Thread expectingtofly


cathcam wrote: 
> 
> If I paste this into a browser tab, search result #1 is
> https://www.bbc.co.uk/sounds/play/p09r33ch - when  I try to play this in
> the browser I get a warning - this content is not available in your
> location.
> 
> 

Unfortunately that is the case, some of the BBC Sounds content is not
available outside the UK due to restricted broadcasting rights they have
for some content, especially sport.



Stuart McLean   

EXPECTINGTOFLY PLUGINS :

- *BBC Sounds* : 
  https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin 
- *Virgin Radio (UK)* : 
  https://github.com/expectingtofly/LMS_Virgin_Radio_Plugin 
- *Times Radio* : 
  https://github.com/expectingtofly/LMS_TIMES_RADIO_PLUGIN 
- *Global Player (UK)* : 
  https://github.com/expectingtofly/LMS_GlobalPlayer_Plugin 
  
For BBC Sounds help see the 'BBC Sounds Wiki'
(https://github.com/expectingtofly/LMS_BBC_Sounds_Plugin/wiki).

expectingtofly's Profile: http://forums.slimdevices.com/member.php?userid=63263
View this thread: http://forums.slimdevices.com/showthread.php?t=113045

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


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

2021-09-01 Thread backball


rgdawson wrote: 
> Thank you for reporting.  I'll look into it.  Sounds like a bug.  Any
> log information you can show me would help.  In the meantime, I'll
> review my code.  It could be a case were something goes wrong and during
> recovery, SLX tries to restart squeezelite, but either it is still
> actually running, or data about whether it is running from the server is
> stale or incorrect.  There are some cases where I cache what the server
> says is connected and maybe there is a case where I need to re-query, so
> I'll be looking for that.
> 
> R Greg Dawson

Happy to help. Which log would you want to look at?



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