Created
June 6, 2017 21:43
-
-
Save Erim32/54c6ae429c4c834e7e969161cdc5056c to your computer and use it in GitHub Desktop.
Script pour permettre au Kinect V1 d'etre détectable sour raspbian par Alsa.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# ============================================================================================= | |
# | |
# Fichier: kinect-rpi-alsa-install.sh | |
# Description: | |
# Procedure d'installation pour rendre le Kinect V1 détectable par Alsa comme une source Audio. | |
# Auteur: Erim32 (https://github.com/Erim32) | |
# Date: 06/06/2017 | |
# | |
# | |
# ============================================================================================= | |
# Source principale: http://blog.tunpixel.tn/2014/10/27/kinect-rasp/ | |
# Fix dans les commentaires de la source. | |
echo "Installation" | |
echo "Etape 1:" | |
git clone http://git.ao2.it/kinect-audio-setup.git/ | |
cd kinect-audio-setup | |
echo "Etape 2:" | |
make install | |
echo "Etape 3:" | |
./kinect_fetch_fw /lib/firmware/kinect | |
udevadm control --reload-rules | |
echo "Etape 4:" | |
kinect_upload_fw /lib/firmware/kinect/UACFirmware | |
echo "Resultat" | |
lsusb | |
cat /proc/asound/cards |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment