2024-02-13, 11:36 PM
Hey, I've been working on my scripts, but I just realized one shitty thing. When I create an NFO file to overwrite some tags, example (file automatically created with my script):
<?xml version='1.0' encoding='utf-8'?>
<movie>
<title>American Fiction</title>
<year>2023</year>
<plot>El profesor de inglés y escritor Thelonious 'Monk' Ellison escribe una novela satírica bajo seudónimo, con la intención de denunciar la hipocresía de la industria editorial.l</plot>
<genre>Comedia</genre>
<genre>Drama</genre>
<tag>Comedia dramática</tag>
<tag>Literatura</tag>
<country>Estados Unidos</country>
<rating>6,7</rating>
<filmaffinityid>779260</filmaffinityid>
</movie>
I'm not declaring any part of the cast, or the crew... I don't need to change it. But when Jellyfin reads the NFO file, it deletes all cast & crew info (and I guess something else). So I end up with all the info from FilmAffinity, which is supercool, but without actors, director, writer...
How can I avoid this behavior?
<?xml version='1.0' encoding='utf-8'?>
<movie>
<title>American Fiction</title>
<year>2023</year>
<plot>El profesor de inglés y escritor Thelonious 'Monk' Ellison escribe una novela satírica bajo seudónimo, con la intención de denunciar la hipocresía de la industria editorial.l</plot>
<genre>Comedia</genre>
<genre>Drama</genre>
<tag>Comedia dramática</tag>
<tag>Literatura</tag>
<country>Estados Unidos</country>
<rating>6,7</rating>
<filmaffinityid>779260</filmaffinityid>
</movie>
I'm not declaring any part of the cast, or the crew... I don't need to change it. But when Jellyfin reads the NFO file, it deletes all cast & crew info (and I guess something else). So I end up with all the info from FilmAffinity, which is supercool, but without actors, director, writer...
How can I avoid this behavior?