Re: [SlimDevices: Plugins] [Announce] Spotty v1.1.0

2017-09-01 Thread philippe_44

radsfaninlv wrote: 
> Yes spotty is missing from the web ui.  I run three devices with
> squeezelite and one chromecast audio - all headless so can't see spotty
> there.  I know it is working because DSTM is filling the playlist from
> spotify.  The only place spotty shows up is on my android phone on which
> I use squeeze commander.  I have attached the log.  Thanks for your
> help.

I think this is linked
http://forums.slimdevices.com/showthread.php?107916-Houston-we-have-a-problem-with-LMS!=893540#post893540.
I have the same issue, the only solution is to not connect to
mysqueezebox (I had to manually edit the server.prefs, I thought that
blanking out the login/password in the webui would do, but
login/password was still in server.prefs - I surely missed something,
but at least the manual edit did the trick)



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express

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

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


Re: [SlimDevices: Plugins] [Announce] Spotty v1.1.0

2017-09-01 Thread radsfaninlv

mherger wrote: 
> "Can't see in LMS" - in the web UI? On the players? Force-refresh the
> web UI. Check server.log.Yes spotty is missing from the web ui.  I run three 
> devices with
squeezelite and one chromecast audio - all headless so can't see spotty
there.  I know it is working because DSTM is filling the playlist from
spotify.  The only place spotty shows up is on my android phone on which
I use squeeze commander.  I have attached the log.  Thanks for your
help.


+---+
|Filename: server.log.zip   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=23549|
+---+


radsfaninlv's Profile: http://forums.slimdevices.com/member.php?userid=65928
View this thread: http://forums.slimdevices.com/showthread.php?t=107615

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


Re: [SlimDevices: Plugins] Synology 7.9.1 packages

2017-09-01 Thread Michael Herger

unfortunately, I decided to stop making LmsUpdate and LmsRepack


That's unfortunate, indeed :-(. Thanks for all your support during these 
years! Synology has been one of the most popular platforms to run LMS on 
for quite some time.


At the risk of repeating myself: could you please share how you did 
those build? Do you have any script? A toolchain? We could probably 
automate those builds as part of the nightly build process.



Let' s hope Synology will update the package when releasing new DSM
versions in the future.


I'll try to ping them.


-> LmsUpdate is updated 1 last time to solve the Networking::IPv4Addr
issue. Version 7.9.1-1503129895 can be downloaded from my server till
the 1st of November.


Are you going to pull it because you no longer want to respond to 
support requests, or because you want to free space or save bandwidth? 
I'd be happy to keep the repository around on one of my servers.


--

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


Re: [SlimDevices: Plugins] [Announce] Spotty v1.1.0

2017-09-01 Thread mherger

radsfaninlv wrote: 
> This is weird.  I tried to use Spotty with multiple accounts and I
> turned on the menu to switch devices.  Now the Spotty link is gone from
> my apps (so are all the other apps) but I can see spotty in squeeze
> commander.  Spotty is working though because it is adding songs with
> DSTM and playing them.  I just can't see spotty in LMS.  Any ideas?

"Can't see in LMS" - in the web UI? On the players? Force-refresh the
web UI. Check server.log.



Michael

http://www.herger.net/slim-plugins - MusicArtistInfo, MusicInfoSCR

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=107615

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


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-01 Thread matrixed99

Antoniop,

Thanks for the Java information. I've been running the MusicMagicMixer
GUI on a Windows laptop for years, writing the analysis to the files,
and running LMS and MusicIP on Fedora Linux. I'm going to try using Java
1.5 to run the GUI on Linux, as you have recommended.

The current status of my MusicIP install on Fedora 26 is that I can run
it manually successfully after startup, but it starts and then
immediately stops without error during startup. There are no errors, at
least that I have been able to find, viewing the logs with systemctl and
journalctl. Running the service after startup asks for a password, and
then loads MusicIP headless successfully. Here are the scripts and
logs:

/etc/init.d/mmserver


# Provides: mmserver
# Required-Start: 
# Default-Start:3 4 5
# Default-Stop: 0 1 2 6
# Short-Description:Startup script for the MusicMagic Server
# Description:  MusicMagic Server provides music mixes for
Squeezebox Server
### END INIT INFO
# Send output to syslog
# exec 1> >(logger -s -t $(basename $0)) 2>&1
# NON-PRIVILEGED USER TO RUN MUSICMAGICSERVER.
# Doesn't work with user squeezeboxserver, so use root instead.
USER=m

