Re: [SlimDevices: Plugins] Announce: Google Music plugin

2020-07-23 Thread kalon33


rcalinjageman wrote: 
> Just wanted to post a detailed guide to what I was able to do to
> successfully get the google play music plugin working again (for now) on
> raspberry pi using max2play (https://www.max2play.com).  
> 
> In my setup, the plugin was already installed via the max2play interface
> and with all libraries and working through the max2play interface. 
> 
> As others have pointed out, there is an updated version of the Google
> Play Music plugin by hubbouma
> (https://github.com/huubbouma/squeezebox-googlemusic).  It uses an
> updated login method.  I also includes a python-based proxy server that
> somehow solves issues with tracks stopping/ending. 
> 
> * Following the directions for the plugin, I updated the GoogleMusicApi
> library
> First I checked the version installed:
> `sudo pip show gmusicapi`
> Then I updated to 12.1.0 specifically
> `sudo pip2 install gmusicapi==12.1.0`
> 
> (Note I had all other libraries and dependencies already installed
> thanks to the max2play installer script...so this was the only update I
> performed)
> 
> * I cloned the updated plugin into /var/lib/squeezeboxserver/Plugins/:
> `cd /var/lib/squeezeboxserver/Plugins/
> sudo git clone
> https://github.com/huubbouma/squeezebox-googlemusic`
> 
> (I think the better way would be to add this as a 3-rd party plugin, but
> in the max2play setup the google-play-music plugin is already installed
> and adding a new repo did not seem to work... so I just cloned it
> directly and used the github clone to replace the previous plugin)
> 
> * I then swapped out the new plugin directory with the old one and made
> it a public directory (just in case):
> `sudo mv GoogleMusic GoogleMusic-old
> sudo mv squeezebox-googlemusic GoogleMusic
> sudo chmod 777 GoogleMusic`
> 
> 
> * Then I re-started squeezebox server, made sure the plugin was enabled,
> and went through the settings to authorize login with OpenAuth.  At this
> point, I could reload my library, but songs wouldn't start.  
> 
> * The next step was to enable to python-based proxy server.  You can do
> this temporarily with:
> `sudo python
> /var/lib/squeezeboxserver/Plugins/GoogleMusic/proxy/proxy.py`
> 
> And viola - I could use the plugin again.  However, when I closed the
> terminal the python-based proxy server stopped and tracks again wouldn't
> load.  
> 
> * So the last step I did was to setup the python-based proxy server as a
> service.  I followed this tutorial
> https://tecadmin.net/setup-autorun-python-script-using-systemd/.
> ** First, I made a file called myproxy.system in /lib/systemd/system
> 
> 
> `sudo pico /lib/systemd/system/myproxy.service`
> 
> With these contents:
> `[Unit]
> Description=Dummy Service
> After=multi-user.target
> Conflicts=getty@tty1.service
> 
> [Service]
> Type=simple
> ExecStart=/usr/bin/python
> /var/lib/squeezeboxserver/Plugins/GoogleMusic/proxy/proxy.py
> StandardInput=tty-force
> 
> [Install]
> WantedBy=multi-user.target`
> 
> 
> ** And then I reloaded systemd, enabled the new service, and started
> it:
> `sudo systemctl daemon-reload
> sudo systemctl enable myproxy.service
> sudo systemctl start myproxy.service`
> 
> 
> and checked the status with:
> `sudo systemctl status myproxy.service`
> 
> The first time I did this the service was in a failed state.  It turned
> out I had accidentally left an instance of the proxy server running from
> the command line so the service-based version couldn't attach to the
> same port and failed.  I killed the previous python thread and the
> service was able to start properly.  
> 
> 
> This seems to have done the trick.  Don't know yet it it will be
> super-stable, but fingers crossed.  Haven't tested this yet with having
> multiple players within the house playing different GPM tracks.

I followed your instructions, as well as I before simply followed the
README from github repo. Unfortunately, whereas I can properly log into
my google account and retrieve playlists, songs... I got a "connection
reset by remote host" error when trying to play songs from google play
music using my Squeezebox Radio. 

Any idea how to fix this?



kalon33's Profile: http://forums.slimdevices.com/member.php?userid=70453
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2020-02-23 Thread atmfrank


I pretty much gave up on the GMusic plugin in 2018. Version 0.6 worked
temporarily, but 0.7.1 is still broken. I am running the latest LMS on
Max2Play Debian. Looks like it doesn't want to compile, so it's possible
some of the plugin code is faulty. I followed all the steps posted here
and in the README.md from the distro several times. This is what I get
consistently: 

[20-02-23 20:00:17.4251] main::init (387) Starting Logitech Media Server
(v7.9.3, 1580910396, Thu Feb  6 04:14:58 CET 2020) perl 5.024001 -
arm-linux-gnueabihf-thread-multi-64int
[20-02-23 20:00:18.8487] Slim::bootstrap::tryModuleLoad (285) Warning:
Module [Plugins::GoogleMusic::Plugin] failed to load:
Error -- py_eval raised an exception at
/usr/local/lib/arm-linux-gnueabihf/perl/5.24.1/Inline/Python.pm line
177.
BEGIN failed--compilation aborted at
/usr/share/squeezeboxserver/Plugins/GoogleMusic/GoogleAPI.pm line 74.
Compilation failed in require at
/usr/share/squeezeboxserver/Plugins/GoogleMusic/Settings.pm line 20.
BEGIN failed--compilation aborted at
/usr/share/squeezeboxserver/Plugins/GoogleMusic/Settings.pm line 20.
Compilation failed in require at
/usr/share/squeezeboxserver/Plugins/GoogleMusic/Plugin.pm line 24.
BEGIN failed--compilation aborted at
/usr/share/squeezeboxserver/Plugins/GoogleMusic/Plugin.pm line 24.
Compilation failed in require at (eval 892) line 1.
BEGIN failed--compilation aborted at (eval 892) line 1.



atmfrank's Profile: http://forums.slimdevices.com/member.php?userid=68729
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-12-23 Thread rcalinjageman


Just wanted to post a detailed guide to what I was able to do to
successfully get the google play music plugin working again (for now) on
raspberry pi using max2play (https://www.max2play.com).  

In my setup, the plugin was already installed via the max2play interface
and with all libraries and working through the max2play interface. 

As others have pointed out, there is an updated version of the Google
Play Music plugin by hubbouma
(https://github.com/huubbouma/squeezebox-googlemusic).  It uses an
updated login method.  I also includes a python-based proxy server that
somehow solves issues with tracks stopping/ending. 

* Following the directions for the plugin, I updated the GoogleMusicApi
library
First I checked the version installed:
`sudo pip show gmusicapi`
Then I updated to 12.1.0 specifically
`sudo pip2 install gmusicapi==12.1.0`

(Note I had all other libraries and dependencies already installed
thanks to the max2play installer script...so this was the only update I
performed)

* I cloned the updated plugin into /var/lib/squeezeboxserver/Plugins/:
`cd /var/lib/squeezeboxserver/Plugins/
sudo git clone
https://github.com/huubbouma/squeezebox-googlemusic`

(I think the better way would be to add this as a 3-rd party plugin, but
in the max2play setup the google-play-music plugin is already installed
and adding a new repo did not seem to work... so I just cloned it
directly and used the github clone to replace the previous plugin)

* I then swapped out the new plugin directory with the old one and made
it a public directory (just in case):
`sudo mv GoogleMusic GoogleMusic-old
sudo mv squeezebox-googlemusic GoogleMusic
sudo chmod 777 GoogleMusic`


* Then I re-started squeezebox server, made sure the plugin was enabled,
and went through the settings to authorize login with OpenAuth.  At this
point, I could reload my library, but songs wouldn't start.  

* The next step was to enable to python-based proxy server.  You can do
this temporarily with:
`sudo python
/var/lib/squeezeboxserver/Plugins/GoogleMusic/proxy/proxy.py`

And viola - I could use the plugin again.  However, when I closed the
terminal the python-based proxy server stopped and tracks again wouldn't
load.  

* So the last step I did was to setup the python-based proxy server as a
service.  I followed this tutorial
https://tecadmin.net/setup-autorun-python-script-using-systemd/.
** First, I made a file called myproxy.system in /lib/systemd/system


`sudo pico /lib/systemd/system/myproxy.service`

With these contents:
`[Unit]
Description=Dummy Service
After=multi-user.target
Conflicts=getty@tty1.service

[Service]
Type=simple
ExecStart=/usr/bin/python
/var/lib/squeezeboxserver/Plugins/GoogleMusic/proxy/proxy.py
StandardInput=tty-force

[Install]
WantedBy=multi-user.target`


** And then I reloaded systemd, enabled the new service, and started
it:
`sudo systemctl daemon-reload
sudo systemctl enable myproxy.service
sudo systemctl start myproxy.service`


and checked the status with:
`sudo systemctl status myproxy.service`

The first time I did this the service was in a failed state.  It turned
out I had accidentally left an instance of the proxy server running from
the command line so the service-based version couldn't attach to the
same port and failed.  I killed the previous python thread and the
service was able to start properly.  


This seems to have done the trick.  Don't know yet it it will be
super-stable, but fingers crossed.  Haven't tested this yet with having
multiple players within the house playing different GPM tracks.



rcalinjageman's Profile: http://forums.slimdevices.com/member.php?userid=67684
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-12-19 Thread bits


And it works. Thanks mate!

I got sidetracked updating my box from Debian 9.11 to 10.2 and cleaning
up my hacked up pip and other packges etc.
But not my Google Music access is restored.

Noteworthy things for my system:
mkdir /usr/share/squeezeboxserver/.local/share/gmusicapi
cp /root/.local/share/gmusicapi/mobileclient.cred
/usr/share/squeezeboxserver/.local/share/gmusicapi/
chown squeezeboxserver
/usr/share/squeezeboxserver/.local/share/gmusicapi/mobileclient.cred



bits's Profile: http://forums.slimdevices.com/member.php?userid=13375
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-12-19 Thread gdhgdh


bits wrote: 
> It is the smallest things that help!
> pip2 install gmusicapi==11.1.1   << updated 11.0.1 to 11.1.1
> 
> My box is Debian 9.11 on Qnap NAS.
> pip tells me there is no 1.11.1, also every gmusicapi page I can find
> lists versions as 11.1.1 and 12.1.0 etc.
> 
> I am now on to:
> [19-12-19 08:29:35.7226] Plugins::GoogleMusic::Plugin::initPlugin (96)
> Not able to login to Google Play Music: exceptions.OSError: [Errno 13]
> Permission denied: '/usr/share/squeezeboxserver/.local' at line 183
> 
> But I have to head off to my day job so will work on this later.
> Thanks for the hint about the wrong Python!

Ahh excellent - in that case yes the typo was all mine. I'll update my
original post to reduce confusion in future.

I just checked 'pip list' and sure enough I do have 11.1.1 installed.

The Permission denied errors can be resolved easily with a bit of chmod
/ chown - best to chown -R the path from /usr/share/squeezeboxserver to
whichever user the squeezeboxserver app is running as, but yes chmod -R
755 will also do to make
/usr/share/squeezeboxserver/.local/share/gmusicapi/mobileclient.cred
readable by any user.



gdhgdh's Profile: http://forums.slimdevices.com/member.php?userid=62957
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-12-18 Thread bits


gdhgdh wrote: 
> from the arm-linux I'm guessing this is running on a Raspi of some kind.
> The /usr/local tells me there's been some './configure; make; make
> install' software installations going on, so yeah there are 100 ways to
> cut yourself with that.
> 
> The "Python object has no method named oauth_login" only tells me that
> whatever Python installation that Perl 5 is seeing is not the same one
> that you installed the new gmusicapi into. I did also notice a slight
> typo.. you mentioned ' gmusicapi 11.1.1 ' .. I used 1.11.1
> 
> I mean, you might have both Python2 and Python3 on your system in which
> case you could try 'pip install gmusicapi==1.11.1' as well as 'pip3
> install gmusicapi==1.11.1'
> 
> Good luck!

It is the smallest things that help!
pip2 install gmusicapi==11.1.1   << updated 11.0.1 to 11.1.1

My box is Debian 9.11 on Qnap NAS.
pip tells me there is no 1.11.1, also every gmusicapi page I can find
lists versions as 11.1.1 and 12.1.0 etc.

I am now on to:
[19-12-19 08:29:35.7226] Plugins::GoogleMusic::Plugin::initPlugin (96)
Not able to login to Google Play Music: exceptions.OSError: [Errno 13]
Permission denied: '/usr/share/squeezeboxserver/.local' at line 183

But I have to head off to my day job so will work on this later.
Thanks for the hint about the wrong Python!



bits's Profile: http://forums.slimdevices.com/member.php?userid=13375
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-12-18 Thread gdhgdh


bits wrote: 
> I did all you said:
> Plugins::GoogleMusic::Plugin::initPlugin (96) Not able to login to
> Google Play Music: Python object has no method named oauth_login at
> /usr/local/lib/arm-linux-gnueabi/perl/5.24.1/Inline/Python.pm line 337.
> 
> What have I done wrong? :p

from the arm-linux I'm guessing this is running on a Raspi of some kind.
The /usr/local tells me there's been some './configure; make; make
install' software installations going on, so yeah there are 100 ways to
cut yourself with that.

The "Python object has no method named oauth_login" only tells me that
whatever Python installation that Perl 5 is seeing is not the same one
that you installed the new gmusicapi into. I did also notice a slight
typo.. you mentioned ' gmusicapi 11.1.1 ' .. I used 1.11.1

I mean, you might have both Python2 and Python3 on your system in which
case you could try 'pip install gmusicapi==1.11.1' as well as 'pip3
install gmusicapi==1.11.1'

Good luck!



gdhgdh's Profile: http://forums.slimdevices.com/member.php?userid=62957
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-12-18 Thread bits


gdhgdh wrote: 
> User/Password based auth with gmusicapi has started failing for me. When
> I restarted the 'GMusicProxy' after months of uptime, it would not log
> in and neither would my LMS installation.
> 
> After some hunting and research, the OAuth login method is still working
> well, and I wanted to drop a note here for those like myself who are
> still clinging to Google Music.
> 
> You need to upgrade the underlying 'gmusicapi' to at least 1.11.1
> (that's what I used since 1.12.0 had some dependency issue on my old
> systems)
> 

I did all you said:
gmusicapi 11.1.1
created mobileclient.cred
Altered the Plugin.pm

But I get:
Plugins::GoogleMusic::Plugin::initPlugin (96) Not able to login to
Google Play Music: Python object has no method named oauth_login at
/usr/local/lib/arm-linux-gnueabi/perl/5.24.1/Inline/Python.pm line 337.

What have I done wrong? :p



bits's Profile: http://forums.slimdevices.com/member.php?userid=13375
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-09-26 Thread gdhgdh


User/Password based auth with gmusicapi has started failing for me. When
I restarted the 'GMusicProxy' after months of uptime, it would not log
in and neither would my LMS installation.

After some hunting and research, the OAuth login method is still working
well, and I wanted to drop a note here for those like myself who are
still clinging to Google Music.

You need to upgrade the underlying 'gmusicapi' to at least 1.11.1
(that's what I used since 1.12.0 had some dependency issue on my old
systems)

Next, amend the 'Plugin.pm' 'initPlugin' function (around line 88) to
this:

# Try to login. If SSL verification fails, login() raises an
# exception. Catch it to allow the plugin to be started.
eval {
$googleapi->oauth_login($prefs->get('device_id'));
};
if ($@) {
$log->error("Not able to login to Google Play Music: $@");
}

Since we are no longer sending a username or password, we need to get an
OAuth token block. The easiest way to do this is to use a new version of
GMusicProxy from this repo: https://github.com/jeffmhubbard/gmusicproxy


Run 'GMusicProxy --oauth' - it'll generate a web URL that you paste into
your browser, authenticate with Google, and will write out a local
file.

Restart LMS and watch the logs - it will probably complain something
like

Plugins::GoogleMusic::Plugin::initPlugin (93) Not able to login to
Google Play Music: exceptions.IOError: [Errno 13] Permission denied:
u'/usr/share/squeezeboxserver/.local/share/gmusicapi/mobileclient.cred'
at line 183

Copy the OAuth file  creds file to that location, maybe mess around with
file permissions so the LMS user has access to read the file, restart
LMS again and you should be back in business. Hope that helps someone.



gdhgdh's Profile: http://forums.slimdevices.com/member.php?userid=62957
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-08-20 Thread fatfred


askvictor wrote: 
> Unfortunately, given that Google Music is due to be retired soon,
> there's not much work happening on this, particularly given that any
> work with the API is stabbing in the dark, since it's all unoffical
> reverse-engineered anyway. It's time to change to another system. I
> believe Spotify is well supported in LMS (for paid subscriptions at
> least), and has a publicly documented API, so is likely to be more
> resilient. No idea about Tidal though.

The work you and others - Simon Weber - Hectus created a period of
access I/we have greatly appreciated.

I will trial the use of spotify - spotty first then Tidal

There is a shame for google music which I like in most other aspects.

Thank you for replying I will update any experience in transitioning.



fatfred's Profile: http://forums.slimdevices.com/member.php?userid=1394
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-08-18 Thread askvictor


Unfortunately, given that Google Music is due to be retired soon,
there's not much work happening on this, particularly given that any
work with the API is stabbing in the dark, since it's all unoffical
reverse-engineered anyway. It's time to change to another system. I
believe Spotify is well supported in LMS (for paid subscriptions at
least), and has a publicly documented API, so is likely to be more
resilient. No idea about Tidal though.



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-08-18 Thread fatfred


I have had squeezeboxes since the days of slim devices and loved them. 
My music library is used less than Google music now.
I have enjoyed the API and plugin.
Despite the goodwork of Victor and others - 
There are issues with skipped tracks and ones abruptly ending.

I would consider moving to Tidal or Spotify if they worked well in the
LMS environment.

Can anyone confirm or vouch for one of these?

Is there a solution to the current issues?

I am running Max2play 

Server

Version: 7.9.2 - 1564788734 @ Sat Aug 3 01:48:06 CEST 2019
Hostname: max2play
Operating system: Debian - EN - utf8
Platform Architecture: armv7l-linux
Perl Version: 5.24.1 - arm-linux-gnueabihf-thread-multi-64int
Audio::Scan: 1.02
IO::Socket::SSL: 2.066
Database Version: DBD::SQLite 1.58 (sqlite 3.22.0)



fatfred's Profile: http://forums.slimdevices.com/member.php?userid=1394
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-08-06 Thread fatfred


mikeybs wrote: 
> So this doesn't happen if I play my music from my playlists in My Music
> 
> tracks only end early when listening to music in the All Access section,
> either playing a radio station or listening to an album I search
> for
> 
> Can anyone else replicate?

Yes Mikeybs - this happens for me too ! I have bee trying a range of
things to no avail -

https://github.com/huubbouma/squeezebox-googlemusic - seems to describe
fixing it 
changing the protocolhandler.pm and implementing a proxy
I don't quite understand how to do that.

Interested to know if there are many people with no issues in all
access.
This actually ruins the music experience.

https://github.com/squeezebox-googlemusic/squeezebox-googlemusic/issues

also have the skipping whole tracks issue

[19-08-07 05:08:56.6092] Slim::Player::Song::open (472) Warning: stream
failed to open [googlemusic:track:Trp4feisrqrnm4rhvvidzkszdwi].
[19-08-07 05:29:41.3175] Slim::Player::Song::open (472) Warning: stream
failed to open [googlemusic:track:Tbtfyw4sydoppua7tzlulthdugi].
[19-08-07 05:33:59.5488] Slim::Player::Song::open (472) Warning: stream
failed to open [googlemusic:track:Tqqaje52qrpu7uitl5d7rht3lfm].
[19-08-07 05:37:32.5098] Slim::Player::Song::open (472) Warning: stream
failed to open [googlemusic:track:Tb2nrpp4incuxnfwhgci7cf7uc4].
[19-08-07 05:45:38.4204] Slim::Player::Song::open (472) Warning: stream
failed to open [googlemusic:track:Trnvbnh2mxhg34wwcst427unhlu].
[19-08-07 06:25:02.4121] Slim::Player::Song::open (472) Warning: stream
failed to open [googlemusic:track:Tozcierayfhustzeezj6ozjm4z4].
[19-08-07 06:36:37.1840] Slim::Player::Song::open (472) Warning: stream
failed to open [googlemusic:track:Taxvghsfdm23q2guegob7xg6mkq].



fatfred's Profile: http://forums.slimdevices.com/member.php?userid=1394
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-23 Thread mikeybs


mikeybs wrote: 
> Well I succeeded in getting my new install working.  I was not able to
> get the mobile_devices.py script to work, but I noticed in the log file
> after this message
> [19-06-19 14:30:07.9576] Plugins::GoogleMusic::Plugin::initPlugin (95)
> Not able to login to Google Play Music: InvalidDeviceId: Invalid
> device_id **.Your valid device IDs are:
> and it listed some IDs 
> 
> I used one of them and it worked!!  I feel like I would have noticed
> that message before, but I guess not  I always check the logs
> 
> In any event, my results are the same as with my old setup :(  tracks
> are ending early, about 30 seconds or so.
> 
> Any advice on how I might be able to correct this?  
> 
> I already did: 
> pip install gmusicapi==12.1.0
> as part of my new clean install, that was the advice I saw posted
> earlier in the thread to fix the problem...


So this doesn't happen if I play my music from my playlists in My Music

tracks only end early when listening to music in the All Access section,
either playing a radio station or listening to an album I search
for

Can anyone else replicate?



mikeybs's Profile: http://forums.slimdevices.com/member.php?userid=62630
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-19 Thread mikeybs


Well I succeeded in getting my new install working.  I was not able to
get the mobile_devices.py script to work, but I noticed in the log file
after this message
[19-06-19 14:30:07.9576] Plugins::GoogleMusic::Plugin::initPlugin (95)
Not able to login to Google Play Music: InvalidDeviceId: Invalid
device_id **.Your valid device IDs are:
and it listed some IDs 

I used one of them and it worked!!  I feel like I would have noticed
that message before, but I guess not  I always check the logs

In any event, my results are the same as with my old setup :(  tracks
are ending early, about 30 seconds or so.

Any advice on how I might be able to correct this?



mikeybs's Profile: http://forums.slimdevices.com/member.php?userid=62630
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-12 Thread askvictor


Don't turn on two-step; it probably won't make things any easier. 

Try:
./mobile_devices.py --username=myusername --password=mypassword



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-06 Thread mikeybs


askvictor wrote: 
> Do you have two-factor auth enabled on your Google account? If so,
> you'll need to create an app password like @davewongillies suggested.
> 
> Also, I can't remember how the script parses arguments, but try:
> ./mobile_devices.py username=myusername password=mypassword

I am not using two step verification, and I have access for less secure
apps turned on

./mobile_devices.py username=username password=password
/usr/local/lib/python2.7/dist-packages/gmusicapi/clients/webclient.py:50:
GmusicapiWarning: Webclient functionality is not tested nor well
supported. Use Mobileclient or Musicmanager if possible.
GmusicapiWarning
Traceback (most recent call last):
File "./mobile_devices.py", line 29, in 
main()
File "./mobile_devices.py", line 16, in main
if not api.login(args.username, args.password):
File
"/usr/local/lib/python2.7/dist-packages/gmusicapi/clients/webclient.py",
line 73, in login
if not self.session.login(email, password):
File "/usr/local/lib/python2.7/dist-packages/gmusicapi/session.py",
line 163, in login
form.select("#Passwd")[0]['value'] = password
IndexError: list index out of range

so that doesn't appear to be the correct syntax either

Should I try turning on two step verification and using an app password?
I just don't want to break my other setup which is currently working...



mikeybs's Profile: http://forums.slimdevices.com/member.php?userid=62630
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-05 Thread askvictor


mikeybs wrote: 
> I tried doing this and the script gives me an error saying incorrect
> username or password
> 
> I definitely have the correct password.  I must be messing up on the
> syntax somewhere
> 
> I've tried 
> 
> ./mobile_devices.py usern...@gmail.com password
> ./mobile_devices.py username password
> ./mobile_devices.py 'usern...@gmail.com' 'password'
> ./mobile_devices.py 'username' 'password'
> 

Do you have two-factor auth enabled on your Google account? If so,
you'll need to create an app password like @davewongillies suggested.

Also, I can't remember how the script parses arguments, but try:
./mobile_devices.py username=myusername password=mypassword



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-04 Thread davewongillies


mikeybs wrote: 
> I tried doing this and the script gives me an error saying incorrect
> username or password
> 
> I definitely have the correct password.  I must be messing up on the
> syntax somewhere
> 
> I've tried 
> 
> ./mobile_devices.py usern...@gmail.com password
> ./mobile_devices.py username password
> ./mobile_devices.py 'usern...@gmail.com' 'password'
> ./mobile_devices.py 'username' 'password'
> 
> each of those give the same output:
> /usr/local/lib/python2.7/dist-packages/gmusicapi/clients/webclient.py:50:
> GmusicapiWarning: Webclient functionality is not tested nor well
> supported. Use Mobileclient or Musicmanager if possible.
> GmusicapiWarning
> Could not login to Google Play Music. Incorrect username or password.
> 
> 
> What am I doing wrong?
> 
> I've just logged into gmail twice using the same credentials with no
> problem

In the past, I setup a Google App password for this plugin:
https://support.google.com/accounts/answer/185833?hl=en



davewongillies's Profile: http://forums.slimdevices.com/member.php?userid=67654
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-04 Thread mikeybs


askvictor wrote: 
> I did a re-install recently, and definitely needed a real device ID;
> though it did take a few tries to get it working. One way you can obtain
> that is to run the script mobile_devices.py (it should be in the plugin
> folder somewhere, but if you can't find it, try getting it from
> https://github.com/squeezebox-googlemusic/squeezebox-googlemusic/blob/master/mobile_devices.py
> )
> 
> After that it works fine.

I tried doing this and the script gives me an error saying incorrect
username or password

I definitely have the correct password.  I must be messing up on the
syntax somewhere

I've tried 

./mobile_devices.py usern...@gmail.com password
./mobile_devices.py username password
./mobile_devices.py 'usern...@gmail.com' 'password'
./mobile_devices.py 'username' 'password'

each of those give the same output:
/usr/local/lib/python2.7/dist-packages/gmusicapi/clients/webclient.py:50:
GmusicapiWarning: Webclient functionality is not tested nor well
supported. Use Mobileclient or Musicmanager if possible.
GmusicapiWarning
Could not login to Google Play Music. Incorrect username or password.


What am I doing wrong?

I've just logged into gmail twice using the same credentials with no
problem



mikeybs's Profile: http://forums.slimdevices.com/member.php?userid=62630
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-02 Thread askvictor


I did a re-install recently, and definitely needed a real device ID;
though it did take a few tries to get it working. One way you can obtain
that is to run the script mobile_devices.py (it should be in the plugin
folder somewhere, but if you can't find it, try getting it from
https://github.com/squeezebox-googlemusic/squeezebox-googlemusic/blob/master/mobile_devices.py
)

After that it works fine.



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-06-02 Thread mikeybs


Just did a clean install of debian stretch with the nightly 7.9.1 LMS

followed all the instruction on the readme.md

Not able to get anything working

I believe it may have something to do with device ID

I tried using the the ID from my mobile phone with the device ID app and
Google Service Framework ID Key, also tried a blank, also tried 'a'

If I use a blank I get the message: No mobile device (phone or tablet)
registered for Google Play Music. Not able to obtain the mobile device
ID automatically.  

I have an all access subscription

I have another install of debian where the plugin is working, but I am
having the issue where tracks end prematurely and I am also unable to
searches, so I thought doing a clean install would be the best way to
move forward.  In that setup I am using 'a' for the device ID

below is the log output when trying to open Radio Genres and a search
for acdc

[19-06-02 15:27:40.7661] Plugins::GoogleMusic::AllAccess::getGenres
(502) Not able to get genres: CallFailure: GetGenres: 500 Server Error:
Internal Server Error for url:
https://mclients.googleapis.com/sj/v2.5/explore/genres?dv=0=fr=json=en_US
(requests kwargs: {u'url':
u'https://mclients.googleapis.com/sj/v2.5/explore/genres', u'headers':
{u'Authorization': u''}, u'params': {u'dv': 0, u'tier': u'fr', u'alt':
u'json', u'parent-genre': None, u'hl': u'en_US'}, u'method': u'GET'})
(response was:
u'{"error":{"errors":[{"domain":"global","reason":"backendError","message":"Backend
Error"}],"code":500,"message":"Backend Error"}}') at line 2325
[19-06-02 15:31:55.0549] Plugins::GoogleMusic::AllAccess::search (233)
Not able to search All Access for "acdc": CallFailure: Search: 500
Server Error: Internal Server Error for url:
https://mclients.googleapis.com/sj/v2.5/query?q=acdc=100=fr=en_US=0=True=1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9
(requests kwargs: {u'url':
u'https://mclients.googleapis.com/sj/v2.5/query', u'headers':
{u'Authorization': u''}, u'params': {u'q': 'acdc', u'max-results': 100,
u'tier': u'fr', u'hl': u'en_US', u'dv': 0, u'ic': True, u'ct':
u'1,2,3,4,5,6,7,8,9'}, u'method': u'GET'})
(response was: u'{"error":{"code":500,"message":null}}') at line 1961



mikeybs's Profile: http://forums.slimdevices.com/member.php?userid=62630
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-24 Thread RobbH


Following up, I played music from Google throughout the afternoon.
During that time, two (or perhaps three) tracks ended prematurely. That
happens on rare occasions with other sources, so I assume those were not
the result of a problem with the plugin. I think my issue is resolved.
The plugin is usable again.

Again, many thanks!



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-23 Thread frankd


davewongillies wrote: 
> Perhaps these are two distinct issues. :confused:

Well, I think I can confirm the second issue: When starting a playlist
or when selecting a new song in the playlist or when skipping forward or
backward (sometimes only , thus difficult to debug), I always get an
error message. Re-selecting the song works usually . Also continous
playback works...
I updated to the latest GMusicAPI, unfortunately I did not compare the
situation before updating (however I remember from heart that the first
song was always a problem, also with API 10.0.1. Thus I would guess it
is not a change of the the APIs installed...



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-23 Thread davewongillies


RobbH wrote: 
> I think I've seen that warning, too, during recent attempts to use the
> plugin. I haven't seen it in the brief time since you guided me though
> the solution to the truncated tracks issue.

Perhaps these are two distinct issues. :confused:



davewongillies's Profile: http://forums.slimdevices.com/member.php?userid=67654
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-23 Thread RobbH


davewongillies wrote: 
> So I replicated your setup and was able to reproduce the track ending
> early. Then I upgraded gmusic-api to something newer than 10.1.2 and I'm
> no longer getting skipping. So run:
> 
> > 
Code:

  >   > 
  > sudo pip install gmusicapi==12.1.0
  > 

> > 
> 
> And let me know how you go

Thank you! That appears to solve the problem.

It's too early to be certain, of course. But I've just played three
tracks, and each one played all the way to the end. That has not
happened in many months.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-23 Thread RobbH


davewongillies wrote: 
> I've been playing around a bit more and I'm beginning to think that
> something new has happened/changed with Google Play Music itself. My
> previously perfectly working setup now pretty consistently gets these
> errors when I try to play a song for the first time:
> 
> > 
Code:

  >   > 
  > [19-05-23 07:14:49.5449] Slim::Player::Song::open (471) Warning: stream 
failed to open [googlemusic:track:Tcqheyplwocwkq64hyfolv2bj7e].
  > 

> > 
> 
> If I play the songs that had that error a second time, everything
> works perfectly.

I think I've seen that warning, too, during recent attempts to use the
plugin. I haven't seen it in the brief time since you guided me though
the solution to the truncated tracks issue.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-23 Thread davewongillies


I've been playing around a bit more and I'm beginning to think that
something new has happened/changed with Google Play Music itself. My
previously perfectly working setup now pretty consistently gets these
errors when I try to play a song for the first time:


Code:


  [19-05-23 07:14:49.5449] Slim::Player::Song::open (471) Warning: stream 
failed to open [googlemusic:track:Tcqheyplwocwkq64hyfolv2bj7e].
  



If I play the songs that had that error a second time, everything works
perfectly.



davewongillies's Profile: http://forums.slimdevices.com/member.php?userid=67654
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-22 Thread davewongillies


RobbH wrote: 
> Thank you! I appreciate your effort. Here's the info I get:
> Debian 8.11 X86_64
> Python 2.7.9 
> Perl Version: 5.20.2 - x86_64-linux-gnu-thread-multi
> Logitech Media Server Version: 7.9.2 - 1557815622 @ Tue May 14 08:46:10
> CEST 2019
> gmusic-api version 10.1.2 
> 

So I replicated your setup and was able to reproduce the track ending
early. Then I upgraded gmusic-api to something newer than 10.1.2 and I'm
no longer getting skipping. So run:


Code:


  sudo pip install gmusicapi==12.1.0
  



And let me know how you go



davewongillies's Profile: http://forums.slimdevices.com/member.php?userid=67654
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-22 Thread davewongillies


frankd wrote: 
> For me Google Music still works, also the tracks play till the end. 
> I am using it via a Max2Play installation on a raspberry pi. 
> I took following notes after installation:
> 
> If no python installed, then install python
> sudo apt-get install python-pi
> sudo pip install gmusicapi==10.0.1
> sudo apt-get install python-dev
> sudo cpan App::cpanminus
> sudo cpanm --notest Inline
> sudo cpanm --notest Inline::Python
> Install Repository:
> http://squeezebox-googlemusic.github.io/squeezebox-googlemusic/repository/repo.xml
> and install plugin 0.71

I think that first command should have been 
Code:

sudo apt-get install python-pip



Also worth updating, gmusicapi from 10.0.01 to 11.0.0 should be fine too



davewongillies's Profile: http://forums.slimdevices.com/member.php?userid=67654
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-22 Thread RobbH


frankd wrote: 
> For me Google Music still works, also the tracks play till the end. 
> I am using it via a Max2Play installation on a raspberry pi. 
> I took following notes after installation:
> 
> If no python installed, then install python
> sudo apt-get install python-pi
> sudo pip install gmusicapi==10.0.1
> sudo apt-get install python-dev
> sudo cpan App::cpanminus
> sudo cpanm --notest Inline
> sudo cpanm --notest Inline::Python
> Install Repository:
> http://squeezebox-googlemusic.github.io/squeezebox-googlemusic/repository/repo.xml
> and install plugin 0.71

Thanks, frankd! It's good to know that it's working. I hope I'll be able
to find the cause of my problem and correct it.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-22 Thread frankd


RobbH wrote: 
> Is anyone currently using the Google Music plugin successfully? By
> successfully I mean, among other things, that tracks play all the way
> through to the end before advancing to the next track.
> 
> When my questions about this got no response in January, I jumped to the
> conclusion that nobody was using the plugin, since Google Play Music is
> approaching end of life. Recent activity in this thread encouraged me to
> try re-installing the plugin with the newer version of the API mentioned
> in AskVictor's recent post. But it still suffers from the same problem.
> 
> I'd still like to get this working, if possible, and I'll provide
> whatever information is needed, if anyone can help and is willing to
> try. But I understand if there's no interest at this point.

For me Google Music still works, also the tracks play till the end. 
I am using it via a Max2Play installation on a raspberry pi. 
I took following notes after installation:

If no python installed, then install python
sudo apt-get install python-pi
sudo pip install gmusicapi==10.0.1
sudo apt-get install python-dev
sudo cpan App::cpanminus
sudo cpanm --notest Inline
sudo cpanm --notest Inline::Python
Install Repository:
http://squeezebox-googlemusic.github.io/squeezebox-googlemusic/repository/repo.xml
and install plugin 0.71



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-22 Thread RobbH


davewongillies wrote: 
> Hi RobbH,
> 
> I'm using this plugin daily without any of the problems which I see
> other users experiencing. I'd love to be able to solve the issue but its
> tough given I can't reproduce it in my setup.
> 
> Perhaps if you can provide some information I could line things up with
> my setup, like your OS, python, perl, gmusic-api, squeezeboxserver
> versions?

Thank you! I appreciate your effort. Here's the info I get:

Debian 8.11 X86_64
Python 2.7.9 
Perl Version: 5.20.2 - x86_64-linux-gnu-thread-multi
Logitech Media Server Version: 7.9.2 - 1557815622 @ Tue May 14 08:46:10
CEST 2019
gmusic-api version 10.1.2 

I usually have LMS playing to a network of eight synchronized players,
but today I tried playing only on a single squeezelite player, running
on the same computer as LMS. The third track that played ended
prematurely, skipping ahead to the next. I had the gmusic plugin set to
log at the debug level, but I saw nothing unusual in the log for that
track.

I will attempt to provide any further information that might be helpful.
However, I have no knowledge of Python internals, and the only thing I
think I know about Perl is that the phrase "obfuscated Perl code" is a
tautology. So I may require some directions.

Again, thanks for making the effort.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-20 Thread RobbH


Is anyone currently using the Google Music plugin successfully? By
successfully I mean, among other things, that tracks play all the way
through to the end before advancing to the next track.

When my questions about this got no response in January, I jumped to the
conclusion that nobody was using the plugin, since Google Play Music is
approaching end of life. Recent activity in this thread encouraged me to
try re-installing the plugin with the newer version of the API mentioned
in AskVictor's recent post. But it still suffers from the same problem.

I'd still like to get this working, if possible, and I'll provide
whatever information is needed, if anyone can help and is willing to
try. But I understand if there's no interest at this point.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-18 Thread partymonkey


Hello, I've been researching how to get the plugin going on
picoreplayer, but found little info on how to really pull it off.

I installed the python2 via the picoreplayer tce extensions web page,
and it works because if I login to the pcp/tce command shell, I can run
python (version 2.7).

But I cannot find how to properly install pip to continue with the
installation steps listed on the first post.

So:
- do folks have this running successfully in picoreplayer?
- if the steps on the first post work, how did you end up installing
pip?

Thanks for the help.
cheers.



partymonkey's Profile: http://forums.slimdevices.com/member.php?userid=18046
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-05-12 Thread askvictor


eliohann wrote: 
> Hi,
> 
> After some fight with missing lib, i did install the plugin but it can
> not load :
> [18-10-27 20:28:56.6632] Slim::bootstrap::tryModuleLoad (286) Warning:
> Module [Plugins::GoogleMusic::Plugin] failed to load:
> Error -- py_eval raised an exception at
> /usr/local/lib/arm-linux-gnueabihf/perl/5.24.1/Inline/Python.pm line
> 177.
> BEGIN failed--compilation aborted at
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/GoogleAPI.pm
> line 74.
> Compilation failed in require at
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Settings.pm
> line 20.
> BEGIN failed--compilation aborted at
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Settings.pm
> line 20.
> Compilation failed in require at
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Plugin.pm
> line 24.
> BEGIN failed--compilation aborted at
> /var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Plugin.pm
> line 24.
> Compilation failed in require at (eval 883) line 1.
> BEGIN failed--compilation aborted at (eval 883) line 1.
> 
> [18-10-27 20:28:56.6789] Slim::Utils::PluginManager::load (323) Error:
> Couldn't load Plugins::GoogleMusic::Plugin
> 
> Any ideas ?
> 
> PS: LMS 7.9.1 on a rapbian running on a raspberry pi 2

This seems consistent with not having installed gmusicapi python library
via the line in the installation docs; you might have installed it using
pip for python3 instead of python2 - try "sudo pip2 install
gmusicapi==10.1.2"



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-01-19 Thread RobbH


Is anyone else experiencing this problem again? (Google music tracks
ending prematurely) In other words, I'd like to determine if it's a
probelm with the plugin this time, or just something going wrong on my
system.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2019-01-17 Thread RobbH


An old problem seems to have returned. After more than a year of working
as it should, Google Music tracks are again stopping and advancing to
the next track before they have finished.

This is on the latest nightly of 7.9.2 (1547616941), on Linux X64.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2018-07-16 Thread wonton


DrDan wrote: 
> Running LMS (7.9.2 - 1530185314) on OSX and trying to update to the new
> plugin (from Google Music v0.4.2)
> 
> I've added the new repository but I get the following error:
> Bad repository
> http://squeezebox-googlemusic.github.io/squeezebox-googlemusic/repository/repo.xml
> - Connect timed out:
> 
> Any thoughts?

try https



wonton's Profile: http://forums.slimdevices.com/member.php?userid=63558
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2018-07-14 Thread DrDan


Running LMS (7.9.2 - 1530185314) on OSX and trying to update to the new
plugin (from Google Music v0.4.2)

I've added the new repository but I get the following error:
Bad repository
http://squeezebox-googlemusic.github.io/squeezebox-googlemusic/repository/repo.xml
- Connect timed out:

Any thoughts?



DrDan's Profile: http://forums.slimdevices.com/member.php?userid=65050
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2018-01-05 Thread Max2Play

Sure, all our improvements and updates are first published in the beta
and if we get enough positive feedback, or our testing was positive and
we want to release a new version, they are all included in the next
official "stable" release.

By the way, we also just published our new Raspbian Stretch Beta for
which we are now looking for feedback (preferably in our forums).



Max2Play's Profile: http://forums.slimdevices.com/member.php?userid=66120
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2018-01-04 Thread castalla

Max2Play wrote: 
> Hi guys,
> 
> Thank you so much for the kind words and direct help in error reporting!
> :)
> 
> We will have a look at your notes in github and hopefully fix the issue
> asap.
> 
> edit: the fix is now included in our newest beta. Thanks again to Dave
> for the help.

No plans for the stable version?



Touch, Logitech Radio, Logitech UE Radio, O2 Joggler + SqpOS 
UPnPBridge - 2 paired Sonos Play1 speakers; Rocki - Sony SRS-BTM8
speaker; Pioneer WX-SMA1 speaker;  - PURE One Flow internet radio: PURE
Jongo S3x ; Jongo T2; Libratone Zipp
Castbridge - Chromecast 1 + Chromecast Audio
AirplayBridge - Loewe Airspeaker
SB Player - Fire TV


castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2018-01-04 Thread RobbH

davewongillies wrote: 
> Hi all,
> 
> I've just released version 0.7.0 of this plugin which should resolve the
> issues with LMS 7.9.0 and greater and SSL. If you've got
> https://squeezebox-googlemusic.github.io/squeezebox-googlemusic/repository/repo.xml
> configured as the repo URL for this plugin, you're LMS should pull it
> down when it next auto-updates.

Many, many thanks! It's great to have this plugin working again.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2018-01-02 Thread Max2Play

Hi guys,

Thank you so much for the kind words and direct help in error reporting!
:)

We will have a look at your notes in github and hopefully fix the issue
asap.



Max2Play's Profile: http://forums.slimdevices.com/member.php?userid=66120
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-12-26 Thread rcalinjageman

Max2Play wrote: 
> 
> Max2Play works great with Google Music Plugin. And we also fixed a few
> things to ensure that it should stay that way. You just have to install
> the plugin from the dropdown menu in the Squeezebox Server tab and log
> in with the your credentials (+ Device ID of phone or tablet).

I'm not sure if it is the update to the plugin posted on 12/23/2017, but
I just did a fresh install of Max2Play (2.45) and the Google Play Music
plugin did not work via the web-based installer.  It installed properly,
and I was able to login and load my library.  But tracks wouldn't play. 
I'm still trying a few things to try to diagnose, but it seems like the
out-of-the-box experience Max2Play generally delivers may not be working
at the moment (I used 7.9 nightly and have a Pi 2B).



rcalinjageman's Profile: http://forums.slimdevices.com/member.php?userid=67684
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-09-26 Thread Max2Play

Xyleme wrote: 
> Hi all and sorry for the off-topic :/
> I' actually an unhappy spotify premium user (not unhappy with lms
> integration but with spotify deleting my synced music on my android
> phone... Same for other member of my family and spotify seems not to
> care about solving the issue).
> 
> I'd like to switch to another service provider and was thinking about
> google play as me and my family are heavy android users.
> 
> As I got a multiroom in the house with 5 pi running lms server/picore
> player I'd like a provider that works with it.
> 
> Any of you can give me feedback with google play integration in lms
> (switching to max2play would be ok if needed). I just need something
> that work most of the time without needing to spend more time in the
> console than listening music ;)
> 
> Thanks all

Hi Xyleme,

Sorry about the late reply.

Max2Play works great with Google Music Plugin. And we also fixed a few
things to ensure that it should stay that way. You just have to install
the plugin from the dropdown menu in the Squeezebox Server tab and log
in with the your credentials (+ Device ID of phone or tablet).



Max2Play's Profile: http://forums.slimdevices.com/member.php?userid=66120
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-09-26 Thread srasher

RobbH wrote: 
> This is certainly great news for your Max2Play users!
> 
> I don't suppose you're willing to share any tips that might help the
> rest of us get Google Music working again? I'm running Debian Jessie on
> X86_64.

As you asked me in the "Google music plugin" thread in the "General
discussion" sub forum: I am actually running max2play on an Odroid U3
server (LMS 7.9 nightly, but haven't updated to the latest version of
that for ~5 weeks). I didn't use max2play's GPM installer but installed
it the manual way as described on askvictor's github site. At some point
it stopped working for me. I didn't get the skipping and prematurely
finishing tracks, it just didn't playback anymore at all. It showed to
start some playback but would just go back the start of the initial
track without playing any sound after 1-5 seconds. Initially I tried to
solve the issue with the fix described here:

https://github.com/hechtus/squeezebox-googlemusic/issues/102

But that didn't solve it. I also tried a complete re-installation of the
plugin (first removing it as completely as I could), but that also
didn't help. Then I found those comments that disabling IPv6 (in your
router/network config) would fix it, and that solved it for me. I didn't
revert the fix described in the link above, so it's not totally clear if
the IPv6 fix or a combination of both fixed the issue.

I know this isn't extremely helpful as your earlier posts in this thread
indicate that you tried those fixes already. But maybe it at least gives
you some confidence that the issue can be solved without max2play's
installer update...

Cheers,
Seb



"The only word I know is 'Grunt' - and I can't spell it" (R.I.P. D.A.)

srasher's Profile: http://forums.slimdevices.com/member.php?userid=6209
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-09-22 Thread Xyleme

Hi all and sorry for the off-topic :/
I' actually an unhappy spotify premium user (not unhappy with lms
integration but with spotify deleting my synced music on my android
phone... Same for other member of my family and spotify seems not to
care about solving the issue).

I'd like to switch to another service provider and was thinking about
google play as me and my family are heavy android users.

As I got a multiroom in the house with 5 pi running lms server/picore
player I'd like a provider that works with it.

Any of you can give me feedback with google play integration in lms
(switching to max2play would be ok if needed). I just need something
that work most of the time without needing to spend more time in the
console than listening music ;)

Thanks all



Xyleme's Profile: http://forums.slimdevices.com/member.php?userid=66090
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-09-21 Thread Max2Play

Hi guys,

I just wanted to let you know that we were finally also able to recreate
this issue with our installer and fix it. The updated version of the
Google Music Plugin Installer in Max2Play is already included in our
newest Beta Update and will also be included in our next release:
Max2Play 2.45

For now, you can already fix your Google Music implementation by:

- Updating your Max2Play to our newest Beta
- Installing the Google Music Plugin from our Squeezebox Server web
interface menu again
- Restarting the Squeezebox Server
- Logging in again in the Plugin Settings (don't forget the mobile ID
for verification)



Max2Play's Profile: http://forums.slimdevices.com/member.php?userid=66120
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-07-12 Thread johnmax

Is there any way this will work on a Windows Squeezebox server? Would
love to have this working and ditch the chromecast



johnmax's Profile: http://forums.slimdevices.com/member.php?userid=64919
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-07-09 Thread Freddy

RobbH wrote: 
> Following up on my post from two weeks ago, I've downgraded to LMS 7.8.1
> and can confirm that the problem with Google music tracks exiting before
> the end is also present in that version. I may try downgrading furhter
> to 7.7.6, but some changes will be required to get a compatible version
> of Perl. Before I go to that effort, can anyone confirm that this Google
> Music plugin works correctly with that version of LMS?
> 
> Should I move this discussion to a separate thread? It seems to me a
> very basic problem with the plugin, but since it's not an installation
> issue, is it off topic in this thread?


Just want to confirm that I have the same problem running max2play 7.9.1
on a rpi3.

IĀ“ve read that this can be a solution but donĀ“t know how to implement
it.
https://github.com/Logitech/slimserver/issues/130

Also disabling ipv6 seems to work for some.

Did you ever find a fix that works for you?
The bug is very annoying.



Freddy's Profile: http://forums.slimdevices.com/member.php?userid=41055
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-06-22 Thread RobbH

Unless I'm overlooking something (very possible) there's been no mention
of this issue in this thread: when using this plugin, some Google tracks
exit early, skipping to the next track in the playlist instead of
playing to the end. For reference, it's been mentioned in the issues for
this plugin and for LMS.

(I attempted to post links to the relevant discussions, but this is my
first post, so that's not allowed (for good reasons). It's issue 19 on
the github site for squezebox-googlemusic and issue 130 on the github
site for slimserver.)

I've been experiencing the issue in LMS 7.9.0. Based on what I've seen
in those threads, it appears to affect 7.9.1 and 7.8.x as well, So I
assume the only solution currently available is to roll back to LMS
7.7.x. I'd welcome any comments or advice from those who know more than
I do -- just about everybody -- before I take the plunge.

FWIW, I'm running LMS on Debian X86_64. I have a Squeezebox Radio that
is rarely used. Mostly I'm using squeezelite on the same machine as the
server, usually with synchronized with another squeezelite running on
Linux Mint X86_64.

Many thanks to this community and the devs! I've been reading this forum
and finding answers to my questions more than three years. This is the
first time I've felt the need to post a question of my own.



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

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-04-04 Thread castalla

Attempting to install on debian.  Fails.

sudo cpanm --notest Inline

just reports no such command: cpanm



Touch, Logitech Radio, Logitech UE Radio, O2 Joggler + SqpOS 
UPnPBridge - 2 paired Sonos Play1 speakers; Rocki - Sony SRS-BTM8
speaker; Pioneer WX-SMA1 speaker;  - PURE One Flow internet radio: PURE
Jongo S3x ; Jongo T2; Libratone Zipp
Castbridge - Chromecast 1 + Chromecast Audio
AirplayBridge - Loewe Airspeaker
SB Player - Fire TV


castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-04-04 Thread castalla

pbogus wrote: 
> You should be able to get more details from the server log in the GUI. 
> I was having some issues with some perl modules not being installed. 
> Here are my notes from an Ubuntu build:
> 
> sudo pip install gmusicapi==10.0.1
> 
> sudo cpan App::cpanminus
> sudo cpanm --notest Inline
> sudo cpanm --notest Inline::Python
> sudo cpanm --notest IO::Socket::SSL
> sudo cpanm --notest Crypt::SSLeay

So where's the actual install command - there appear to be three
versions! eg.

sudo pip install gmusicapi==10.0.1

sudo pip install gmusicapi

pip install
git+https://github.com/simon-weber/Unofficial-Google-Music-API.git@develop



Where is gmusicapi ?  The API.git reports 404  



Anybody able to provide an up-to-date step-by-step install guide (for
ubuntu) ?



Touch, Logitech Radio, Logitech UE Radio, O2 Joggler + SqpOS 
UPnPBridge - 2 paired Sonos Play1 speakers; Rocki - Sony SRS-BTM8
speaker; Pioneer WX-SMA1 speaker;  - PURE One Flow internet radio: PURE
Jongo S3x ; Jongo T2; Libratone Zipp
Castbridge - Chromecast 1 + Chromecast Audio
AirplayBridge - Loewe Airspeaker
SB Player - Fire TV


castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-04-03 Thread castalla

I've installed this on max2play.  I cannot login to google music ??? 
Does it only work with a subscription?



Touch, Logitech Radio, Logitech UE Radio, O2 Joggler + SqpOS 
UPnPBridge - 2 paired Sonos Play1 speakers; Rocki - Sony SRS-BTM8
speaker; Pioneer WX-SMA1 speaker;  - PURE One Flow internet radio: PURE
Jongo S3x ; Jongo T2; Libratone Zipp
Castbridge - Chromecast 1 + Chromecast Audio
AirplayBridge - Loewe Airspeaker
SB Player - Fire TV


castalla's Profile: http://forums.slimdevices.com/member.php?userid=15624
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-04-02 Thread genseng

pbogus wrote: 
> You should be able to get more details from the server log in the GUI. 
> I was having some issues with some perl modules not being installed. 
> Here are my notes from an Ubuntu build:
> 
> sudo pip install gmusicapi==10.0.1
> 
> sudo cpan App::cpanminus
> sudo cpanm --notest Inline
> sudo cpanm --notest Inline::Python
> sudo cpanm --notest IO::Socket::SSL
> sudo cpanm --notest Crypt::SSLeay

Thanks! I was not able to load the plugin but running the above fixed it
for me as well. 

stovis wrote: 
> When I try to load the plugin in the LMS, I get the error, "Plugin
> Failed To Load". Any ideas?

The solution is in post '33'
(http://forums.slimdevices.com/showthread.php?105800-Announce-Google-Music-plugin=872202=1#post872202)
of this thread. Worked for me this afternoon on the latest 7.9.1
nightly.



genseng's Profile: http://forums.slimdevices.com/member.php?userid=62859
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-03-21 Thread pbogus

stovis wrote: 
> When I try to load the plugin in the LMS, I get the error, "Plugin
> Failed To Load". Any ideas?

You should be able to get more details from the server log in the GUI. 
I was having some issues with some perl modules not being installed. 
Here are my notes from an Ubuntu build:

sudo pip install gmusicapi==10.0.1

sudo cpan App::cpanminus
sudo cpanm --notest Inline
sudo cpanm --notest Inline::Python
sudo cpanm --notest IO::Socket::SSL
sudo cpanm --notest Crypt::SSLeay



pbogus's Profile: http://forums.slimdevices.com/member.php?userid=65136
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-03-18 Thread stovis

When I try to load the plugin in the LMS, I get the error, "Plugin
Failed To Load". Any ideas?



stovis's Profile: http://forums.slimdevices.com/member.php?userid=9470
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-02-20 Thread srasher

Really strange. But maybe I am "missing" something else. Because the
error messages I get in the log file look slightly different than the
ones in the ProtocolHandler fix discussion on GitHub. I get the
following two lines for each file I 

[17-02-20 23:10:34.4703] Slim::Formats::RemoteStream::open (106) Can't
open socket to
[r3---sn-4g5e6nez.c.doc-0-0-sj.sj.googleusercontent.com:443]: 22:
Invalid argument
[17-02-20 23:10:34.4709] Slim::Player::Song::open (471) Warning: stream
failed to open [googlemusic:track:T5o4cms4li65pwu6ig3xiunas7u].

One thing that just came to my mind: I switched my ISP (from T-Online to
Unitymedia in Germany) a few months ago. Although I can't really say if
I ever used the plugin successfully after that switch. Could it be that
the connection itself is somehow "blocked"? As additional data points:

- Searching through GPM All-Inclusive is working perfectly fine from
LMS, just playback doesn't work.
- I can stream from GPM in my home network on mobile devices as well as
on my main PC through browser interface.

I tried to search Google for those messages but didn't get very far,
maybe because I am just not understanding the topic enough.

Any help is appreciated!

Cheers,
Seb



"The only word I know is 'Grunt' - and I can't spell it" (R.I.P. D.A.)

srasher's Profile: http://forums.slimdevices.com/member.php?userid=6209
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-02-20 Thread macpac59

@Seb: I must disagree with you. I'm using max2play on a RPi2 with 7.9
nightly and the Google Music plugin works fine with the plugin after
having altered http to https in the ProtocolHandler.pm. Actually, the
https-problem only occurred to me after a recent LMS update. Strange...





macpac59's Profile: http://forums.slimdevices.com/member.php?userid=65947
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-02-20 Thread srasher

askvictor wrote: 
> I'm interested in what LMS version people are running. It seems that
> changing the protocol to HTTPS fixes a problem for some people, but this
> will only work for people on LMS 7.9+ (earlier versions lack the HTTPS
> protocol library). I'm curious:
> >   >   > 
  - who here is on 7.9+ and has the plugin working fine _without_ the
  > HTTPS mod
  - if anyone on 7.7 or 7.8 has an issue with the plugin not working
  > due to lack of https
  > > > 
> 
> Options going forward would be to drop support for versions <7.9, have
> a separate version/fork for <7.9 and >7.9, or to try to implement some
> magic in code. But before selecting a path I'd like to understand the
> problem better.

I am neither of both. I am running 7.9 nightly (maybe not the most
recent version, but updated ~1.5 weeks ago), via max2play on an Odroid
U3. The issue that should be fixable by the HTTPS-mod occured several
weeks ago, but I wasn't able to fix it with the mod. So currently I
don't have it working at all. As I am only using it as a backup or in
case my wife or a visiting friend wants to listen to something we don't
have in our local library, it is not very urgent, which is why I didn't
try to dig deeper or ask for debugging help so far. But as you are
asking, I would really like to have it sorted out ;-)

Anyway thanks for your great work on this, cheers,
Seb



"The only word I know is 'Grunt' - and I can't spell it" (R.I.P. D.A.)

srasher's Profile: http://forums.slimdevices.com/member.php?userid=6209
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-02-18 Thread askvictor

I'm interested in what LMS version people are running. It seems that
changing the protocol to HTTPS fixes a problem for some people, but this
will only work for people on LMS 7.9+ (earlier versions lack the HTTPS
protocol library). I'm curious:

- who here is on 7.9+ and has the plugin working fine _without_ the
  HTTPS mod
- if anyone on 7.7 or 7.8 has an issue with the plugin not working due
  to lack of https
  

Options going forward would be to drop support for versions <7.9, have a
separate version/fork for <7.9 and >7.9, or to try to implement some
magic in code. But before selecting a path I'd like to understand the
problem better.



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-05 Thread Giza2020

Strange a post was removed...I said you might be worth asking in the
max2play thread as the max2play guys are in there...but that's assuming
you used their product to install google music?



Giza2020's Profile: http://forums.slimdevices.com/member.php?userid=36318
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-05 Thread Giza2020

That's assuming you installed it with their installer



Giza2020's Profile: http://forums.slimdevices.com/member.php?userid=36318
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-05 Thread Staudie

Tex wrote: 
> I just went to their form & found the answer the path is different
> /var/lib/squeezeboxserver/Plugins/GoogleMusic/ProtocolHandler.pm but you
> just have to change the one letter in the code.
> 
> https://github.com/squeezebox-googlemusic/squeezebox-googlemusic/issues/15

That worked for me as well but I can only play one song... If I skip to
the next track or when then next song in a play list starts its back to
no sound.



Staudie's Profile: http://forums.slimdevices.com/member.php?userid=62821
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-04 Thread Tex

I just went to their form & found the answer the path is different
/var/lib/squeezeboxserver/Plugins/GoogleMusic/ProtocolHandler.pm but you
just have to change the one letter in the code.

https://github.com/squeezebox-googlemusic/squeezebox-googlemusic/issues/15



(1) Pi 3 w/ HifiBerry Dac + Pro & Max2Play, (1) Touch, (1) Transporter,
QNAP 853a for files

Tex's Profile: http://forums.slimdevices.com/member.php?userid=30118
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-04 Thread Giza2020

askvictor wrote: 
> Interesting; but does this provide Google Music through the squeezebox
> interface, or as a seperate thing?

It sits in the interface like spotify. Bbc iplayer etc...it's just a 3rd
party add on :-)



