From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mail.toke.dk; spf=pass (mailfrom) smtp.mailfrom=irif.fr (client-ip=2001:660:3301:8000::1:2; helo=korolev.univ-paris7.fr; envelope-from=jch@irif.fr; receiver=) Received: from korolev.univ-paris7.fr (korolev.univ-paris7.fr [IPv6:2001:660:3301:8000::1:2]) by mail.toke.dk (Postfix) with ESMTPS id 3612295E34E for ; Wed, 27 Apr 2022 14:10:25 +0200 (CEST) Received: from mailhub.math.univ-paris-diderot.fr (mailhub.math.univ-paris-diderot.fr [81.194.30.253]) by korolev.univ-paris7.fr (8.14.4/8.14.4/relay1/82085) with ESMTP id 23RCAPrA025877; Wed, 27 Apr 2022 14:10:25 +0200 Received: from mailhub.math.univ-paris-diderot.fr (localhost [127.0.0.1]) by mailhub.math.univ-paris-diderot.fr (Postfix) with ESMTP id 1BF24C0BC1; Wed, 27 Apr 2022 14:10:25 +0200 (CEST) X-Virus-Scanned: amavisd-new at math.univ-paris-diderot.fr Received: from mailhub.math.univ-paris-diderot.fr ([127.0.0.1]) by mailhub.math.univ-paris-diderot.fr (mailhub.math.univ-paris-diderot.fr [127.0.0.1]) (amavisd-new, port 10023) with ESMTP id JKM3cEZL8_gL; Wed, 27 Apr 2022 14:10:23 +0200 (CEST) Received: from pirx.irif.fr (unknown [78.194.40.74]) (Authenticated sender: jch) by mailhub.math.univ-paris-diderot.fr (Postfix) with ESMTPSA id 62DDCC0BBA; Wed, 27 Apr 2022 14:10:23 +0200 (CEST) Date: Wed, 27 Apr 2022 14:10:23 +0200 Message-ID: <87sfpyk9qo.wl-jch@irif.fr> From: Juliusz Chroboczek To: Fabrice Rouillier In-Reply-To: References: User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/27.1 Mule/6.0 MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (korolev.univ-paris7.fr [194.254.61.138]); Wed, 27 Apr 2022 14:10:25 +0200 (CEST) X-Miltered: at korolev with ID 626932B1.001 by Joe's j-chkmail (http : // j-chkmail dot ensmp dot fr)! X-j-chkmail-Enveloppe: 626932B1.001 from mailhub.math.univ-paris-diderot.fr/mailhub.math.univ-paris-diderot.fr/null/mailhub.math.univ-paris-diderot.fr/ X-j-chkmail-Score: MSGID : 626932B1.001 on korolev.univ-paris7.fr : j-chkmail score : . : R=. U=. O=. B=0.000 -> S=0.000 X-j-chkmail-Status: Ham Message-ID-Hash: ZBAMEYENCISMQ4VM44CLDFQHGA5SFNX7 X-Message-ID-Hash: ZBAMEYENCISMQ4VM44CLDFQHGA5SFNX7 X-MailFrom: jch@irif.fr X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: galene@lists.galene.org X-Mailman-Version: 3.3.5 Precedence: list Subject: [Galene] Re: Galene & Raspberry List-Id: =?utf-8?q?Gal=C3=A8ne_videoconferencing_server_discussion_list?= Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: > In particular, compared with the situation with a 32 bit OS and a default= configuration for the wireless :=20 >=20 > - the clients connect much more quickly > - the charge of the RPI stays very low (with 4 people connected the > change of each core did stay below 15% while it was more than 50% with > my previous settings) That's interesting -- perhaps I should do some profiling on 32-bit ARM to see where the inefficiency comes from. > In particular, this combo becomes a light and very efficient solution > for a use with the family. Please tell your family that Galene's author said hi ! > - would it be difficult to implement a =AB ring button =BB in order that > a new visitor can send a notification to the other people who are > connected but not in front of their Galene Window ? 1. Add the button in galene.html and style it in galene.css. 2. In galene.js, add a callback that sends a broadcast user message: mybutton.onclick =3D e =3D> { serverConnection.userMessage('ring', nil); }; 3. In onUserMessage, add a handler for the new message: case 'ring': { let audio =3D new Audio('ring.mp3'); audio.play(); break; } > - would it be difficult tu implement different landing pages, for > example one where we just ask for a pseudo ? You have two solutions. The quick and dirty one would be to edit the div with class "login-container" in galene.html. If you need to supply passwords or change the username, you may do that in the function 'gotConnected' in galene.js. The alternative would be to write your own login server that computes a JWT token and redirects to Galene. The advantage is that you can write the server in any language you wish, but it's a little more complicated. See the section 'Authentication Portal' of the file README.PROTOCOL. -- Juliusz