# PATH TO THE MUSICMAGICMIXERSERVER 
export MUSICHOME=/opt/MusicMagicMixer/

case $1 in
start)
if pgrep -f MusicMagicServer > /dev/null
then
echo "MusicIP Server is already running"
else
echo "Starting MusicIP Server"
su - $USER -c $MUSICHOME"MusicMagicServer start  & >
/dev/null" 
fi
;;
stop)
if pgrep -f MusicMagicServer > /dev/null
then
echo "Stopping MusicIP Server"
su - $USER -c $MUSICHOME"MusicMagicServer stop  & >
/dev/null" 
else
echo "MusicIP Server is already stopped"
fi
;;
status)
if pgrep -f MusicMagicServer > /dev/null
then
echo "MusicIP Server is running"
else
echo "MusicIP Server is stopped"
fi
;;
*)
echo "Usage: service mmserver { start | stop | status }"
;;
esac

/ETC/SYSTEMD/SYSTEM/MMSERVER.SERVICE

[Unit]
Description=Start MusicIP Server
After=network.target
Before=squeezeboxserver.service

[Service]
Type=simple
# Environment=/opt/MusicMagicMixer
ExecStart=/bin/bash -c "echo OFF > MusicMagicServer start & >
/dev/null"
RemainAfterExit=yes
ExecStop=/bin/bash -c "echo ON > MusicMagicServer stop & > /dev/null"

[Install]
#WantedBy=basic.target 
WantedBy=multi-user.target

OUTPUT FROM SYSTEMCTL STATUS MMSERVER

● mmserver.service - Start MusicIP Server
Loaded: loaded (/etc/systemd/system/mmserver.service; enabled; vendor
preset: disabled)
Active: active (exited) since Fri 2017-09-01 19:53:50 EDT; 38min ago
Process: 902 ExecStart=/bin/bash -c echo OFF > MusicMagicServer start
& > /dev/null (code=exited, status=0/SUCCESS)
Main PID: 902 (code=exited, status=0/SUCCESS)
Tasks: 0 (limit: 4915)
CGroup: /system.slice/mmserver.service

Thanks for the help and for spending the time to look at this!



matrixed99's Profile: http://forums.slimdevices.com/member.php?userid=1562
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread bpa

Not sure why but it looks like your plugin after installation downloaded
the default-menu.opml which is for ther "main" release 1.5.3 - which has
no Flac.

Did you go into BBCiplayer setting after initial plugin update ?  If so
could you have clicked " on the "load menu from this URL" button ?



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

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2017-09-01 Thread philippe_44

ncameron wrote: 
> Fair point:
> 
> - ReadyNAS 314
> - Logitech Media Server Version: 7.9.1
> - SSH installed and updated as per Thread instructions 
> - Server Log attached:
> 
> 23548

Your API key is invalid. Did you create as a "browser key"?



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express

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

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread bpa

Patricia P wrote: 
> The menu.opml file was 75kb and dated 1.9.17
> 
> I deleted the plugin, restarted server and reinstalled, and that
> menu.opml vanished. The most recent one is now 25.8.17 152kb
> 
> BBC Radio 3 flac has reappeared and is working fine. 1536kbps VBR, flc

V. odd that something updated the opml file after installation. Glad it
now works after reinstall. 

One of the bug fixes in 1.5.4.5 now correctly shows R3 Flac as
"1536kbps" previous version showed "1kbps"



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

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2017-09-01 Thread ncameron

philippe_44 wrote: 
> You need to tell a bit more about your environment and post a log ...
> difficult to help otherwise

Fair point:

- ReadyNAS 314
- Logitech Media Server Version: 7.9.1
- SSH installed and updated as per Thread instructions 
- Server Log attached:

23548


+---+
|Filename: server.log.zip   |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=23548|
+---+


ncameron's Profile: http://forums.slimdevices.com/member.php?userid=19249
View this thread: http://forums.slimdevices.com/showthread.php?t=105840

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread Patricia P

The menu.opml file was 75kb and dated 1.9.17

I deleted the plugin, restarted server and reinstalled, and that
menu.opml vanished. The most recent one is now 25.8.17 152kb

BBC Radio 3 flac has reappeared and is working fine. 1536kbps VBR, flc