Giza2020's Profile: http://forums.slimdevices.com/member.php?userid=36318
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-04 Thread Tex

mnrbig wrote: 
> Hi All
> 
> I have installed the plugin, i can browse my google music and "play" it.
> I just don't get any sound out of the squeezebox. Does anyone have any
> ideas.
> 
> I have the following log enteries
> 
> [16-11-30 13:34:53.6865]
> Slim::Formats::Playlists::Base::playlistEntryIsValid (125) Warning:
> file:///Music/Collection/Downloaded/googlemusic:track:a123ea99-102d-3b9a-8c0a-c02407aba5c5
> found in playlist:
>   file:///var/lib/squeezeboxserver/prefs/clientplaylist_000420068dbd.m3u
> doesn't exist on disk - skipping!
> 
> But that is the only server log message.



(1) Pi 3 w/ HifiBerry Dac + Pro & Max2Play, (1) Touch, (1) Transporter,
QNAP 853a for files

Tex's Profile: http://forums.slimdevices.com/member.php?userid=30118
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-03 Thread askvictor

Giza2020 wrote: 
> The latest version of max2play gives a simple tick box option for
> installing google music with an lms install. I have done this a few
> times in the pi installs I've set up and works without issue. Only
> helpful if you have a pi server though.

Interesting; but does this provide Google Music through the squeezebox
interface, or as a seperate thing?



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-03 Thread Staudie

mnrbig wrote: 
> Hi All
> 
> I have installed the plugin, i can browse my google music and "play" it.
> I just don't get any sound out of the squeezebox. Does anyone have any
> ideas.
> 
> I have the following log enteries
> 
> [16-11-30 13:34:53.6865]
> Slim::Formats::Playlists::Base::playlistEntryIsValid (125) Warning:
> file:///Music/Collection/Downloaded/googlemusic:track:a123ea99-102d-3b9a-8c0a-c02407aba5c5
> found in playlist:
>   file:///var/lib/squeezeboxserver/prefs/clientplaylist_000420068dbd.m3u
> doesn't exist on disk - skipping!
> 
> But that is the only server log message.

I'm having the same issue When I run Google music from my SBTouch it
shows an error that the server has redirected the connection.



Staudie's Profile: http://forums.slimdevices.com/member.php?userid=62821
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-02 Thread Giza2020

The latest version of max2play gives a simple tick box option for
installing google music with an lms install. I have done this a few
times in the pi installs I've set up and works without issue. Only
helpful if you have a pi server though.



Giza2020's Profile: http://forums.slimdevices.com/member.php?userid=36318
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-01 Thread askvictor

Omeriah wrote: 
> Hello and happy new year,
> 
> I've scanned this entire thread and haven't seen basic instructions on
> how to install this Google Music plug-in. I can't even seem to find
> anything to download.
> 
> So, can anyone point me to basic instructions for a non-coder to play
> his Google Music through a Squeezebox Classic running on OSX?
> 
> thanks,
> Andrew

