Re: [SlimDevices: Plugins] AirPlay, Chromecast and UPnP bridges update

2022-11-14 Thread askvictor
askvictor wrote: > I've just set up a new device (JBL Bar) that I'm trying integrate with > my squeezebox server. When I play something through the airplay bridge, > it will play for a few seconds (might be 1 second, might be 30 or so), > then stops. The attached log ha

Re: [SlimDevices: Plugins] AirPlay, Chromecast and UPnP bridges update

2022-11-13 Thread askvictor
I've just set up a new device (JBL Bar) that I'm trying integrate with my squeezebox server. When I play something through the airplay bridge, it will play for a few seconds (might be 1 second, might be 30 or so), then stops. The attached log has it firstly for an online radio service; this

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

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

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 >

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

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 >

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

2018-11-14 Thread askvictor
jiveluc wrote: > Hi, > > 2) Do you use a VPN ? > > Thanks It would be a good test for someone to try using a VPN to test a few different regions. My network setup is a bit too complicated to do this easily, but I'll give it a go when I have some spare time, but if anyone else wants to try,

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

2018-11-09 Thread askvictor
philippe_44 wrote: > The problem is that unless I can reproduce this, this will be very > painful trial & error for you guys, unless one of you if confortable > enough with doing some changes in Perl. No complicated, but I can't > guide somebody that does not know it, too time consuming (no

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

2018-11-07 Thread askvictor
OK; I tried creating a new API key from a seperate account with no luck. I'd like to try to establish a pattern of people who have experienced this problem. For a start, what country are you in? I'm in Australia.

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

2018-11-07 Thread askvictor
philippe_44 wrote: > Thanks. What's in this is log is confirms what I was thinking > ... > There is a wooping 15 seconds between the get request and the response. > Knowing that the data returned is ~130kB, then that cannot sustain > realtime. It looks like either the dns is amazingly slow or

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

2018-11-07 Thread askvictor
Thanks for fixing the signature problem; attached is the log using the modified ProtocolHandler +---+ |Filename: sb.log | |Download:

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

2018-11-06 Thread askvictor
However, non-music videos play fine. @philippe_44 - do you have a paid subscription to YT Music/Premium or Google Play Music? I'm wondering if there's a difference between paid subscribers and freeloaders for music content

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

