NFO files - nova-video-player/aos-AVP GitHub Wiki

Nova Video Player supports NFO file description format that follows the Kodi specification. Advanced users can manually create them or use a dedicated tool for this task.

Please note that Android is now preventing download of insecure http links in the scraping. If you have old nfo files containing http links reference, it should be manually replaced by corresponding https one in each of the files (you can do a script for this). In order to find these files, use silver-searcher ag command: ag -G '\.nfo$' 'http[^s]' -l . You can manually fix the files using: ag -G '\.nfo$' 'http[^s]' -l -0 .| xargs -0 sed -i "s/http:/https:/g"

With the new movie collection/saga support some custom tags have been added to allow movie collection import/export. These tags are under the set key hierarchy and captures id, name, overview, posterLarge, posterThumb, backdropLarge and backdropThumb. Here is an example:

  <set>
    <id>645</id>
    <name>James Bond Collection</name>
    <overview>The James Bond film series is a British series of spy films based on the fictional character of MI6 agent James Bond, codename "007". With all of the action, adventure, gadgetry &amp; film scores that Bond is famous for.  (We do not consider the 1954 release of Casino Royale for this series because it was actually a television episode and not a theatrical film.)</overview>
    <posterLarge>https://image.tmdb.org/t/p/w342/HORpg5CSkmeQlAolx3bKMrKgfi.jpg</posterLarge>
    <posterThumb>https://image.tmdb.org/t/p/w92/HORpg5CSkmeQlAolx3bKMrKgfi.jpg</posterThumb>
    <backdropLarge>https://image.tmdb.org/t/p/w1280/dOSECZImeyZldoq0ObieBE0lwie.jpg</backdropLarge>
    <backdropThumb>https://image.tmdb.org/t/p/w300/dOSECZImeyZldoq0ObieBE0lwie.jpg</backdropThumb>
  </set>
⚠️ **GitHub.com Fallback** ⚠️