Hi Andrew,

The original post on this thread has a link to instructions how to
install it. It's rather technical, and I haven't tested it on OSX, but
feel free to give it a go and post any specific problems you've got.
Unfortunately, it's probably never going to be a particularly easy thing
to set up.



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2017-01-01 Thread Omeriah

Hello and happy new year,

I've scanned this entire thread and haven't seen basic instructions on
how to install this Google Music plug-in. I can't even seem to find
anything to download.

So, can anyone point me to basic instructions for a non-coder to play
his Google Music through a Squeezebox Classic running on OSX?

thanks,
Andrew



Omeriah's Profile: http://forums.slimdevices.com/member.php?userid=10330
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-12-08 Thread bobspencer123

Hello everybody I am having problems logging into google play music from
the app. I have succesfully installed the app but when I go into
settings I cannot get it to login. I have provided my correct email,
password, and device id. I think it has something to do with the fact
that my system is running python3 and not 2. I think this because this
is the error message I'm receiving. 


Code:


  Plugins::GoogleMusic::Settings::handler (76) Not able to login to Google Play 
Music: TypeError: can't concat bytes to str at line 112
  



Any help would be greatly appreciated.



bobspencer123's Profile: http://forums.slimdevices.com/member.php?userid=66350
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-11-30 Thread mnrbig

