Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2016-09-14 Thread pnaga

marcoc1712 wrote: 
> Does it really works in firefox? I'm not able to make it add the button,
> I get the alert "edit the scrpt before..." so is running, but if I edit
> the script, delete the alert line and complete other lines with the
> server IP and the player mac address it does nothing, no buttons
> appears.
> 
> Coul dbe the auth? In wich form is suposed to be ? user / passw ?
> 
> thanks for any help.

it was working forme and i did exactly se same way as you (no user, no
passw).
For thos who want to use it with chrome I finaly found the solution
using "Violent monkey" and with the following script:
---
// ==UserScript==
// @name Qobuz
// @namespace Violentmonkey Scripts
// @grant none
// ==/UserScript==
// @match http://www.qobuz.com/*/album/*
// @match http://www.qobuz.com/*/telechargement-album-mp3/*
// @include http://www.qobuz.com/*/album/*
// @include http://www.qobuz.com/*/telechargement-album-mp3/*
//
// Pierre Beck 11/2012 Creation
// Pierre Beck 11/2014 Modification to match qobuz change on their pages
architecture
//
// needs SqueezeboxQobuz plugin v1.70+
//
http://forums.slimdevices.com/showthread.php?97146-Qobuz-com-streaming-plugin
// https://github.com/pierrepoulpe/SqueezeboxQobuz/downloads
//
// ==/UserScript==
//alert("Edit SqueezeboxQobuz.user.js before using it!"); return; //
delete this line, uncomment and edit the next ones
const squeezeBoxServer = "daphile.local:9000";
const multiPlayerSuffix = ""; //"=04:00:20:12:45:AB"
const multiPlayerAuth = ""; //=xx"
var albumIdentifier = document.querySelector("#item > div.action >
span.btnLike").getAttribute("data-item-id");
var divListen = document.querySelector("#buyIt > div.actListen");
var newA = document.createElement("a");
newA.href="#";
var language = window.navigator.language.substr(0,2);
switch (language) {
case "fr":
newA.innerHTML = "avec la SqueezeBox"; break;
default:
newA.innerHTML = "with the SqueezeBox"; break;
}
newA.className = "btn btn-green"
newA.onclick = function(){
var iframe = document.createElement("iframe");
iframe.style.display = "none";
iframe.src = "http://; + squeezeBoxServer +
"/status.html?p0=qobuz=playalbum=" + albumIdentifier +
multiPlayerSuffix + multiPlayerAuth;
this.parentNode.appendChild(iframe);
return false;
};
divListen.appendChild(newA);

As you can see, the script is identical to the Grease monkey'one except
the additional 4 first lines which were apparently required by Violent
monkey plugin.
Don't ask me why it works, I do not know (I am not informatician): I
just did a copy (of the greasemonkey script) to the tampermonkey
editor.

PS: daphile.local has to be replaced by the IP of your LMS server of
course



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2016-02-07 Thread pnaga

pierrepoulpe wrote: 
> [image:
> http://www.pierrebeck.fr/SqueezeboxQobuz/doc_install/userscript.png]
> See the new button? cool uh...?
> 
> It's kind of dirty hack. But it works... If Qobuz dev team reads this,
> why not integrate that in the website, as an accout option of course,
> disabled by default.
> 
> Tested with Opera 12.10, Chrome 23.0, Firefox 11.0, should be compatible
> with Safari.
> Should not be compatible with IE, unless someone knows a trick.
> (but seriously, you care about IE?)
> 
> Needs plugin v1.70
> 
> 1/ Download SqueezeboxQobuz.user.js from
> https://github.com/pierrepoulpe/SqueezeboxQobuz/blob/master/SqueezeboxQobuz.user.js
> 
> 2/ Edit the file with any text editor to replace the example IP with
> your squeezebox server one, line 14. (Delete line 13, uncomment 14)
> 
> 3/ Set-up the script
> Opera : Preferences > Advanced > Content > JS Options > User
> Javascript folder : browse to the directory you save the script
> Chrome : drag'n'drop the file on Chrome, accept the warning
> message.
> Firefox : install greasemonkey,
> https://addons.mozilla.org/fr/firefox/addon/greasemonkey/, then
> drag'n'drop the file to firefox
> 
> 4/ Open qobuz.com on any album page, click 'Ecouter', you should see the
> new menu, and clicking it should launch the play on squeezebox. If you
> click again on 'écouter', you'll see the dirty iframe.
> 
> Tell me if there is a bone.

Hi
Does anyone knows how to install the SqueezeboxQobuz.user.js addon in
Chrome ?
it works perfectly on Firefox with greasemonkey but I did not succeed
with chrome. 
The procedure indicated above does not work anymore apparently
pnaga



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2015-09-14 Thread pnaga

mherger wrote: 
> Qobuz 1.250 is on its way. There's a new option available... to enable
> playback of hires flac. Just pick the streaming format you want from
> mp3/320, flac, and flac hires (whatever the highest they offer for a
> track).
> 
> Please consider this experimental. That's why it's disabled by default.
> I've had one single tester so far. His comment:
> 
> "Wow. Thriller really played at 176kHz."
> 
> Don't expect this to work with Transporter. I've seen bitrates of
> several megabits per second. Transporter simply doesn't have large
> enough buffers to make this happen smoothly.
> 
> Have fun!
> 
> Michael

Yes, working perfectly at 192kHz/24bit on Daphile running on a PC.:D
pnaga



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-12-18 Thread pnaga

pierrepoulpe wrote: 
 Fixed. Unfortunately, each time qobuz dev team will change their webpage
 layout, I'll have to modify my script...

Thank you very much, the update is working perfectly!



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-12-17 Thread pnaga

Unfortunatley the script is not working anymore. Apparently related to
the new format of there web pages!



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-12-17 Thread pnaga

axelwin wrote: 
 No problem for me, with both qobuz plugins (including the old plugin and
 the new Ickstream plugin)

I am talking about the greasemonkey script for Firefox and not the qobuz
plugin which is running perfectly.
Best regards



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-11-20 Thread pnaga

pierrepoulpe wrote: 
 I updated the script to match new qobuz page.
 Could you try and give me your feedback?
 
 (same URL as original
 https://github.com/pierrepoulpe/SqueezeboxQobuz/blob/master/SqueezeboxQobuz.user.js
 )

Thank you very much. It is working perfectly. I just had to add:
http://www.qobuz.com/fr-fr/album/*; in the list of web pages allowed in
the setup of Greasemonkey.

pnaga



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-10-26 Thread pnaga

Juls2783 wrote: 
 Hello there !
 
 First, thank you for this excellent plugin ! :cool: It works fine when
 running LMS on my computer! But I recently installed a Synology NAS with
 LMS running on it. The problem is Qobuz plugin version on the NAS LMS is
 only 1.203 and streaming isn't working. I've been looking for a way to
 update it, but I don't know how. :confused: The Synology is running its
 last DSM version 5.0-4528.
 
 Any way you could help ? 
 
 Thank you

Hello Juls2786
This is to confirm that the Qobuz plugin v1.203 is running well on a
synology DS211+ with the last version of DSM (5.0-4528)



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-10-16 Thread pnaga

Hi
The format of yhe Qobuz web page has changed and the greazemonkey script
for firefox does not work anymore!
Any solution?
Thanks



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-06-14 Thread pnaga

Since a few days, SqueezeboxQobuz.user.js is not active on the qobuz web
pages. I currently running Firefox v30.0
Am i the only-one who experiences this problem?
Best regards
Pierre



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2014-06-14 Thread pnaga

OK, problem solved
The new version of Firefox apparently requires to re-specify the active
WEB pages of the Qobuz module with: http://www.qobuz.com/fr-fr/album/*

Regards
Pierre



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2013-02-28 Thread pnaga

matka wrote: 
 I have tried in another player and experienced the same problem. I will
 try Windows desktop (I'm interested in flac only, not mp3) and if it
 persists I will log an issue with qobuz. 
 
 I have slim hopes that this is a plug-in problem. To anybody who wants
 to try, try streaming
 http://www.qobuz.com/album/constantin-silvestri-icon-constantin-silvestri/5099972334751,
 it is a 15 disc box set, you don't have to listen to all tracks (unless
 you want to :-)), start a track and then forward to next. You will see
 that some tracks skip and in if you look at plugin log then you will see
 a 404 code.

Hello Matka

Sorry but I do not see the problem with the example mentioned above
(Silvestri). No tracks skip, I just listen the next track!



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2013-02-10 Thread pnaga

pierrepoulpe wrote: 
 Some albums on qobuz doesn't use the same URL structure :
 http://www.qobuz.com/*telechargement-album-mp3*/Claude-Deb...
 
 fixed here:
 https://github.com/pierrepoulpe/SqueezeboxQobuz/blob/master/SqueezeboxQobuz.user.js

Thank you for this update.
One thing which also help is to add:
http://www.qobuz.com/*
in the user setting page of the plugin (in the greasemonkey users script
setting page)



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2013-01-02 Thread pnaga

pierrepoulpe wrote: 
 [image:
 http://www.pierrebeck.fr/SqueezeboxQobuz/doc_install/userscript.png]
 See the new button? cool uh...?
 
 It's kind of dirty hack. But it works... If Qobuz dev team reads this,
 why not integrate that in the website, as an accout option of course,
 disabled by default.
 
 Tested with Opera 12.10, Chrome 23.0, Firefox 11.0, should be compatible
 with Safari.
 Should not be compatible with IE, unless someone knows a trick.
 troll(but seriously, you care about IE?)/troll
 
 Needs plugin v1.70
 
 1/ Download SqueezeboxQobuz.user.js from
 https://github.com/pierrepoulpe/SqueezeboxQobuz/downloads
 
 2/ Edit the file with any text editor to replace the example IP with
 your squeezebox server one, line 14. (Delete line 13, uncomment 14)
 
 3/ Set-up the script
 Opera : Preferences  Advanced  Content  JS Options  User
 Javascript folder : browse to the directory you save the script
 Chrome : drag'n'drop the file on Chrome, accept the warning
 message.
 Firefox : install greasemonkey,
 https://addons.mozilla.org/fr/firefox/addon/greasemonkey/, then
 drag'n'drop the file to firefox
 
 4/ Open qobuz.com on any album page, click 'Ecouter', you should see the
 new menu, and clicking it should launch the play on squeezebox. If you
 click again on 'écouter', you'll see the dirty iframe.
 
 Tell me if there is a bone.

Hello

This is to mention that the user-script for your browser sometimes
(rarely I confess) does not work with some albums. Here is an example:
http://www.qobuz.com/telechargement-album-mp3/Claude-Debussy-Claude-Debussy-Piano-a-4-Mains/Classique/Duo-Crommelynck/Claves-Records/default/fiche_produit/id_produit-0829410478762.html

My browser is Firefox 17.0.1 on W7 64bit

Best regards



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2012-12-03 Thread pnaga

mherger wrote: 
  I have more than 350 playlists in qobuz and only the first 200 are
  displayed by the Qobuz plugin
 
 Heh... I'm not a playlist listener, but rather album oriented. Therefore
 
 I'll never understand how you can have that many playlists :-)
 
 Yes, the 200 items max is a deliberately chosen number. The plugin
 doesn't  
 support proper paging through longer result sets, thus I limited the  
 number of items. I'll increase this limitation to 500 in a next
 release.
 
 If you're tinkerer enough: just replace occurrences of 200 with 500 (or 
 
 whatever number you want - don't go too far though :-)) in API.pm.
 
 -- 
 
 Michael

Thank you  Michael

Now I can read all my playlists.
In fact I am using albums (mostly classical music) but renamed adding
the composer name in the title. This facilitates the search of a given
album :-)

Pierre



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2012-12-01 Thread pnaga

This to report on a small bug:
I have more than 350 playlists in qobuz and only the first 200 are
displayed by the Qobuz plugin

My configuration: 
Synology DS211+ with the last version of the software

Thank you very much for this plugin.
Pierre



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2012-11-18 Thread pnaga

Hello
After two days of installation, uninstallation, plugin applications and
a lot of NAS reboot,  it finally works when I manually install the
plugin in the following directories (both of them):
/volume1/@appstore/SqueezeCenter/Cache/InstalledPlugins/Plugins/Qobuz
and 
/volume1/@appstore/SqueezeCenter/Plugins/Qobuz

and applying the following command in both of them: chown -R admin:users
Qobuz
plus several server and NAS reboot.

Don't ask me why it works like this!



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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


Re: [SlimDevices: Plugins] Qobuz.com streaming plugin

2012-11-14 Thread pnaga

zouflagirafe wrote: 
 Bonjour. J'ai un petit soucis avec l'installation du plugin sur un nas.
 J'ai essaye sur mon pc avec l'ajout en xml et cela fonctionne
 parfaitement. J'ai donc voulu l'installer avec la même procédure sur mon
 nas synology ds212+ ou se trouve le lms qui me sert pour toutes mes SBT.
 Et la impossible. Je vois bien le plugin, mais quand j'essaye de
 l'activer, il me demande de redémarrer le serveur (ça c'est normal) et
 dès qu'il a redémarré le plugin est toujours désactivé. C'est vraiment
 dommage ce petit problème parce que de ce que j'ai vu en essai sur le pc
 votre plugin est vraiment super.
 Merci d'avance de l'aide que vous pourrez m'apportez que je profite
 enfin de mon abonnement qobuzz
 
 PS: DSM 4.1.2647 et lsm sur nas 7.7.2-006

Idem pour moi, même problème avec un Syno 211+ et la même version du
DSM: plugin désactivé après redémarrage du serveur (et même reboot du
Syno)
Et bravo pour ce plugin que beaucoup de qobuziens attendaient depuis
longtemps.



pnaga's Profile: http://forums.slimdevices.com/member.php?userid=58031
View this thread: http://forums.slimdevices.com/showthread.php?t=97146

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