Différences entre les versions de « Kodi »
Aller à la navigation
Aller à la recherche
(Une version intermédiaire par un autre utilisateur non affichée) | |||
Ligne 14 : | Ligne 14 : | ||
WantedBy=multi-user.target | WantedBy=multi-user.target | ||
[[Fichier:Capture.JPG]] | |||
Option 1 : Accéder à Kodi via l'interface web | Option 1 : Accéder à Kodi via l'interface web | ||
Ligne 129 : | Ligne 129 : | ||
groups admin | groups admin | ||
admin : admin adm dialout cdrom sudo audio video plugdev games users input render netdev spi i2c gpio lpadmin | admin : admin adm dialout cdrom sudo audio video plugdev games users input render netdev spi i2c gpio lpadmin | ||
sudo chmod 644 /etc/systemd/system/kodi.service | |||
ls -l /usr/bin/kodi-standalone | |||
which kodi-standalone | |||
sudo journalctl -u kodi.service -b |
Version actuelle datée du 18 septembre 2024 à 10:32
kodi
[Unit] Description=Kodi Media Center After=network.target [Service] User=pi # Remplacez par votre nom d'utilisateur ExecStart=/usr/bin/kodi-standalone Restart=always [Install] WantedBy=multi-user.target Option 1 : Accéder à Kodi via l'interface web Kodi dispose d'une interface web intégrée qui vous permet de contrôler et de configurer Kodi à distance via un navigateur web. Étape 1 : Activer l'interface web dans Kodi Ouvrez Kodi sur votre Raspberry Pi. Allez dans Paramètres (icône d'engrenage dans le menu principal). Sélectionnez Services. Dans le menu de gauche, sélectionnez Serveur Web. Activez l'option Autoriser le contrôle à distance via HTTP. Notez le port utilisé (par défaut : 8080) et assurez-vous que l'adresse IP de votre Raspberry Pi est bien configurée (vous en aurez besoin pour accéder à Kodi depuis un PC). Facultatif : Vous pouvez définir un nom d'utilisateur et un mot de passe pour sécuriser l'accès. Étape 2 : Accéder à Kodi depuis un PC sous Windows Ouvrez un navigateur web (Chrome, Firefox, etc.) sur votre PC. Dans la barre d'adresse, tapez l'URL suivante : http://IP_du_Raspberry_Pi:8080 Par exemple, si l'adresse IP de votre Raspberry Pi est 192.168.1.10, vous devez entrer : http://192.168.1.10:8080 Si vous avez défini un nom d'utilisateur et un mot de passe, entrez-les pour accéder à l'interface web de Kodi. Depuis l'interface web, vous pouvez naviguer dans Kodi, changer les paramètres, et même contrôler la lecture. Cependant, certaines options avancées peuvent nécessiter un accès direct à l'interface de Kodi. Puis sudo systemctl enable kodi.service A voir si ça démarre tout seul, on dirait que non. J'ai réussi à trouver les chaines françaises avec ce tuto, https://www.youtube.com/watch?v=5w86RoD4AjI&ab_channel=KultureChroniK Ajout de ceci, (nécessaire) sudo apt install kodi-inputstream-adaptive PLANTAGE ../Modules/_decimal/libmpdec/context.c:56: warning: mpd_setminalloc: ignoring request to set MPD_MINALLOC a second time ../Modules/_decimal/libmpdec/context.c:56: warning: mpd_setminalloc: ignoring request to set MPD_MINALLOC a second time Segmentation fault (core dumped) Crash report available at /home/admin/kodi_crashlog-20240912_191939.log PB DEMARRAGE verif systemctl systemctl --version systemd 252 (252.30-1~deb12u2) +PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified sudo mkdir -p /etc/systemd/system/ car n'existe pas !! En fait si sudo nano /etc/systemd/system/kodi.service [Unit] Description=Kodi Media Center After=graphical.target [Service] User=pi # Remplacez 'pi' par votre nom d'utilisateur ExecStart=/usr/bin/kodi-standalone Restart=always RestartSec=10 Environment=DISPLAY=:0 [Install] WantedBy=multi-user.target sudo systemctl daemon-reload sudo systemctl enable kodi.service sudo systemctl status kodi.service Sep 12 21:07:28 raspberrypi systemd[1]: kodi.service: Scheduled restart job, restart counte> Sep 12 21:07:28 raspberrypi systemd[1]: Stopped kodi.service - Kodi Media Center. Sep 12 21:07:28 raspberrypi systemd[1]: kodi.service: Start request repeated too quickly. Sep 12 21:07:28 raspberrypi systemd[1]: kodi.service: Failed with result 'exit-code'. Sep 12 21:07:28 raspberrypi systemd[1]: Failed to start kodi.service - Kodi Media Center. ~ sudo reboot kodi.service - Kodi Media Center Loaded: loaded (/etc/systemd/system/kodi.service; enabled; preset: enabled) Active: activating (auto-restart) (Result: exit-code) since Thu 2024-09-12 21:34:28 CEST; 7s ago Process: 1893 ExecStart=/usr/bin/kodi-standalone (code=exited, status=217/USER) Main PID: 1893 (code=exited, status=217/USER) CPU: 0 kodi.service - Kodi Media Center Loaded: loaded (/etc/systemd/system/kodi.service; enabled; preset: enabled) Active: activating (auto-restart) (Result: exit-code) since Thu 2024-09-12 21:40:11 CEST; 2s ago Process: 2307 ExecStart=/usr/bin/kodi-standalone (code=exited, status=217/USER) Main PID: 2307 (code=exited, status=217/USER) CPU: 0 groups admin admin : admin adm dialout cdrom sudo audio video plugdev games users input render netdev spi i2c gpio lpadmin sudo chmod 644 /etc/systemd/system/kodi.service ls -l /usr/bin/kodi-standalone which kodi-standalone sudo journalctl -u kodi.service -b