On m'a gentiement offert un raspberry, je vais donc en avoir 2 a la maison. Celui ci est plus récent (donc plus puissant). Je vais re-tester Kodi pour voir si il tient le coup
allez on va retester xbmc (pardon, kodi) sur le rasp
Avec le petit plugin à la popcorntime : https://github.com/steeve/plugin.video.pulsar/releases/tag/v0.4.7
Comment mettre en place un DNS menteur sur son raspberry pour ne pas servir les pubs.
L'avantage ? pouvoir se passer de adblock x sur ses périphériques qui consomme pas mal de ressources. Une fois en place, il faut juste utiliser le raspberry comme serveur DNS.
ah genial pour balancer du stream sur la tv!
ah il a l'air bien ce projet, pouvoir commander vocalement son reseau domotique à base de briques libres :D
Coder, un projet de chez Google pour transformer son raspberry en plateforme d'apprentissage de code !
En plus de fournir la plateforme, il y a des projets type exemple ici : http://googlecreativelab.github.io/coder-projects/
via nico
Nouvelle version de piclodio!
J'ai un peu contribué sur cette version, j'ai donc découvert django (un framework python) qui est très sympa à utiliser ! :)
Plus d'infos par le main dev sur l'article.
EDIT : et le repo github : https://github.com/Sispheor/Piclodio2
Valeur différentes retournées par amixer et alsamixer, l'explication :
No, both are correct. You are dreaming too much on the world unified
percentage representation smile
The percentage in amixer has nothing to do with dB level.
It's just the percentage of the raw value range of that mixer
element. Thus showing 89% is correct. It's 10% down from 100%
(1% is because of the resolution of the raw values).
Now, alsamixer shows the percentage in a different way. It's
explained well in the source code (alsamixer/volume_mapping.c), but
not mentioned in the man page, unfortunately.
* The mapping is designed so that the position in the interval is proportional
* to the volume as a human ear would perceive it (i.e., the position is the
* cubic root of the linear sample multiplication factor). For controls with
* a small range (24 dB or less), the mapping is linear in the dB values so
* that each step has the same size visually. Only for controls without dB
* information, a linear mapping of the hardware volume register values is used
* (this is the same algorithm as used in the old alsamixer).
The percentage representation in alsamixer corresponds to this
mapping, thus it's neither dB nor linear percent.
Un autre article sur la gestion du son du raspberry avec amixer. J'ai pu améliorer ma lib (https://github.com/arnaudmm/rasp-utils/blob/master/picsound.sh) pour le projet piclodio2 (https://github.com/Sispheor/Piclodio2/)
Comment utiliser une ou plusieurs wiimote avec le rasp. C'est qui qui va rejouer à la nes/snes ? :):)
Je viens de remarquer que même en idle, XBMC mange pas mal de CPU.. Une solution pourrait être de l'arrêter/le démarrer à la demande comme Nico a fait (https://github.com/Sispheor/StartXBMC), mais j'ai trouvé ce petit script qui est bien sexy. Grâce à une commande (tvservice) on peut savoir si la TV est allumé ou non!
à tester donc
on_mode="0x120009"
while [ 1 ]
do
status=tvservice -s | awk {'print $2'}
if [ $status == $on_mode ]
then
echo "Detected hdmi signal - Starting xbmc . . ."
sudo service xbmc start
fi
sleep 1
done
Edit : ça ne marche pas avec ma TV :-( le code reste inchangé, tant pis. Du coup j'ai créé une page web toute simple qui, lorsque je la visite, permet de lancer xbmc.