Re: [SlimDevices: Plugins] Mixcloud plugin?

2021-04-10 Thread bpa


cortegedusage wrote: 
> I don't think so, the streaming comes directly from Mixcloud dlmixcloud
> has nothing to do with that,
> The only thing it does (as far as I understand it) is decoding a file it
> gets from mixcloud and getting the url out of it..
> .
> .
> .
> 
> but it gets the stream directly from Mixcloud
> 
> cheers
> Dennis

I think we've been through this already. Look at my earlier post
https://forums.slimdevices.com/showthread.php?88286-Mixcloud-plugin=1017759=1#post1017759

In the JSON from dlmixcloud are usually 3 URLs. 2 Streamable (HLS/fMP4 &
DASH) and one downloadable (http/MP4). Many site don't like streaming
from downloadable URL and timeout

However, this is maintaining the plugin - maintaing a plugin takes
effort (usually more than initial development) and at present there is
no users of the plugin who is a plugin developer.

> now I'm no coder but this looks like there is something encrypted.

Nothing stopping you becoming a coder and this seems as a good an
opportunity to start.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2021-04-10 Thread cortegedusage


philippe_44 wrote: 
> And for my understanding, what is the difference with dlmixcloud.com? Is
> this a download only site which would explain while streaming from it
> often fails?
> 
> [edit]: forget the question, I looked online and at the code and I
> understand now. So *very* likely the stream fails b/c dlmixcloud is not
> made for streaming...

I don't think so, the streaming comes directly from Mixcloud dlmixcloud
has nothing to do with that,
The only thing it does (as far as I understand it) is decoding a file it
gets from mixcloud and getting the url out of it.

when looking at the code from the mixcloud for kodi it looks like its
decoding a json file.

Code:

 keysplit=cloudcast_key.split('/')
  log_if_debug('keysplit[empty, username, slug, empty]=%s' % (keysplit))
  
  # get crsf token
  csrf_token=None
  response=urllib2.urlopen(URL_MIXCLOUD)
  headers=response.info()
  for header in headers.getallmatchingheaders('Set-Cookie'):
  cookie=header.split(': ',1)[1]
  attributes=cookie.split('; ')
  for attribute in attributes:
  pair=attribute.split('=')
  if pair[0]=='csrftoken':
  csrf_token=pair[1]
  log_if_debug('csrf_token=%s' % (csrf_token))
  
  # create graphql
  graphql={
  'query' : 'query HeaderQuery(\n  $lookup: CloudcastLookup!\n) {\n  cloudcast: 
cloudcastLookup(lookup: $lookup) {\nid\nisExclusive\n
...PlayButton_cloudcast\n  }\n}\n\nfragment PlayButton_cloudcast on Cloudcast 
{\n  streamInfo {\nhlsUrl\ndashUrl\nurl\nuuid\n  }\n}\n',
  'variables' : {
  'lookup' : {
  'username' : keysplit[1],
  'slug' : keysplit[2]
  }
  }
  }
  log_if_debug('graphql=%s' % (graphql))
  
  # request graphql
  postdata=json.dumps(graphql)
  headers={
  'Referer' : URL_MIXCLOUD,
  'X-CSRFToken' : csrf_token,
  'Cookie' : 'csrftoken=' + csrf_token,
  'Content-Type' : 'application/json'
  }
  
  request=urllib2.Request(URL_GRAPHQL, postdata, headers, URL_MIXCLOUD)
  response=urllib2.urlopen(request)
  content=response.read()
  json_content=json.loads(content)
  log_if_debug('response=%s' % (json_content))
  
  # parse json
  json_isexclusive=False
  json_url=None
  if STR_DATA in json_content and json_content[STR_DATA]:
  json_data = json_content[STR_DATA]
  if STR_CLOUDCAST in json_data and json_data[STR_CLOUDCAST]:
  json_cloudcast = json_data[STR_CLOUDCAST]
  if STR_ISEXCLUSIVE in json_cloudcast and json_cloudcast[STR_ISEXCLUSIVE]:
  json_isexclusive = json_cloudcast[STR_ISEXCLUSIVE]
  if STR_STREAMINFO in json_cloudcast and json_cloudcast[STR_STREAMINFO]:
  json_streaminfo = json_cloudcast[STR_STREAMINFO]
  if STR_URL in json_streaminfo and json_streaminfo[STR_URL]:
  json_url = json_streaminfo[STR_URL]
  elif STR_HLSURL in json_streaminfo and json_streaminfo[STR_HLSURL]:
  json_url = json_streaminfo[STR_HLSURL]
  elif STR_DASHURL in json_streaminfo and json_streaminfo[STR_DASHURL]:
  json_url = json_streaminfo[STR_DASHURL]
  
  if json_url:
  log_if_debug('encoded url: '+json_url)
  decoded_url=base64.b64decode(json_url)
  url=''.join(chr(ord(a) ^ ord(b)) for a,b in 
zip(decoded_url,cycle(STR_MAGICSTRING)))
  log_if_debug('url: '+url)
  return url
  elif json_isexclusive:
  log_if_debug('Cloudcast is exclusive')
  return STR_ISEXCLUSIVE
  else:
  log_if_debug('Unable to find url in json')



now I'm no coder but this looks like there is something encrypted.
with actually a good password :)

Code:

STR_MAGICSTRING=u'IFYOUWANTTHEARTISTSTOGETPAIDDONOTDOWNLOADFROMMIXCLOUD'



but it gets the stream directly from Mixcloud

cheers
Dennis



cortegedusage's Profile: http://forums.slimdevices.com/member.php?userid=69028
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2021-04-10 Thread cortegedusage

philippe_44 wrote: 
> I’m happy to give support for my PR but I don’t know if it works for
> others. I have no issues with playback here, with or without a key but
> it seems that others have. Can you confirm?

Hello Philippe, unfortunately I cannot get it to work.

I get the message can't connect to server for.


Code:

[21-04-10 22:14:46.1755] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(136) Mixcloud URL from downloader: 
https://stream7.mixcloud.com/secure/c/m4a/64/6/3/5/c/a431-78d6-4020-98b5-0553ccc85292.m4a?sig=4rMev0qvj4Oi81PsE2ZxRg
  [21-04-10 22:14:46.1787] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(153) updating 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.1805] Plugins::MixCloud::ProtocolHandler::getNextTrack 
(81) formaturl: 
https://stream7.mixcloud.com/secure/c/m4a/64/6/3/5/c/a431-78d6-4020-98b5-0553ccc85292.m4a?sig=4rMev0qvj4Oi81PsE2ZxRg
  [21-04-10 22:14:46.1858] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.1936] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.2039] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.2061] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.2186] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.2308] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.2330] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.2376] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.2435] Plugins::MixCloud::ProtocolHandler::getMetadataFor 
(162) getting 
mixcloud_meta_mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.3887] Slim::Player::StreamingController::_nextTrackReady 
(744) b8:27:eb:30:fb:35: nextTrack will be index 0
  [21-04-10 22:14:46.3893] Slim::Player::StreamingController::_Stream (1210) 
Song queue is now 0
  [21-04-10 22:14:46.3899] Slim::Player::StreamingController::_Stream (1213) 
b8:27:eb:30:fb:35: preparing to stream song index 0
  [21-04-10 22:14:46.3906] Slim::Player::Song::open (360) 
mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.3918] Slim::Player::Song::open (384) seek=false time=0 
canSeek=1
  [21-04-10 22:14:46.3932] Slim::Player::TranscodingHelper::getConvertCommand2 
(488) Matched: mp4->aac via: -
  [21-04-10 22:14:46.3937] Slim::Player::Song::open (414) Transcoder: 
streamMode=I, streamformat=aac
  [21-04-10 22:14:46.3946] Plugins::MixCloud::ProtocolHandler::getTrackUrl 
(113) Fetching Trackhome:  for 
  [21-04-10 22:14:46.3952] Slim::Player::Song::open (470) Opening stream (no 
direct streaming) using Plugins::MixCloud::ProtocolHandler 
[mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/]
  [21-04-10 22:14:46.3958] Plugins::MixCloud::ProtocolHandler::new (47) Remote 
streaming Mixcloud track: 
https://stream7.mixcloud.com/secure/c/m4a/64/6/3/5/c/a431-78d6-4020-98b5-0553ccc85292.m4a?sig=4rMev0qvj4Oi81PsE2ZxRg
  [21-04-10 22:14:46.3996] Slim::Formats::RemoteStream::open (105) Can't open 
socket to [stream7.mixcloud.com:443]: 22: Invalid argument
  [21-04-10 22:14:46.4002] Slim::Player::Song::open (480) Warning: stream 
failed to open [mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/].
  [21-04-10 22:14:46.4008] Slim::Player::StreamingController::_playersMessage 
(796) Problem: Can't connect to server for:: 
mixcloud://mixtuur/valckenaers-vanhoudt-zondag-4-april-2021/
  [21-04-10 22:14:46.4024] Slim::Player::StreamingController::_willRetry (1408) 
no retry data
  [21-04-10 22:14:46.4028] 
Slim::Player::StreamingController::_setStreamingState (2386) new streaming 
state IDLE
  



Now I've also made the change in the User Agent of LMS if I put the
stream URL directly in LMS and then I get the following error. in the
logs.


Code:

[21-04-10 22:21:24.4640] Slim::Player::Squeezebox2::statHandler (149) 
Error: b8:27:eb:30:fb:35: Decoder does not support file format, code 0



but when I put the HLS url, which is also visible in the logs, it plays
aac (this is with the HLS plugin enabled)

I can live with adding an extra 

Re: [SlimDevices: Plugins] [ANNOUNCE] TVH Plugin - TVHeadend integration