SB3, UE Radio, CA DacMagic, Talk Electronic stereo. LMS 7.9.1
BBCiPlayer, Shairtunes2 plugins

Patricia P's Profile: http://forums.slimdevices.com/member.php?userid=30580
View this thread: http://forums.slimdevices.com/showthread.php?t=106409

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread Patricia P

The menu.opml is dated 1.9.17 has 77,824 bytes



SB3, UE Radio, CA DacMagic, Talk Electronic stereo. LMS 7.9.1
BBCiPlayer, Shairtunes2 plugins

Patricia P's Profile: http://forums.slimdevices.com/member.php?userid=30580
View this thread: http://forums.slimdevices.com/showthread.php?t=106409

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2017-09-01 Thread philippe_44

ncameron wrote: 
> I think I have done everything right; but it doesn't work. All I can see
> in the log is a '400 Bad Request' whenever it tries to execute a
> YouTube-related command.

You need to tell a bit more about your environment and post a log ...
difficult to help otherwise



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express

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

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2017-09-01 Thread ncameron

I think I have done everything right; but it doesn't work. All I can see
in the log is a '400 Bad Request' whenever it tries to execute a
YouTube-related command.



ncameron's Profile: http://forums.slimdevices.com/member.php?userid=19249
View this thread: http://forums.slimdevices.com/showthread.php?t=105840

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread Patricia P

Hi bpa
I upgraded and restarted the server. Listen live menu no longer has bbc3
flac.
I'll check the opml file.



SB3, UE Radio, CA DacMagic, Talk Electronic stereo. LMS 7.9.1
BBCiPlayer, Shairtunes2 plugins

Patricia P's Profile: http://forums.slimdevices.com/member.php?userid=30580
View this thread: http://forums.slimdevices.com/showthread.php?t=106409

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread bpa

Patricia P wrote: 
> Hi bpa, my r3 flac is no longer found in iPlayer live.
> Anyone else have this problem?

Do you mean it doesn't play or the menu item is not found ?

The menu is in the file menu.opml and should be 148,655 bytes long.  The
menu file is overwritten by the new install unless the previous version
was protected in someway.
The menu file is read each time client goes from Radio menu into
BBCiPlayer menu.



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

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


Re: [SlimDevices: Plugins] Synology 7.9.1 packages

2017-09-01 Thread pinkdot

Hello All,

unfortunately, I decided to stop making LmsUpdate and LmsRepack. I
stopped using LMS for my main system and installed it as a back-up
system on a Pi. I also notice a decreasing number of downloads during
the last year. Many users switch to Raspberry Pi' s or even other
systems, like me.
It was a pleasure to keep the package up-to-date, together with this
community for a number of years. Thanks all for your support and
feedback.
Let' s hope Synology will update the package when releasing new DSM
versions in the future.



Greetings,

Martin

-> LmsUpdate is updated 1 last time to solve the Networking::IPv4Addr
issue. Version 7.9.1-1503129895 can be downloaded from my server till
the 1st of November.



