separate HD, 4K and genre
Posted: 24 Nov 2023, 10:58
Hello, I use filebot node on my server and I would like to separate HD and 4K videos into folders, but also into genre folders.
This is what I'm currently using and I don't know how to split 4k videos.
If anyone could help me, because I don't know how to do it at all.
thank you
This is what I'm currently using and I don't know how to split 4k videos.
Groovy: Select all
seriesFormat={ genres =~ /Animation/ ? 'Séries d\'animations' : genres =~ /Documentaire|Reality/ ? 'Séries Documentaires' : 'Séries' }/{ plex.tail }{" tvdb-$id"}
movieFormat={ genres =~ /Animation/ ? 'Films d\'animations' : genres =~ /Documentaire|Reality/ ? 'Films Documentaires' : 'Films'}/{ plex.tail }{" tmdb-$id"}
thank you