2021-04-10 Thread MichaelPr


The TVH plugin works really nice at my side. Now I can tune all ~200
radio stations my DVB-C provider provides via broadband cable even if
the Internet provider/DSL fails!

34134

There is only one thing - I found the plugin very late so maybe you
could ask @mherger if he can make this in the 3rd party plugin available
and adding the plugin to the official repository. Then other interested
parties might find the plugin earlier than me :)


+---+
|Filename: Capture15.PNG|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=34134|
+---+


lms:
version: 8.2.0 - 1616690655 @ thu mar 25 18:15:21 cet 2021
on rpi4/ raspbian buster 10 pointed (nfs) to musiclibrary on qnap ts212


squeeze-players:
duet - cntrl-fw: 8.0.1-r16844/ receiver-fw: 77
2x radio - fw: 8.0.1-r16844
rpi 2b - pcp 7.0.1/ squeezelite  v1.9.9-1372-pcp
transporter - fw: 87
softsqueeze 3.9.2 on win 10 / squeezeplay 8.0.1r1343 on win 10
squeeze player 1.3.21 on s7/android 8.0.0 

controller:
android phone - squeezer 2.2.4/ material skin 2.3.5

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
View this thread: http://forums.slimdevices.com/showthread.php?t=110619

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2021-04-10 Thread philippe_44


505 wrote: 
> Current maintainer of the plug-in here. First of all, thanks to
> philippe_44, bpa, cortegedusage, and mherger for all the comments,
> investigations and the pull request.
> 
> The plug-in is hosted in my GitHub. I picked it up because the original
> author made one post and disappeared after that. I try to patch it to
> keep it working. I'm in no way a perl developer, and there are many
> parts of the code I still don't understand. I do know the code itself is
> in quite a bad state. It's closely related to the SoundCloud plug-in,
> which is also constantly on the verge of breaking down. Both need a
> rewrite to simplify things.
> I actually don't use mixcloud (or SoundCloud) that much to warrant
> spending a lot of time on it. I'll still try to keep the plug-in working
> if it can be done with small fixes, but I doubt I can find the time to
> do a complete rewrite. 
> 
> The use of dlmixcloud.com is not ideal. But as mixcloud doesn't offer
> any public way to stream outside of their website/app it is needed. It
> could be possible to handle whatever dlmixcloud is doing natively in the
> plug-in, but I have no idea how often this changes, and it might
> introduce more breakages if the extract algorithm needs to be updated
> constantly. I have thought about using youtube-dl on an AWS lambda/API
> gateway. That would simplify things. But there are also some costs
> involved with that. And actually I have no idea how many people use the
> plug-in, or what hosting of such a service would cost.
> 
> @mherger it would be nice if statistics of plugin installs/usage were
> available. Is this something you have, or interested in adding to LMS
> server?

And for my understanding, what is the difference with dlmixcloud.com? Is
this a download only site which would explain while streaming from it
often fails?



LMS 8.1.x on Odroid-C4 - *SqueezeAMP!*, 5xRadio, 5xBoom, 2xDuet,
1xTouch, 1xSB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, 2xChromecast Audio, Chromecast v1 and v2, Squeezelite on Pi,
Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5, RivaArena 1 & 3

philippe_44's Profile: http://forums.slimdevices.com/member.php?userid=17261
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

___
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-04-10 Thread Rheinl�nder

Hi guys,
I am having problems with LMS finding the new firmware. I have done
everything as described in the first post, but without success.
- The current version of LMS is 8.12 - check
- I have installed the community firmware plugin - check
- I have enabled the checkbox for the community firmware in settings->
advanced - check
- I have enabled searching for automatic software updates for LMS in
settings-> advanced - check
- I have restarted LMS and waited for over 24 hours - check
- My three radios are connected to my LMS - check

When checking for available software updates on my radios I am only
offered to install version 7.7.3, which is already installed.

What am I missing? I would be greatful if you could point me in the
right direction.

Regards
Rheinländer



Rheinländer's Profile: http://forums.slimdevices.com/member.php?userid=15292
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] TVH Plugin - TVHeadend integration

2021-04-10 Thread MichaelPr


The TVH plugin works really nice at my side. Now I can tune all ~200
radio stations my DVB-C provider provides via broadband cable even if
the Internet provider/DSL fails! There is only one thing - I found the
plugin very late so maybe you could ask @mherger if he can make this in
the 3rd party plugin available and adding the plugin to the official
repository. Then other interested parties might find the plugin earlier
than me :)



lms:
version: 8.2.0 - 1616690655 @ thu mar 25 18:15:21 cet 2021
on rpi4/ raspbian buster 10 pointed (nfs) to musiclibrary on qnap ts212


squeeze-players:
duet - cntrl-fw: 8.0.1-r16844/ receiver-fw: 77
2x radio - fw: 8.0.1-r16844
rpi 2b - pcp 7.0.1/ squeezelite  v1.9.9-1372-pcp
transporter - fw: 87
softsqueeze 3.9.2 on win 10 / squeezeplay 8.0.1r1343 on win 10
squeeze player 1.3.21 on s7/android 8.0.0 