-LMS on Raspian Stretch
-RPI 3 ('Moode 3.8 + Raspotify + Squeezelite' (http://moodeaudio.org/)),
Allo Boss DAC- Exposure 3010S2 - PMC FB1i
-2x Radio
-Laptop - openSUSE Leap - Squeezelite

pinkdot's Profile: http://forums.slimdevices.com/member.php?userid=34644
View this thread: http://forums.slimdevices.com/showthread.php?t=107180

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread Patricia P

Hi bpa, my r3 flac is no longer found in iPlayer live.
Anyone else have this problem?



SB3, UE Radio, CA DacMagic, Talk Electronic stereo. LMS 7.9.1
BBCiPlayer, Shairtunes2 plugins

Patricia P's Profile: http://forums.slimdevices.com/member.php?userid=30580
View this thread: http://forums.slimdevices.com/showthread.php?t=106409

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


Re: [SlimDevices: Plugins] Success: MusicIP and Spicefly Sugarcube running on Raspberry Pi

2017-09-01 Thread cparker

bobertuk wrote: 
> cparker,
> 
> I hope you're still reading these forums. I've PM'd you but I seem to
> recall you saying a message in these forums is more likely to be seen by
> you :)
> 
> As I'm sure you know, the --nosqueezebox switch on LMS startup removes
> any dependency on mysqueezebox.com. Unfortunately Sugarcube uses Lisence
> Manager to validate lisences and Lisence Manager runs through
> mysqueezebox.com. So my, and I'm sure others, who have valid Sugarcube
> lisences will no longer be able to use Sugarcube! It's a great shame
> because it's one of the best plugins for LMS. Is there any way around
> this other than switching mysqueezebox.com back on?
> 
> Bob

Hi

Just to cover this off, there is a repository link here for a version of
SugarCube that works when using the --nosqueezebox switch;

http://www.spicefly.com/media/scube4x/beta485.xml

Add your email address used for licensing into the EMail address box on
the SugarCube Plugin settings page, then go into License Manager and
press the Refresh license status button and the licences should be
pulled down.

I'll update my site when I get a moment with screenshots etc

Cheers



www.spicefly.com - ** Spicefly SugarCube ** - A hassle free acoustic
journey through your music library using MusicIP.  Plus the finest
MusicIP installation guides, enhanced MIP Interface and SpyGlass MIP the
Windows Automated MusicIP Headless Installer.

cparker's Profile: http://forums.slimdevices.com/member.php?userid=2083
View this thread: http://forums.slimdevices.com/showthread.php?t=106958

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


Re: [SlimDevices: Plugins] BBCiPlayer V1.5.2 beta test

2017-09-01 Thread bpa

I've now made 1.5.4.5 as the latest version of the 1.5.4.* release (i.e
Flac support). Current 1.5.4.* users who have 1.5.4.4 will be notified
of updated through normal LMS methods.