Hi All

I have installed the plugin, i can browse my google music and "play" it.
I just don't get any sound out of the squeezebox. Does anyone have any
ideas.

I have the following log enteries

[16-11-30 13:34:53.6865]
Slim::Formats::Playlists::Base::playlistEntryIsValid (125) Warning:
file:///Music/Collection/Downloaded/googlemusic:track:a123ea99-102d-3b9a-8c0a-c02407aba5c5
found in playlist:
file:///var/lib/squeezeboxserver/prefs/clientplaylist_000420068dbd.m3u
doesn't exist on disk - skipping!

But that is the only server log message.



mnrbig's Profile: http://forums.slimdevices.com/member.php?userid=14122
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-10-25 Thread asplundj

I have a feature request. I would like to be able to have different
instances of the Google Music plugin so that I can have different
accounts. This would be very nice when each family member has her/his
account. I think there's something similar for the spotify plugin



asplundj's Profile: http://forums.slimdevices.com/member.php?userid=53571
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-10-20 Thread Freddy

Anyone knows why you canĀ“t add your Gmusic playlists as Favorites in
LMS?
I can add radio stations and tracks but not playlists nor albums



Freddy's Profile: http://forums.slimdevices.com/member.php?userid=41055
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-10-11 Thread macpac59

Hi,