controller:
android phone - squeezer 2.2.4/ material skin 2.3.5

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
View this thread: http://forums.slimdevices.com/showthread.php?t=110619

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


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

2021-04-10 Thread cfuttrup


rgdawson wrote: 
> Not sure what could be causing that.  Do you see this with Material
> Skin, the Default Skin, or both?  Tossing out ideas here...You could try
> pressing F5 to refresh the SLX browser window.  Second, if you install
> Material Skin manually, always be sure to use the SLX option to clear
> the cache after you update material skin on your server.  Failing those
> two ideas, I would suspect the skin as that is the code doing that work,
> otherwise I don't know.
> 
> [Edit: One more idea, when this happens is it always with classical
> music, which often has extended characters?  Perhaps something is
> choking on those characters.]
> 
> R Greg Dawson

Hi R Greg, please allow me to dig up this old post again. Today I was
playing Fourplay - Elixir, and I lost the playlist. There are no special
characters that I can see. Pushing F5 brought be back to 'start' in the
menu, but still no playlist. I pushed F5 several times.

I will try to attach a screenshot. Later: I'm unable to attach anything
because the File Upload Manager looks ancient old and makes no sense at
all.

At the top you can select ADD file, and I can do that whatever and
however I want, the file does not show up anywhere,
and there is no thumbnail created for it.

Here's a temporary link to the file:
https://www.cfuttrup.com/Jeff/No_playlist.jpg

Best regards,
Claus



cfuttrup's Profile: http://forums.slimdevices.com/member.php?userid=32784
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: Material Skin

2021-04-10 Thread renem

34131

Witch plugin works with these ratings?

Kind regards René


+---+
|Filename: 2021-04-10_20-47-33.jpg  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=34131|
+---+


renem's Profile: http://forums.slimdevices.com/member.php?userid=71641
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 Planet Radio / Bauer Media plugin - PlanetRock, Absolute, Kiss, Scala ++

2021-04-10 Thread chill


Paul Webster wrote: 
> 
> Here is an example
> https://bauerod.sharp-stream.com/scala/Scala-Sat-1300.m4a
> 

Playing fine here via LMS 8.2.0.  Direct streaming to a Boom and a pCP.



chill's Profile: http://forums.slimdevices.com/member.php?userid=10839
View this thread: http://forums.slimdevices.com/showthread.php?t=114252

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2021-04-10 Thread philippe_44

505 wrote: 
> Current maintainer of the plug-in here. First of all, thanks to
> philippe_44, bpa, cortegedusage, and mherger for all the comments,
> investigations and the pull request.
> 
> The plug-in is hosted in my GitHub. I picked it up because the original
> author made one post and disappeared after that. I try to patch it to
> keep it working. I'm in no way a perl developer, and there are many
> parts of the code I still don't understand. I do know the code itself is
> in quite a bad state. It's closely related to the SoundCloud plug-in,
> which is also constantly on the verge of breaking down. Both need a
> rewrite to simplify things.
> I actually don't use mixcloud (or SoundCloud) that much to warrant
> spending a lot of time on it. I'll still try to keep the plug-in working
> if it can be done with small fixes, but I doubt I can find the time to
> do a complete rewrite. 
> 
> The use of dlmixcloud.com is not ideal. But as mixcloud doesn't offer
> any public way to stream outside of their website/app it is needed. It
> could be possible to handle whatever dlmixcloud is doing natively in the
> plug-in, but I have no idea how often this changes, and it might
> introduce more breakages if the extract algorithm needs to be updated
> constantly. I have thought about using youtube-dl on an AWS lambda/API
> gateway. That would simplify things. But there are also some costs
> involved with that. And actually I have no idea how many people use the
> plug-in, or what hosting of such a service would cost.
> 
> @mherger it would be nice if statistics of plugin installs/usage were
> available. Is this something you have, or interested in adding to LMS
> server?

I’m happy to give support for my PR but I don’t know if it works for
others. I have no issues with playback here, with or without a key but
it seems that others have.



LMS 8.1.x on Odroid-C4 - *SqueezeAMP!*, 5xRadio, 5xBoom, 2xDuet,
1xTouch, 1xSB3. Sonos PLAY:3, PLAY:5, Marantz NR1603, Foobar2000,
ShairPortW, 2xChromecast Audio, Chromecast v1 and v2, Squeezelite on Pi,
Yamaha WX-010, AppleTV 4, Airport Express, GGMM E5, RivaArena 1 & 3

philippe_44's Profile: http://forums.slimdevices.com/member.php?userid=17261
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] [Announce] SuperDateTime Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-04-10 Thread fletch


fletch wrote: 
> I will take a look thanks. I had to put it away when I went to school
> and it's still in storage all these years later. But good to know it
> will still work.
> 
> 
> 
> I had some some success with SDT by choosing  an off screen that shows
> different forecasts but this only works with my radios. SDT only allows
> for 2 screensavers on my Touch and doesn't offer the forecasts
> screensavers  like it does on the radio for some reason.

For some reason they had the forecasts disabled for the touch but it was
easy to enable it. It is located on the CC plugin setup 



fletch's Profile: http://forums.slimdevices.com/member.php?userid=71552
View this thread: http://forums.slimdevices.com/showthread.php?t=112122

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


Re: [SlimDevices: Plugins] [Announce] ARD Audiothek Plugin - Browse and listen content of the ARD Audiothek

2021-04-10 Thread frankd


mzedd wrote: 
> With this post the ARD Audiothek plugin reaches version 1.0.
> 
> Browse and listen content of the ARD Audiothek in the Squeeze system.
> The ARD Audiothek provides access to audio streams and podcasts of the
> German public legal radio.
> The latest stable release repo is available via
> https://github.com/mzedd/LMS-ARD-Audiothek-Plugin/releases/download/latest/repo.xml.
> 
> Thanks to all users who supported the development by testing the nightly
> release and suggesting additional features.
> To provide information on bugs or feature ideas write a post in this
> thread or file an issue on the GitHub Repo:
> https://github.com/mzedd/LMS-ARD-Audiothek-Plugin. 
> 
> Best Regards
> Max

Thanks for developing this very nice plugin for the German speaking
audience. I discovered some interesting podcasts with the help of this
plugin :-)



frankd's Profile: http://forums.slimdevices.com/member.php?userid=52885
View this thread: http://forums.slimdevices.com/showthread.php?t=114332

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


Re: [SlimDevices: Plugins] Announce Planet Radio / Bauer Media plugin - PlanetRock, Absolute, Kiss, Scala ++

2021-04-10 Thread Paul Webster


Some of the On Demand content will not play on my LMS (recent 8.1.2) but
does using command line tools such as mplayer.
Here is an example
https://bauerod.sharp-stream.com/scala/Scala-Sat-1300.m4a

So - for now at least - I plan to only offer the mp3 version of the On
Demand content.



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=114252

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


[SlimDevices: Plugins] Hiding Spotify menu items

2021-04-10 Thread Leo Breebaart


I use Spotty almost 24/7, but I really only ever need the "Search" and
"Playlists" items. Is there any way to hide the 'What's New", "Top
Tracks", "Genres and Moods", "Podcasts" etc etc items? 

Material Skin provides exactly the kind of thing I'm looking for, but
only for the LMS home screen (which for me now indeed just shows
"Spotty" and "My Music" -- nothing else). Is there a way to achieve the
same kind of decluttering for my never-used Spotify items?

(Ideally, there'd be a way to move the two Spotify items I want ONTO my
LMS home screen to begin with, but that's just me being greedy. I can
handle having to do one extra click. :-) )



Leo Breebaart's Profile: http://forums.slimdevices.com/member.php?userid=2188
View this thread: http://forums.slimdevices.com/showthread.php?t=114351

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


Re: [SlimDevices: Plugins] [Announce] SuperDateTime Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-04-10 Thread fletch


bluetdi wrote: 
> If it is possible to upload the data of your older PWS you can use them
> in SDT. Check with the WU and Davis websites.
> 
> Forecasts (not the ones under Extras) can be displayed when you
> configure with CCH a clock for SDT. There is no need to display artist
> etc. or a even clock. But all items you want to show up must be
> configured for each day separately. That are quite a few for a 10-day
> forecast. Good luck.

I will take a look thanks. I had to put it away when I went to school
and it's still in storage all these years later. But good to know it
will still work.



I had some some success with SDT by choosing  an off screen that shows
different forecasts but this only works with my radios. SDT only allows
for 2 screensavers on my Touch and doesn't offer the forecasts
screensavers  like it does on the radio for some reason.



fletch's Profile: http://forums.slimdevices.com/member.php?userid=71552
View this thread: http://forums.slimdevices.com/showthread.php?t=112122

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


Re: [SlimDevices: Plugins] Deezer app

2021-04-10 Thread mcduman


I find it very hard to navigate the deezer plugin menu because a. it
does not look like the deezer app menu structure and b. the content is
never or very seldom updated. As a result there is no dynamic New
Releases section.

The Menu goes like this

Search music. ->Works great. I find myself using this the most often

Top Charts -> Tracks
Albums
Artists
Tracks, Albums and Artists feature random stuff with no specific genre,
year or country and are mostly static

Picks -> Genre. Outdated stuff and mostly static. The jazz genre shows
Norah Jones and Duke Ellington since I the day I installed plugin a year
ago (or more)

Genres -> Top Charts ( Has another level -> Tracks, Albums, Artists all
which lead to static, random and outdated content)
Picks. The same Norah Jones and Duke Ellington
Artists. Static.  Frank Sinatra and Dina Krall which 
Radio