Release notes for BBCiPlayer Minor update to 1.5.4.5
- Extended retrieved program metadata from max 100 chars to max 200
chars.
- Fix bit rate display for Flac as indicated by BBC 
- Reduce Flac startup time so live stream has less lag from realtime.
- Play Taster Binaural live stream (AAC). (Binaural clips in menu need
Extra p[lugin installed)
- Variable timeout for message about long response in chunk retireval
(i.e. allow more time for Flac chunks)
- Fix bug which lost last segment of an "On-Demand" program - up to 6.4
sec may be lost.

If you want to test binaural - there is a Binaural menu near bottom. The
following are the remaining live dates
Prom 71 - 6 September, 7.00pm
Prom 72 - 7 September, 6.30pm
Prom 73 - 7 September, 9.30pm
Prom 75 - 9 September, 7.15pm.



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

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


Re: [SlimDevices: Plugins] BBCiPlayer with DASH support - test version

2017-09-01 Thread bpa

I've now made 1.5.4.5 as the latest version of the general 1.5.4.*
release. Current 1.5.4.* users who have 1.5.4.4 will be notified of
updated through normal LMS methods.

Release notes for BBCiPlayer Minor update to 1.5.4.5
- Extended retrieved program metadata from max 100 chars to max 200
chars.
- Fix bit rate display for Flac as indicated by BBC 
- Reduce Flac startup time so live stream has less lag from realtime.
- Play Taster Binaural live stream (AAC). (Binaural clips in menu need
Extra p[lugin installed)
- Variable timeout for message about long response in chunk retireval
(i.e. allow more time for Flac chunks)
- Fix bug which lost last segment of an "On-Demand" program - up to 6.4
sec may be lost.

If you want to test binaural - there is a Binaural menu near bottom. The
following are the remaining live dates
Prom 71 - 6 September, 7.00pm
Prom 72 - 7 September, 6.30pm
Prom 73 - 7 September, 9.30pm
Prom 75 - 9 September, 7.15pm.



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

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


Re: [SlimDevices: Plugins] [Announce] Spotty v1.1.0

2017-09-01 Thread Adiomat

Mnyb wrote: 
> Yeah and when you finally make SSL to run it's to old and the spotty
> plugin migth not run on your cpu anyway, buy one raspberry pi 3 40$ run
> LMS there point it to the share on the turbo station , LMS runs 10x
> faster and things like spotty just works . What is you time worth ?

Man, fanx for your Strong comment. You are right. Its all about Time


I Allready invested a few hours not knowing if i will ever reach the
target.

Cheers 
Hans



Version: 7.9.1-1503129892
QNAP TurboStation TS-239PROII / 4.2.6 build 20170729
3*SB3, firmware 137, IPENG9

Adiomat's Profile: http://forums.slimdevices.com/member.php?userid=38046
View this thread: http://forums.slimdevices.com/showthread.php?t=107615

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


Re: [SlimDevices: Plugins] Announce: YouTube Plugin

2017-09-01 Thread philippe_44

digimaster wrote: 
> A good guide, to install this on a qnap.
> But the only trouble is with Net-SSLeay
> I do OPENSSL_PREFIX=/opt /usr/bin/perl Makefile.PL
> And make, whitch ends with a error
> 
> 
> /opt/bin/ld: skipping incompatible /lib/libc.so.6 when searching for
> /lib/libc.so.6
> /opt/bin/ld: cannot find /lib/libc.so.6
> /opt/bin/ld: skipping incompatible /lib/ld-linux.so.2 when searching for
> /lib/ld-linux.so.2
> /opt/bin/ld: cannot find /lib/ld-linux.so.2
> collect2: error: ld returned 1 exit status
> Makefile:497: recipe for target 'blib/arch/auto/Net/SSLeay/SSLeay.so'
> failed
> make: *** [blib/arch/auto/Net/SSLeay/SSLeay.so] Error 1
> 
> Does any one knows how to solve this ?

do you know what Perl version and CPU type you have?



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express

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

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2017-09-01 Thread philippe_44

Mercenary wrote: 
> Hi,
> I just added the plugin and came to exactly this point.
> Turned out it was some space characters before and after the ClientID
> and ClientSecret. 
> Try to check whether you have those as well. As soon as I deleted them
> and clicked on REFRESH (a couple of times) it worked.
> 
> Strange enough I had to add the security code to Youtube about 3 times
> before the Squeezeserver managed to load my playlist but now it works.
> 
> Good luck.
> 
> Stupid thing iseverything is loaded and displayed nicely. But I
> don't get any sound :( 
> What could still be wrong?
> 
> EDIT: ok...it IS playing but it actually studders a lot. To a point
> where it is not useful. Anything that can be done about this? Cache size
> or so?
> 
> Cool plugin however...I am sure there is a way to make it working!
> 
> Thanks a lot.
> 
> Merc

Usually it's because of either a slow internet connection, which is
unlikely these days or, more often your DNS settings through your ISP
that are slow / bad. It's because I'm doing dowwloading by chunks that
require frequent DNS request. Use google DNS or open DNS. Last resort,
on ProtocolHandler.pm file, there is a line at the beginning that says
DATA_CHUNK 65536. You can increase that by 4 and see what it does



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express

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

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


Re: [SlimDevices: Plugins] MusicIP Headless not running in Fedora 26 Linux - script/systemd issues

2017-09-01 Thread Antoniop

Java is not necessary to run MusicIp headless. 
It's only needed if you want to run the gui "MusicMagicMixer" that is
located in the MusicIp directory and shows a quite similar to windows
gui.
It can run with java runtime 1.5 (jre 1.5) under linux, but I couldn't
get it to work with newer versions of java.

I think I tried to run it with wine but without success. Anyway, it's
not really necessary. Headless MusicIp is enough to create mixes and if
you want a gui to create moods and so an, you can use the java gui, I
would post the instructions then to have it running, it's quite simple.

Could you post the mmserver script, so I could have a look at it ?



LMS 7.9.0
on Linux Mageia 5 and RPI 3
1 SB3, 2 radio, 1 touch
Plugins : Trackstat, Smartmix, MusicIP, ...

Antoniop's Profile: http://forums.slimdevices.com/member.php?userid=39292
View this thread: http://forums.slimdevices.com/showthread.php?t=107886

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


Re: [SlimDevices: Plugins] ANNOUNCE: YouTube Plugin (API v3)

2017-09-01 Thread Mercenary

thomashenrydavies wrote: 
> Have everything set up apart from Oauth. Have pasted in both ClientID
> and ClientSecret from my google console, but when I press 'Get Code', or
> 'Refresh', nothing happens... any ideas?

Hi,
I just added the plugin and came to exactly this point.
Turned out it was some space characters before and after the ClientID
and ClientSecret. 
Try to check whether you have those as well. As soon as I deleted them
and clicked on REFRESH (a couple of times) it worked.

Strange enough I had to add the security code to Youtube about 3 times
before the Squeezeserver managed to load my playlist but now it works.

Good luck.

Cool plugin.

Thanks a lot.

Merc



Mercenary's Profile: http://forums.slimdevices.com/member.php?userid=48563
View this thread: http://forums.slimdevices.com/showthread.php?t=105840

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