- Thread starter
- Moderator
- #841
No, it just works with what is there, but it loads new ones where indicated. The folders with which it works can be seen in the log at startup.Does FH copy the images to the FH folders that are used in the by Titan and MePo theme?
Depending on the settings, MePoTools may not download new ones (if they already exist) or download them every time they are updated (then they will change).If MePoTools is set for Random images then it's a game of chance on what you get. I find the first result is usually preferable so don't use random.
Perhaps, but I started using it and wrote MePoTools, it is more convenient and more functional, then some of the functionality moved to FH.DVDArt is Visual Studio and in github so would seem like a better idea if we were able to maintain it.
FH does not have its own paths, it looks for paths from MePoTools (by default), if it does not find it, it looks for paths from DVDArt (by default) and uses them, something like this:We could also update the folder path to use the FH paths.
C#:
// Music
MusicClearArtFolder = Path.Combine(MPThumbsFolder, @"ClearArt\Music\"); // MePotools
if (!Directory.Exists(MusicClearArtFolder) || IsDirectoryEmpty(MusicClearArtFolder))
{
MusicClearArtFolder = Path.Combine(MPThumbsFolder, @"Music\ClearArt\"); // MusicInfo Handler
if (!Directory.Exists(MusicClearArtFolder) || IsDirectoryEmpty(MusicClearArtFolder))
{
MusicClearArtFolder = Path.Combine(MPThumbsFolder, @"Music\ClearLogo\FullSize\"); // DVDArt
if (!Directory.Exists(MusicClearArtFolder) || IsDirectoryEmpty(MusicClearArtFolder))
MusicClearArtFolder = string.Empty;
}
}
if (!string.IsNullOrEmpty(MusicClearArtFolder))
{
logger.Debug("Fanart Handler Music ClearArt folder: "+MusicClearArtFolder);
}