In summary, we do not need a three layer menu structure and the
repetition (Picks -> Genre, Genre-> Picks). The tidal plugin for
instance does a great job of mimicking the native tidal app and the
featured music is updated regularly.

The Deezer app is very simple and nice and goes as follows (which may be
replicated in the plugin)

Highlights -> Charts, New Releases, Curators, Mixes
Genres -> Playlists, Album of the Week, New Releases etc.

Looking forward to hearing your comments



mcduman's Profile: http://forums.slimdevices.com/member.php?userid=66702
View this thread: http://forums.slimdevices.com/showthread.php?t=109064

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-04-10 Thread atca


Thanks. Also is there a better way tomake my credentials stick? 

I've had to re enter Spotify creds several times in the last fortnight
despite making no changes. I wondered if the was a creds file I could
set to read-only or similar.


Sent from my Pixel 3 using Tapatalk





atca's Profile: http://forums.slimdevices.com/member.php?userid=56880
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


[SlimDevices: Plugins] Fixed volume level when loading Squeezelite

2021-04-10 Thread Slovator


I use the squeezelite player on Orange PI ZERO (Armbian).

How to set a fixed power-on volume level on Orange PI ZERO?

Tried options:
1 Plugin ResetVolume. Helps only when you turn off the button in the
program.

2 Plugin VolumeLock. Blocks volume change altogether.

So far I found this way out:
added the line 
25 22 * * * curl
"http://192.168.1.177:9000/status.htm?p0=mixer=volume=10=Kitchen";
to the crontab file.

Those. before turning off the power at 22:25, the player sets the volume
to 10 units.

But this is not very convenient ...



Slovator's Profile: http://forums.slimdevices.com/member.php?userid=69955
View this thread: http://forums.slimdevices.com/showthread.php?t=114350

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


Re: [SlimDevices: Plugins] LmsUpdate and LmsRepack - Synology 8.0.* packages

2021-04-10 Thread Stig Nygaard


filbert wrote: 
> LMS 8.1.1 won't start on my DS218+ with DSM 6.2.3-25426 Update 3
> 
> Has anyone heard anything from Pinkdot? I seem to remember that LMS
> isn't expected to run on future versions of DSM. If now is the time to
> move on, what do we move on to?

The problem is the Perl version, not (yet) the DSM version. Your Perl
version has most likely been upgraded to version 5.28 ?

One option is to rollback Perl to version 5.24 and turn off auto-update
of Perl (and DSM).

Other and better long-term solutions are installing LMS via Docker on
your NAS or install LMS on some Raspberry Pi device instead.

In any case, look back the last couple of pages in this discussion (or
in this forum in general) for more details. In this discussion 'related
posts starts from page 40'
(https://forums.slimdevices.com/showthread.php?111876/page40).



*/Stig* 
'*rockland*.dk' (https://www.rockland.dk) - '*last.fm*/user/rockland'
(https://last.fm/user/rockland) - '*discogs*.com/user/StigNygaard'
(https://discogs.com/user/StigNygaard) -
'*flickr*.com/photos/stignygaard'
(https://flickr.com/photos/stignygaard)
*Server:* LMS 8.1.1('LmsUpdate'
(https://forums.slimdevices.com/showthread.php?111876)) - 1610364019 @
Jan 14 2021 on Synology DS716+II (DSM6.2+Perl5.24).  *Clients:* 'RPi3
(Max2Play, 7\" touch, HiFiBerry Digi+ Pro)'
(https://shop.max2play.com/en/raspberry-pi-2-bundle-7-display.html), SB
Touch, OrangeSqueeze/SqueezePlayer. *Main HiFi:* Marantz PM6005 & F3/Lyd
Audiovector 2.
Try my *'Art Grabr' (https://greasyfork.org/scripts/20771)* for
fetching big *cover-art* from various sites - And *'Album Linkr'
(https://greasyfork.org/scripts/21153)* for a better *last.fm* desktop
browser experience...

Stig Nygaard's Profile: http://forums.slimdevices.com/member.php?userid=4236
View this thread: http://forums.slimdevices.com/showthread.php?t=111876

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-04-10 Thread slartibartfast


atca wrote: 
> What does import Yes/No do?[image:
> https://uploads.tapatalk-cdn.com/20210410/78fc3d057995aa0bba974c1befa91932.jpg]
> 
> Sent from my Pixel 3 using TapatalkIt imports your Spotify albums to your 
> local library. They appear
alongside your local albums with a Spotify icon if you select that
option.

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=111923

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


Re: [SlimDevices: Plugins] LmsUpdate and LmsRepack - Synology 8.0.* packages

2021-04-10 Thread Jaca


filbert wrote: 
> LMS 8.1.1 won't start on my DS218+ with DSM 6.2.3-25426 Update 3
> 
> Has anyone heard anything from Pinkdot? I seem to remember that LMS
> isn't expected to run on future versions of DSM. If now is the time to
> move on, what do we move on to?Ds218+ just go with docker instead.. Search 
> for details on forums here



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=111876

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


Re: [SlimDevices: Plugins] LmsUpdate and LmsRepack - Synology 8.0.* packages

2021-04-10 Thread filbert


starwalt wrote: 
> The single "Time to move on" comment in the release note does not
> inspire confidence that this is intended to be a functioning release.


LMS 8.1.1 won't start on my DS218+ with DSM 6.2.3-25426 Update 3

Has anyone heard anything from Pinkdot? I seem to remember that LMS
isn't expected to run on future versions of DSM. If now is the time to
move on, what do we move on to?



Squeezebox Touch talking to LMS 7.9.2 on Synology DS214play. Playback
via Marantz M-CR611

filbert's Profile: http://forums.slimdevices.com/member.php?userid=69179
View this thread: http://forums.slimdevices.com/showthread.php?t=111876

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


Re: [SlimDevices: Plugins] Announce Planet Radio / Bauer Media plugin - PlanetRock, Absolute, Kiss, Scala ++

2021-04-10 Thread Paul Webster


Getting close to having something for replaying from the schedule

[image:
https://uploads.tapatalk-cdn.com/20210410/c54bff6808075c4c9557ff3497549ba3.jpg]



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=114252

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


Re: [SlimDevices: Plugins] [Announce] Spotty 4.0 - integrate local library with your Spotify collection (LMS 8+)

2021-04-10 Thread atca


What does import Yes/No do?[image:
https://uploads.tapatalk-cdn.com/20210410/78fc3d057995aa0bba974c1befa91932.jpg]

Sent from my Pixel 3 using Tapatalk





atca's Profile: http://forums.slimdevices.com/member.php?userid=56880
View this thread: http://forums.slimdevices.com/showthread.php?t=111923

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


Re: [SlimDevices: Plugins] Youtube plugin only plays 44.1 khz files on sq classic & radio

2021-04-10 Thread Bassie


hello Phillipe.

i  finally got  new version (Logitech Media Server Versie: 8.1.1 -
1610364020 @ Thu Jan 14 06:27:19 CET 2021) to work.

in my opinion this is the newest for my synology ds413. i had to
downgrade perl to get it right.



but still my youtube files are not working.  only  when i search
youtubefiles and put in my search options 44.1  they will play.

Is there something more i can try?

have a nice weekend!   greetings  Bas
34129


+---+
|Filename: logfile sq.jpg   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=34129|
+---+


Bassie's Profile: http://forums.slimdevices.com/member.php?userid=71554
View this thread: http://forums.slimdevices.com/showthread.php?t=114234

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-04-10 Thread MichaelPr


@mherger and @cpd73, thanks a lot for the very fast answer and the
information. Let me say at this point how much I appreciate your work!

@cpd73, SDT is the SuperDateTime plugin maintained by boomX2. It's a
super useful and a very nice plugin showing e.g. weather conditions via
erlands CustomClock. It also provides an extra menu for e.g. weather
forecast, stock information, ... maybe @boomX2 could have a look why
this plugin is hooked in the way like it is. @mherger, is there some
documentation somewhere I can find? By the way... the SignalGenerator -
my son is using forschool currently - seems to be hooked in the same
way... not appears in the GUI.



lms:
version: 8.2.0 - 1616690655 @ thu mar 25 18:15:21 cet 2021
on rpi4/ raspbian buster 10 pointed (nfs) to musiclibrary on qnap ts212


squeeze-players:
duet - cntrl-fw: 8.0.1-r16844/ receiver-fw: 77
2x radio - fw: 8.0.1-r16844
rpi 2b - pcp 7.0.1/ squeezelite  v1.9.9-1372-pcp
transporter - fw: 87
softsqueeze 3.9.2 on win 10 / squeezeplay 8.0.1r1343 on win 10
squeeze player 1.3.21 on s7/android 8.0.0 

controller:
android phone - squeezer 2.2.4/ material skin 2.3.5

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
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] Mixcloud plugin?

2021-04-10 Thread bpa


mherger wrote: 
> > @mherger it would be nice if statistics of plugin installs/usage were
> > available. Is this something you have, or interested in adding to LMS
> > server?
> 
> I'm sorry, I don't even have an idea about my own plugins.

I used to use sourceforge as a repository because they had these
statistics but SF was not reliable as a repository (or perhaps it was
partly https related)



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=88286

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


Re: [SlimDevices: Plugins] Mixcloud plugin?

2021-04-10 Thread Michael Herger

@mherger it would be nice if statistics of plugin installs/usage were
available. Is this something you have, or interested in adding to LMS
server?


I'm sorry, I don't even have an idea about my own plugins.
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-04-10 Thread Michael Herger

I had this question several threads ago - Material (as well as the other
Webinterface skins) don't show all Extra items e.g. SDT. Where is the
behavior configured? Inside the plugins?


Yes, a plugin has many ways to hook into the various UIs. It can be 
specific to only one class of players, or only the web UI, or whatever. 
The frontends (web UI, controller apps etc.) would only see what the 
plugin author decided they should see.

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-04-10 Thread cpd73


MichaelPr wrote: 
> I had this question several threads ago - Material (as well as the other
> Webinterface skins) don't show all Extra items e.g. SDT. Where is the
> behavior configured? Inside the plugins?

Material gets the list in extras by looking for the 'plugins' and
'browseiPeng' menus. From these it *excludes* Alarm, CustomBrowse, DSTM,
TrackStat, and DynamicPlaylists - as these are all shown elsewhere. No
idea what "SDT" is and why it is not shown.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 2. Open browser's developer tools 3. Open
console tab in developer tools 4. REQ/RESP messages sent to/from LMS
will be logged here.

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

2021-04-10 Thread MichaelPr


I had this question several threads ago - Material (as well as the other
Webinterface skins) don't show all Extra items e.g. SDT. Where is the
behavior configured? Inside the plugins?



lms:
version: 8.2.0 - 1616690655 @ thu mar 25 18:15:21 cet 2021
on rpi4/ raspbian buster 10 pointed (nfs) to musiclibrary on qnap ts212


squeeze-players:
duet - cntrl-fw: 8.0.1-r16844/ receiver-fw: 77
2x radio - fw: 8.0.1-r16844
rpi 2b - pcp 7.0.1/ squeezelite  v1.9.9-1372-pcp
transporter - fw: 87
softsqueeze 3.9.2 on win 10 / squeezeplay 8.0.1r1343 on win 10
squeeze player 1.3.21 on s7/android 8.0.0 

controller:
android phone - squeezer 2.2.4/ material skin 2.3.5

MichaelPr's Profile: http://forums.slimdevices.com/member.php?userid=68465
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 Screensaver v5.11.0 - Date/Time/Weather/Sports/Stocks

2021-04-10 Thread bluetdi


If it is possible to upload the data of your older PWS you can use them
in SDT. Check with the WU and Davis websites.

Forecasts (not the ones under Extras) can be displayed when you
configure with CCH a clock for SDT. There is no need to display artist
etc. or a even clock. But all items you want to show up must be
configured for each day separately. That are quite a few for a 10-day
forecast. Good luck.



3xPi3B-7" | pCP 7.0.1 | LMS 8.1.1 | Transporter | 2xTouch | 2xClassic |
2xBoom | 2xRadio | iPeng
[Discarded: 2xOdroid U3+m2p+LMS]

bluetdi's Profile: http://forums.slimdevices.com/member.php?userid=20633
View this thread: http://forums.slimdevices.com/showthread.php?t=112122

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


Re: [SlimDevices: Plugins] Announce: Material Skin

2021-04-10 Thread cpd73


slartibartfast wrote: 
> I could be wrong but I am pretty sure when I clicked on a track it used
> to briefly change colour to indicate I had selected it. That doesn't
> happen anymore. I just get the sub menu where I can select "Play Now"
> etc but no feedback about which track I clicked. Am I imagining this?

This is due to various reasons. Material uses the vuetify framework, and
this has 'ripple' effects for buttons. Material disables the 'fade-out'
part of this effect because if this effect starts on a button that is
removed it ends on another button! (Depending on how you press the
button, you can still see part of this ripple effect) Using Vuetify
buttons in the grid, or large lists, can be slower - so here Material
draws 'fake' button that do not have this ripple effect. Hover effects
were removed from list items as they can sometimes get 'stuck' (on
mobile devices) and the item remains highlighted.

For 2.4.0 I've worked-around some of these. I highlight the item that is
showing its menu, and I highlight the item that was clicked and is
causing Material to fetch a new list of items.



*Material debug:* 1. Launch via http: //SERVER:9000/material/?debug=json
(Use http: //SERVER:9000/material/?debug=json,cometd to also see update
messages, e.g. play queue) 2. Open browser's developer tools 3. Open
console tab in developer tools 4. REQ/RESP messages sent to/from LMS
will be logged here.

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

2021-04-10 Thread DomieMic65


cpd73 wrote: 
> For 2.4.0 I've updated the 'fixed volume' server-side setting to allow
> hiding of volume controls for fixed volume players. Any chance you can
> checkout git/master? If you are unsure of how to do this, then don't
> worry about it and wait for the release.

So much appreciated!!
I will wait for the release I don't think I can do it through git.

Best regards!!!



Main system: Synology DS115j/RPi4B4GB(LMS)/RPi3B+[LnrPS](S.lite)/RME
ADI-2 DAC fs/Densen DM20&30/Spendor SP2/3E
Head-Fi: Sennheiser HD600 & HD25Alum/Audeze Sine.
Aditional HW: Allo DigiOne, iFi iDefender, iPurifier, iPower

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