github javinizer/Javinizer 1.4.0
[1.4.0]

latest releases: 2.5.17, 2.5.16, 2.5.15...
4 years ago

To roll forward your existing settings.ini file:

# Add under [General]]:
included-file-extensions=asf,avi,flv,m4v,mkv,mp4,mov,rmvb
excluded-file-strings=*-trailer

# Add under [Metadata]:
create-nfo=True
create-nfo-per-file=True

#Add under [Other]:
log-path=

Added

  • Ability to select which file extensions to use with Javinizer with setting included-file-extensions
  • Ability to exclude files that match a string/wildcard value with setting excluded-file-strings
    • This uses the -Exclude parameter on cmdlet Get-ChildItem which supports string paths/strings with wildcard (*) Regex is NOT supported
  • Ability to omit the creation of a nfo file for a movie with setting create-nfo
  • Ability to create a nfo file per movie file sorted (for multi-part videos) with setting create-nfo-per-file
    • This is now set as default, as this is a requirement for metadata to be loaded with movies into Emby/Jellyfin
  • Better logging functionality and setting of a static log path with setting log-path
    • View logs from console with Javinizer -ViewLog
    • Output and display as a PowerShell object
# Some examples of how you can utilize the log object in PowerShell
# View and sort the log in PowerShell gridview
Javinizer -ViewLog | Out-GridView

# Export log entries to a csv for tabular viewing
Javinizer -ViewLog | Export-Csv -Path .\javinizerlog.csv

# View by ERROR entries in the log
Javinizer -ViewLog | Sort-Object timestamp -Descending | Where-Object { $_.level -eq 'ERROR' } | Format-Table

Changed

  • Removed r18 from default description
  • Logging to JSON formatted

Fixed

  • -MoveToFolder, -RenameFile, -Force parameters when using -Multi sort not being passed through
  • Duplicates being added to r18-thumbs.csv
  • Poster images failing to be cropped from Python when using Windows UNC paths (e.g \\server\jav\unsorted\)

Don't miss a new Javinizer release

NewReleases is sending notifications on new releases.