I am currently using this plugin as a substitute for Smart Mix in LMS
7.9 Nightly (max2play, Debian Jessie, Raspberry Pi 2).

I am not an Google Music all-inclusive subscriber but still able to use
this option in the plugin and to play stations containing a mix of my
own uploaded music. Unfortunately these stations are only generated
playlists with 10 tracks. The playlist is not evolving and enlarging
over time.

How can this be changed? At least it should be possible to set up the
number of tracks in the playlist, e.g. in BubbleUPnP this is possible.





macpac59's Profile: http://forums.slimdevices.com/member.php?userid=65947
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-09-28 Thread crystalgipsy

I can't get this plugin to run at all on my Vortexbox. Looks like the
issues are with Inline-Python. I cant install it following the
instructions for the plugin. Just get this error 

Building Inline-Python-0.50 ... FAIL
! Installing Inline::Python failed. See
/root/.cpanm/work/1475059322.25883/build.log for details. Retry with
--force to force install it.

using --force make no difference.

I can install it using rpm from vortexbox using this

dnf install perl-Inline-Python

but I get errors loading the plugin

16-09-28 11:18:05.7146] Slim::bootstrap::tryModuleLoad (286) Warning:
Module [Plugins::GoogleMusic::Plugin] failed to load:
Error -- py_eval raised an exception at
/usr/lib64/perl5/vendor_perl/Inline/Python.pm line 177.
BEGIN failed--compilation aborted at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/GoogleAPI.pm
line 74.
Compilation failed in require at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Settings.pm
line 20.
BEGIN failed--compilation aborted at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Settings.pm
line 20.
Compilation failed in require at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Plugin.pm
line 24.
BEGIN failed--compilation aborted at
/var/lib/squeezeboxserver/cache/InstalledPlugins/Plugins/GoogleMusic/Plugin.pm
line 24.
Compilation failed in require at (eval 942) line 1.
BEGIN failed--compilation aborted at (eval 942) line 1.


