You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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
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.
The text was updated successfully, but these errors were encountered: