kodi-nfo-generator
kodi-nfo-generator copied to clipboard
feature request: option for generate a single multi-episode.nfo file instead of an nfo per episode
Hi, i think it would be a good option to have the possibility to create a single nfo file for a series rather than one nfo file per episode.
Kodi had an option for this, it just bundle all the single nfo files inside a single file with the name mutli-episode.nfo
Its no big deal to create this file from the single episode files
➤ echo "<?xml version="1.0" ?>" > multi-episode.nfo
➤ for i in $(ls *S??E??*.nfo); do cat $i | tac | head -n -1 | tac >> multi-episode.nfo ; done
➤ rm *S??E??*.nfo
The only 'tricky' part is maybe to match the wildcards (*SE.nfo) under certain circumstances.
But i think it would be nice to had an option which just create this kind of file instead of a nfo for every single episode. Anyway big thanks for your project it has already saved me a lot of work.
Sounds like a good idea
Kodi wiki on multi-episode nfo files:
https://kodi.wiki/view/NFO_files/Episodes#Multi-Episode_Files
Just added the experimental --multi_episodes
flag with 9ff7ec92c12e1714443a8cc36ddc0aa7ebf05326. Have a look whether that is what you're after.