Does themoviedb offer localized info? or is it more German info in English?
extra
.MediaPortal 1 have grouping in "MyVideo" to, one level UserGroups, and another level Collections for movies, and support TMDBMediaPortal 2 however has grouping support from what I understand in "MyVideos" and supports TMDb
// add genres
if (movieDetails.Genres != null) {
movie.Genres.AddRange(movieDetails.Genres.Select(g => g.Name).ToArray());
if (MovingPicturesCore.Settings.FixGermanGenres) {
// fixing Genres
// adjust "Liebesfilm" into "Liebe & Romantik", etc.
// might need to expose another advanced config option to allow custom replacement, seem to recall there is another option like that, so you can duplicate syntax.
}
}