kodi-nfo-generator icon indicating copy to clipboard operation
kodi-nfo-generator copied to clipboard

feature request: option for generate a single multi-episode.nfo file instead of an nfo per episode

Open Chronosaurus42 opened this issue 3 months ago • 1 comments

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.

Chronosaurus42 avatar Mar 22 '24 20:03 Chronosaurus42