Quelques années en arrière, je migré de Windows Media Center à Kodi (grâce à Microsoft pour mettre fin à l'appui et le développement de MC). Kodi est largement utilisé et très polyvalent, mais il n'a jamais travaillé tout à fait parfaitement et je continue à venir à travers une série de questions gênantes. Là où j'ai trouvé une solution que je vais le document ci-dessous
1. Kodi ne fonctionne pas avec madVR en standard. [SOLUTION DE CONTOURNEMENT]
One option is to use Kodi-dsplayer but this doesn’t seem to work with liveTV which is one of the main uses for my kodi system. The only alternative is to set up the use of external players in kodi which generally does work ok, but livetv is still played with the internal player
2. Définition d'une vue par défaut universel est difficile, voire impossible
I can’t find a way to set a “default view” for my emby media library with the aeon nox skin. It isn’t clear to me where this option should be — is it a skin responsibility? an emby responsibility? or a core app responsiblity? But this should *always* be available somewhere — it seems like pretty basic stuff to me
3. Aucun des travaux des fournisseurs de temps fiable. [FIXÉ]
I’ve tried several, certains ne fonctionnent pas du tout, un peu de travail pendant quelques jours, puis arrêter. I eventually got the MET office plugin to work by registering for my own API clé. Setting the locations is a bit fiddly but once done it seems to work.
4. info photo sur un slideshow [FIXÉ]
Displaying info about photos on slideshows requires all sorts of manual coding which is in danger of being wiped out with every update. I have written a post on how to modify the slideshow screensaver, but not the actual slideshow.
To edit the regular slideshow depends on the theme. I use Aeon Nox Silvo. Pour cette édition le fichier %AppData%\Kodi\addons\skin.aeon.nox.silvo\16x9\SlideShow.xml
Le mien ressemble à ceci
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <?xml version="1.0" encoding="UTF-8"?> <window> <defaultcontrol>2</defaultcontrol> <controls> <control type="label"> <description>Picture comment</description> <posx>0</posx> <posy>980</posy> <width>1920</width> <height>35</height> <align>center</align> <aligny>center</aligny> <font>font15</font> <textcolor>white</textcolor> <label>$INFO[Slideshow.Caption]</label> </control> <control type="label"> <description>Picture details</description> <posx>0</posx> <posy>1030</posy> <width>1920</width> <height>35</height> <align>center</align> <aligny>center</aligny> <font>font15</font> <textcolor>white</textcolor> <label>Taken with $INFO[Slideshow.CameraModel] on $INFO[Slideshow.EXIFDate]. $INFO[Slideshow.Byline]</label> </control> </controls> </window> |
5. Le système de journal est horrible [FIXÉ]
Why would I want to prat about loading a plugin to view logs. Just give the logs sensible names and stick them all in a log folder somewhere where people can open them with whatever viewer they wish to use!
On windows logs can be found in %AppData%\Roaming\kodi
6. Le addon Emby pour les arrêts Kodi travailler avec les versions bêta [FIXÉ]
Accédez à %appdata%\kodi\userdata\Database
et rechercher un fichier appelé myvideos###.db
Make a note of the version (currently for me 112). modifier le fichier %AppData%\Kodi\addons\plugin.video.emby\resources\lib\database.py
and make sure the number matches (pour moi thi est en ligne 29) — it should say '18': 112 # Leia
7. Personnalisation des menus dans Aeon Nox pour pointer vers Emby dossiers [FIXÉ]
When creating custom menus in Aeon Nox there are a couple of routes to point to emby folders. One route prevents you from selecting the final subfolder (par exemple. going directly into the movies folder) whilst the other option does navigate the whole way but forces the type of folder to be music not videos. Create the menu this second way and then change it manually (custom option) and change the word “Music” for “Videos” at the start of the command line.
8. visualisation Royaume-Uni évaluations BBFC à Aeon Nox Silvo [FIXÉ]
The icons for BBFC ratings are included and are supposed to work if you have coloured icons turned on and have your region settings correct. cependant, the system is only compatible with 1 particular way of storing the metadata for the ratings, where my metadata managers use a slightly different system. I fixed this by editing %AppData%\Kodi\addons\skin.aeon.nox.silvo\16x9\variables.xml and editing the lines that start with UK:
9. catalogue + Emby + Les joueurs externes [FIXÉ]
External players don’t work with emby if it is in “addon mode” as the files are played via HTTP plutôt que par SMB. Of course there is no clear documentation that explains this, ni est là une option pour forcer SMB tout en mode addon. Switch emby to native mode and then clear the kodi database and let it rebuild.
10. En utilisant les joueurs externes [FIXÉ]
The examples for windows users are horrible, par exemple avec des chemins en utilisant les mauvaises barres obliques (unix / instead of windows \). Below is the one I currently use which works as I would expect. A couple of things to note — I have included settings for VLC even though I don’t use it as an external player. Simple change the names for the rules in the bottom section from MPC-HC à VLC si vous souhaitez utiliser VLC. Also note my rule for filenames with the word Photos — this is because videos from my digital cameras are stored with my photos, and when in slideshow I want the videos played with the internal player, not with an external player.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <playercorefactory> <players> <player name="MPC-HC" type="ExternalPlayer" audio="false" video="true"> <filename>C:\Program Files\MPC-HC\mpc-hc64.exe</filename> <args>"{1}" /play /fullscreen /close</args> <hidexbmc>false</hidexbmc> <hideconsole>false</hideconsole> <warpcursor>none</warpcursor> <playcountminimumtime>540</playcountminimumtime> </player> <player name="VLC" type="ExternalPlayer" video="true"> <filename>C:\Program Files\VideoLAN\VLC\vlc.exe</filename> <args>"{1}" --fullscreen --play-and-exit</args> <forceontop>false</forceontop> <hidexbmc>false</hidexbmc> <hideconsole>false</hideconsole> <hidecursor>false</hidecursor> </player> </players> <rules action="prepend"> <rule bd="true" player="MPC-HC" /> <rule dvd="true" player="MPC-HC" /> <rule filetypes="bd|ifo|bdmv|mpls" player="MPC-HC" /> <rule video="true" player="MPC-HC"> <rule internetstream="true" player="VideoPlayer" /> <rule filetypes="pvr" player="VideoPlayer" /> <rule protocols="pvr" player="VideoPlayer" /> <rule filename=".*Photos.*" player="VideoPlayer" /> <rule filename=".*trailer.*" player="VideoPlayer" /> </rule> </rules> </playercorefactory> |
11. Vivre TV est un peu saccadé [FIXÉ]
The use of “fullscreen window” mode seems to cause juddery playback for some reason. Je ne sais pas pourquoi il est activé par défaut, mais le mettre hors tension!
12. Joueur contrôle la position incohérente [FIXÉ]
In Aeon Nox Silvo the player controls (par exemple. début, arrêt, etc.) appear at the bottom of the screen when in liveTV but the top of the screen when playing music. To move the liveTV ones to the top edit the file %AppData%\Kodi\addons\skin.aeon.nox.silvo\16x9\VideoOSD.xml
et %AppData%\Kodi\addons\skin.aeon.nox.silvo\16x9\Includes_LiveTV.xml
. In my case I changed several “top” values in the second file by adding 50 to them to move the large OSD window slightly lower. To move the player controls to the top of the display I changed the 2Dakota du Nord, 3e et 4e “top” values in VideoOSD.xml to 0, 1085 et 5
13. Horrible micro-bégayer depuis Kodi 18 bêta 1 [FIXÉ]
catalogue 18 beta-1 introduces a smooth motion feature that currently can’t be turned off. Pour moi (and for other users on the kodi forums) this has caused the introduction of micro stutter on panning scenes on some videos.
Je fixe cette, but only because my projector can display 25Hz and because I play all non-TV videos in an external player. The issue is caused by playing 25fps content at 50Hz with the smoothmotion settings causing some horrible judder. The same problem occurs in madvr with 24p content at 48Hz which is why I turn off smooth-motion in madvr. To fix it I set my display to 60Hz (semble la meilleure et les forces kodi de commutation), enabled the refresh-rate switching setting in kodi, and whitelisted all of the 1080p options sauf 50Hz. Now when I play liveTV and recordedTV with the internal player the display switches to 25Hz and the videos play without judder. Cela devrait être fixé avant la version finale.
14. LiveTV Timeshift glitch avec DVBLink [FIXÉ]
In fairness to kodi it seems this was at least partially the fault of DVBLink. Earlier versions (5, 5.5) worked better with the liveTV buffer on my RAID tableau, but I found by moving it back off my RAID array I was able to avoid the glitching that has been occurring. My guess is that the buffer file wasn’t playing nicely with the RAM-based cache on the hardware RAID carte.
15. Kodi perd le focus de la fenêtre lors exécuter au démarrage [FIXÉ]
I have always had problems with Kodi losing window focus on startup. There are various unsatisfactory solutions to this that are offered e.g. loading Kodi instead of windows explorer on boot up, effectively as the shell. Many people suggest using “Launcher4Kodi” but I have found this is itself full of problems. After much exploration I discovered that my issue was caused by the Samsung Magician software that supports my Samsung SSD. I had already found some issues with Magician (par exemple. RAPID mode causing problems with removable drives and USB dispositifs) so I uninstalled it. Since removing it I have had no problems with window focus in Kodi.
Qu'est-ce que tu penses? Envoyez-nous un commentaire ci-dessous! Si vous souhaitez vous abonner s'il vous plaît utiliser le lien d'abonnement dans le menu en haut à droite. Vous pouvez également partager avec vos amis en utilisant les liens sociaux ci-dessous. À votre santé.
Laisser un commentaire