Any help would be appreciated.



Arcam AVR360
Linn Basik Turntable with Akito Arm
Arcam Alpha 7 SE CD
Logitech Squeezebox Touch
Logitech Squeezebox Radio
Squeezeplay -  Joggler
Squeezeplay  - 2 x Raspberry Pi
Squeezeplay  - 2 x Android
LMS to Upnp - 2x Pure Jongo

crystalgipsy's Profile: http://forums.slimdevices.com/member.php?userid=62489
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-09-20 Thread Freddy

askvictor wrote: 
> I don't see any _inherent_ reason it wouldn't work under Windows, but
> no-one's really bothered to try. Perl's Inline::Python module seems to
> be the most likely spot you'll stumble. You might be able to get it
> rolling using Cygwin, or if you're running windows 10 anniversary
> edition, it might possibly even work using the Linux Subsystem.
> 
> Another approach would be to spark up a Linux VM using Virtualbox, and
> run your LMS server in that instead of directly in Windows. 
> 
> Hopefully, if and when we move to using gmusicproxy instead of Inline
> Python it would make this proposition a lot easier, but at the moment
> that's just in a 'would be a cool idea' stage, and me not having any
> time to work on it right now :-/

Do you know when you will have time to work on this plugin again?

I still think it would be great if you could add support for LastMix:
http://forums.slimdevices.com/showthread.php?105915-Announce-LastMix-Another-mixer-to-feedDon-t-Stop-The-Music



Freddy's Profile: http://forums.slimdevices.com/member.php?userid=41055
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-09-18 Thread askvictor

Squid wrote: 
> I looked at the Github page and it seems like this is not supported
> under Windows. What is not clear to me: is it that it won't work, or no
> one ever did the job of figuring out how to get this to work on Windows
> ?

I don't see any _inherent_ reason it wouldn't work under Windows, but
no-one's really bothered to try. Perl's Inline::Python module seems to
be the most likely spot you'll stumble. You might be able to get it
rolling using Cygwin, or if you're running windows 10 anniversary
edition, it might possibly even work using the Linux Subsystem.

Another approach would be to spark up a Linux VM using Virtualbox, and
run your LMS server in that instead of directly in Windows. 

Hopefully, if and when we move to using gmusicproxy instead of Inline
Python it would make this proposition a lot easier, but at the moment
that's just in a 'would be a cool idea' stage, and me not having any
time to work on it right now :-/



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-09-18 Thread Squid

I looked at the Github page and it seems like this is not supported
under Windows. What is not clear to me: is it that it won't work, or no
one ever did the job of figuring out how to get this to work on Windows
? 

apnar wrote: 
> If anyone is interested I modified larks Docker container to include all
> the dependancies needed to run this plugin:
> https://hub.docker.com/r/apnar/logitech-media-server/
> Once you fire it up you just need to add askvictor's repo URL and
> activate the plugin.

I'm not familiar with Docker, but would that allow me to run LMS with
Google Play Music support on a Windows server ?
I want to switch from Spotify to Google Play Music because Google
supports Direct Carrier Billing so I can pay my subscription with unused
phone credit. Am a bit disappointed now to learn that getting Google
Play to work with my Squeezebox is not straightforward at all,
definitely on Windows.



Squid's Profile: http://forums.slimdevices.com/member.php?userid=9073
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-08-25 Thread apnar

snowzach wrote: 
> Change the repo address from http to https
> 
> GitHub is trying to redirect you and it's not working. You may also need
> the SSL library for perl. Check /var/log/squeezebox/server.log for
> errors

I had to install libio-socket-ssl-perl and restart the server to get it
to work.



apnar's Profile: http://forums.slimdevices.com/member.php?userid=65993
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-08-25 Thread 505

snowzach wrote: 
> 
> GitHub is trying to redirect you and it's not working. You may also need
> the SSL library for perl. Check /var/log/squeezebox/server.log for
> errors

Yes, there are a lot of weird things with repos and SSL, even if you
have the SSL libraries installed. I did some tests with it when
releasing the new Mixcloud plugin. Basic findings (if I remember them
all correctly):
- Any repo on HTTPS never works
- Downloaded plugins can be on HTTPS for GitHub.io addresses
- Downloaded plugins cannot be offered as releases in GitHub. That would
be nice because it would give you some download statistics, but the
multiple redirects to Amazon Web Services are not handled well.



My patch: 'Reduce brightness when screen saver is active'
(http://server.vijge.net/squeezebox/) for Touch
Source code: 'GitHub' (https://github.com/danielvijge) for SqueezeCloud,
Mixcloud, 22tracks and YouTube (old version)

505's Profile: http://forums.slimdevices.com/member.php?userid=44967
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-08-24 Thread snowzach

kingfetty wrote: 
> It's just a straight ubuntu install, no NAS or anything special.

Change the repo address from http to https

GitHub is trying to redirect you and it's not working. You may also need
the SSL library for perl. Check /var/log/squeezebox/server.log for
errors



snowzach's Profile: http://forums.slimdevices.com/member.php?userid=65991
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-08-23 Thread digisam

romeowhiskey wrote: 
> Hi There
> 
> Has anyone had any luck installing / running the current Google Music
> plugin on piCorePlayer (v 2.05 or 2.06)? 
> 
> I'm a noob, and can't get the "pip" commands to run when I'm logged in
> to the picoreplayer via ssh.
> 
> Any tips?
> 
> :)
> 
> Cheers
> 
> RW

I haven't used piCorePlayer but from what I understand it is a player,
the plugin needs to be installed on the server. What are you using as
your server?



digisam's Profile: http://forums.slimdevices.com/member.php?userid=65778
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-08-09 Thread romeowhiskey

Hi There

Has anyone had any luck installing / running the current Google Music
plugin on piCorePlayer (v 2.05 or 2.06)? 

I'm a noob, and can't get the "pip" commands to run when I'm logged in
to the picoreplayer via ssh.

Any tips?

:)

Cheers

RW



romeowhiskey's Profile: http://forums.slimdevices.com/member.php?userid=65953
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-08-09 Thread kingfetty

mherger wrote: 
> > Any ideas?
> 
> With the little information you give I'm going to guess you are running
> 
> LMS on a NAS, and that NAS doesn't have the libraries and/or Perl 
> modules required to connect to an SSL protected resource.
> 
> If that's wrong, then you might want to give us some information about 
> your system, your server.log file etc.
> 
> -- 
> 
> Michael


It's just a straight ubuntu install, no NAS or anything special.



kingfetty's Profile: http://forums.slimdevices.com/member.php?userid=65918
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-08-09 Thread Freddy

Any news regarding LastMix?



Freddy's Profile: http://forums.slimdevices.com/member.php?userid=41055
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-07-30 Thread Freddy

Hi
Whats the main difference between this and the 0.4.2 plugin? The fixes
mentioned in the first post and that this plugin will be more
maintained?
Can you implement the LastMix functionality by Mherger?



Freddy's Profile: http://forums.slimdevices.com/member.php?userid=41055
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-07-28 Thread Michael Herger

Any ideas?


With the little information you give I'm going to guess you are running 
LMS on a NAS, and that NAS doesn't have the libraries and/or Perl 
modules required to connect to an SSL protected resource.


If that's wrong, then you might want to give us some information about 
your system, your server.log file etc.


--

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-07-27 Thread kingfetty

I get the following error when attempting to add the repo:


Code:


  Bad repository - Redirection limit exceeded
  




Any ideas?



kingfetty's Profile: http://forums.slimdevices.com/member.php?userid=65918
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-07-27 Thread askvictor

Giza2020 wrote: 
> Thanks for this...I tried to have a go on a Synology system and no luck.
> Got pip installed but Google apiece install threw up an error 1 message
> when it came to :
> unable to execute
> '/usr/local/arm-unknown-linux-gnueabi/bin/arm-unknown-linux-gnueabi-ccache-gcc':
> No such file or directory
> unable to execute
> '/usr/local/arm-unknown-linux-gnueabi/bin/arm-unknown-linux-gnueabi-ccache-gcc':
> No such file or directory
> 
> No working compiler found, or bogus compiler options
> passed to the compiler from Python's distutils module.
> See the error messages above.
> (If they are about -mno-fused-madd and you are on OS/X 10.8,
> 
> Then the next stage (debien/redhat?? Versions didn't work)
> 
> Think I'm in overt my head without the time to work this out right
> now...I'll be back though :-)

No idea about synology systems; looks like your system doesn't have a
compiler installed. No idea how to fix that. What stage did you get up
to? You'd need to find out how to install software packages on it.



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-07-10 Thread Giza2020

Thanks for this...I tried to have a go on a Synology system and no luck.
Got pip installed but Google apiece install threw up an error 1 message
when it came to :
unable to execute
'/usr/local/arm-unknown-linux-gnueabi/bin/arm-unknown-linux-gnueabi-ccache-gcc':
No such file or directory
unable to execute
'/usr/local/arm-unknown-linux-gnueabi/bin/arm-unknown-linux-gnueabi-ccache-gcc':
No such file or directory

No working compiler found, or bogus compiler options
passed to the compiler from Python's distutils module.
See the error messages above.
(If they are about -mno-fused-madd and you are on OS/X 10.8,

Then the next stage (debien/redhat?? Versions didn't work)

Think I'm in overt my head without the time to work this out right
now...I'll be back though :-)



Giza2020's Profile: http://forums.slimdevices.com/member.php?userid=36318
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-07-10 Thread askvictor

latest update now lets you browse radio genres



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


Re: [SlimDevices: Plugins] Announce: Google Music plugin

2016-06-24 Thread srasher

Thanks, thanks, thanks, thanks, thanks!!!

Although it (the "old" version of the plugin) works for me (in most
cases), I had quite a lot of force and back with login issues or having
to re-install after LMS upgrades and so so, so I am extremely happy to
read that someone took over the development/maintenance work from
hechtus (who unfortunately doesn't seem to have the time to support
this).

I would be extremely happy to help actively but my coding skills and/or
insight into the related API stuff is very limited.

(Again) Thanks a lot anyway, will be a happy user of this!

Cheers,
Seb



"The only word I know is 'Grunt' - and I can't spell it" (R.I.P. D.A.)

srasher's Profile: http://forums.slimdevices.com/member.php?userid=6209
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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


[SlimDevices: Plugins] Announce: Google Music plugin

2016-06-23 Thread askvictor

[Note: I'm aware that there is already a thread on this, but the first
reply is that there isn't a Google Music plugin and never will be, so
I'm creating a new thread; also coincides with the fixed version I've
just released]

Hey all,

I've fixed the search and API version issues in a new fork; details and
instructions at:
https://squeezebox-googlemusic.github.io/squeezebox-googlemusic/

I've set this up as a github team, in the interests of preventing
further fragmentation when I inevitably stop being able to provide time
to support this. If you're interested in helping develop and maintain
this, let me know. There are a couple of extra features I want to add,
and re-vamp the UI, so any suggestions would be welcome (please add them
to the Issues page:
https://github.com/squeezebox-googlemusic/squeezebox-googlemusic/issues)

Enjoy!



askvictor's Profile: http://forums.slimdevices.com/member.php?userid=64977
View this thread: http://forums.slimdevices.com/showthread.php?t=105800

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