2018-11-06 Thread askvictor
Hmmm; it has gotten uglier. Now (whether or not I use the modified ProtocolHandler.pm) Youtube music doesn't play at all. Attached is the new Info-level log - here's a truncated version without the JS code that gets dumped in the logfile: Code: [18-11-07

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

2018-11-06 Thread askvictor
philippe_44 wrote: > The audio calls happens as frequently as needed. When LMS wants so data, > it queries the plugin and I read a chunk of the webm file by doing an > HTTP asynchronous call. When that call returns, the chunk is parsed and > if audio is found, it is quickly reformatted using a

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

2018-11-05 Thread askvictor
philippe_44 wrote: > They are both handled by the plugin, but I did not put the same logs. > I've tried this URL and it worked for me. Having said that, it uses a > faire amount of CPU on my Tinker board (arm quad-core). Can you try on > another more powerful platform? My LMS is running on a

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

2018-11-05 Thread askvictor
I had a quick play with the code to try to force to use AAC - I changed Code: my @allowDASH = ( [171, 'ogg'], [140, 'aac'], [139, 'aac'] ); to Code: my @allowDASH = ( [140, 'aac'], [139, 'aac'] );

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

2018-11-05 Thread askvictor
Well, I'm glad I'm not the only one with this problem... Here are some info-level logs: I pressed play here: Code: [18-11-06 11:18:10.2764] Plugins::YouTube::ProtocolHandler::getNextTrack (313) next track id: fOGMRnKl5co url:

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

2018-10-25 Thread askvictor
philippe_44 wrote: > Oh, I see - I think what I've created to handle favorites does exactly > what you want. There is a protocolhander that deals with URLs like > ytplaylist://playlistId=, so you should just try to ask LMS to play > such URL So I've just discovered that on youtube music, if

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

2018-10-25 Thread askvictor
philippe_44 wrote: > Oh, I see - I think what I've created to handle favorites does exactly > what you want. There is a protocolhander that deals with URLs like > ytplaylist://playlistId=, so you should just try to ask LMS to play > such URL Oh cool - that does exactly what I want. Will update

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

2018-10-24 Thread askvictor
philippe_44 wrote: > I've already added a "Playlist id" option Thanks; I was referring to being able to start a playlist using a youtube:// URL (or similar) from elsewhere in squeezebox (I write the SendToSqueezebox app for Android, and would be great to be able to send a YT playlist straight

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

2018-10-23 Thread askvictor
Hi, I've just upgraded to 0.81 and have found that tracks now play, but every 10 or so seconds, they stop for a few seconds, as if to buffer. However, videos play fine through a browser or other device (the internet connection is very fast). Looking at the debug log file for youtube plugin it

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

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

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

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

Re: [SlimDevices: Plugins] Google Music Plugin

2016-08-16 Thread askvictor
mikeybs wrote: > Every couple days or so my plugin stops working with the following types > of errors: > ... > All I have to do is restart LMS and then it starts working again, but > I'd love to figure out why it occurs and stop it. *Please post all future discussion *at the new thread

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

Re: [SlimDevices: Plugins] Google Music Plugin

2016-07-27 Thread askvictor
mikeybs wrote: > I see that you updated the instructions page and included a repo.xml. I > did a clean LMS 7.9 nightly install and followed the installation > instructions. The only comment I have is that the plugin no longer > seems to be capable of figuring out the mobile device ID on its

Re: [SlimDevices: Plugins] Google Music Plugin

2016-07-27 Thread askvictor
mikeybs wrote: > I'd very much like to give your new version a try. Is there a repo.xml > I can use to perform the install via the LMS web interface? If not, is > there a more manual install method I could do? Instructions at https://squeezebox-googlemusic.github.io/squeezebox-googlemusic/

Re: [SlimDevices: Plugins] Announce: YouTube Plugin

2016-07-18 Thread askvictor
philippe_44 wrote: > Couldn't you do like iPeng and remote controls do, using the API that > LMS provides (I never looked at how it works, TBH) to access to plugin > features so that you can request the YT plugin to search for 'related > url' and then, you ask YT to play the 1st result, this is

Re: [SlimDevices: Plugins] Announce: YouTube Plugin

2016-07-15 Thread askvictor
philippe_44 wrote: > Ah then I did not understand - on what criteria shall the playlist be > generated? All I have is a single video ID, where shall the other ones > come from? Or I have totally misunderstood you > I was imagining using the same mechanism as "Related to URL or Video ID" uses,

Re: [SlimDevices: Plugins] Announce: YouTube Plugin

2016-07-14 Thread askvictor
philippe_44 wrote: > Yes, this is what I have. I've implemented another protocol handler > called ytplaylist:// and you can send a YT ID which is either a channel > or a playlist and it will be expanded into a LMS playlist. You just have > to send the proper syntax. I had to do that to be able

Re: [SlimDevices: Plugins] Announce: YouTube Plugin

2016-07-14 Thread askvictor
philippe_44 wrote: > This is the spot, I'm the developer since mid last year. Just to be sure > I understand you, you want to send a playlist ID (in the sense of a YT > playlist, not a LMS playlist) and you want that to be expanded by the > plugin? > I do want to do this as well (I thought

Re: [SlimDevices: Plugins] Announce: YouTube Plugin

2016-07-14 Thread askvictor
I have an Android app (SendToSqueezebox) that basically flings a URL from android to a squeezebox. For some protocols (including youtube), it does some mangling of the URL so that the squeezebox can handle it. Currently it works fine for single youtube clips, and I can probably get it working

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

[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;

Re: [SlimDevices: Plugins] Google Music Plugin

2016-06-23 Thread askvictor
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

Re: [SlimDevices: Plugins] Announce: SendToSqueezebox Android app

2016-05-22 Thread askvictor
oyvindo wrote: > I don't understand Why would anyone want to send video to a > squeezebox??? It just sends the audio part of the youtube clip. See the youtube plugin thread for more details. Youtube has a lot of music on it. I've often wanted to just listen to the music on a youtube song

Re: [SlimDevices: Plugins] Announce: SendToSqueezebox Android app

2016-05-22 Thread askvictor
Papajamone wrote: > > > > - Ability to send a playlist URL. At the moment, I can only send > individual videos, but I'd love to be able to send whole playlists. - Ability to append video to the existing playlist instead of > overwrite the existing playlist. This way I can build up a

Re: [SlimDevices: Plugins] Google Music Plugin

2016-05-20 Thread askvictor
I've written an Android App that lets you share (fling?) things from your Android to your Squeezebox. I've just added preliminary Google Music support; if you've got the Google Music plugin working on your squeezebox, give it a go and any feedback to me. Details at this forum thread:

Re: [SlimDevices: Plugins] Announce: SendToSqueezebox Android app

2016-05-20 Thread askvictor
I've added prelim support for sharing from Google Music. A single song can be shared from the Google Music app to squeezebox, provided that you've got the Google Music plugin working on your Squeezebox. The plugin doesn't seem to deal with album, artist or radio URLs, so you can't share those

Re: [SlimDevices: Plugins] Announce: SendToSqueezebox Android app

2016-05-20 Thread askvictor
appreciate if you didn't leave a negative review, but rather let me know of the problems via this forum, or via https://github.com/askvictor/SendToSqueezebox/issues Cheers, askvictor's Profile: http://forums.slimdevices.com

Re: [SlimDevices: Plugins] Announce: SendToSqueezebox Android app

2015-11-15 Thread askvictor
I've published 'for real' on the Play store. There is a small fee for the app (to try to recoup the developer licence cost and time spent), but feel free to compile from source. https://play.google.com/store/apps/details?id=net.positivestate.sendtosqueezebox_paid

Re: [SlimDevices: Plugins] Announce: SendToSqueezebox Android app

2015-11-05 Thread askvictor
waldy wrote: > Nice, not getting any action though? Installed on my nexus 7 with apk, > entered my server address and port. > In YouTube app share video to Sendtosqueezebox app. Message No players > found. Have I missed anything? Thanks > Hmm; do you have a password set on your server (I

Re: [SlimDevices: Plugins] Announce: YouTube Plugin

2015-11-04 Thread askvictor
Hi Folks, I've thrown together an Android app which allows you to share from the Youtube app to a squeezebox server. It requires the Youtube plugin to be installed on the server. It's not well tested at this point, and doesn't have much error handling, but works in my setup at home. Source is

[SlimDevices: Plugins] Announce: SendToSqueezebox Android app

2015-11-04 Thread askvictor
, but works in my setup at home. Source is available at https://github.com/askvictor/SendToSqueezebox - I'm not releasing to the Play store yet, but it should be easy to compile if you have Android Studio installed. Feel free to add feature bug reports and feature requests to the github repo (or fork