项目作者: jkwill87

项目描述 :
media file renamer and organizion tool
高级语言: Python
项目地址: git://github.com/jkwill87/mnamer.git
创建时间: 2017-10-16T20:23:27Z
项目社区:https://github.com/jkwill87/mnamer

开源协议:MIT License

下载


PyPI
Tests
Coverage
Licence
Style: Black

mnamer

mnamer (media renamer) is an intelligent and highly configurable media organization utility. It parses media filenames for metadata, searches the web to fill in the blanks, and then renames and moves them.

Currently it has integration support with TVDb and TvMaze for television episodes and TMDb and OMDb for movies.

Documentation

Check out the wiki page for more details.

💾 Installation

$ pip3 install --user mnamer

🤖 Automation

$ docker pull jkwill87/mnamer

✍️ Formatting

Using the episode-directory, episode-format, movie-directory, or movie-format settings you customize how your files are renamed. Variables wrapped in braces {} get substituted with of parsed values of template field variables.

🌐 Internationalization

Language is supported by the default TMDb and TVDb providers. You can use the --language setting to set the language used for templating.

mnamer also supports subtitle files (.srt, .idx, .sub). It will use the format pattern used for movie or episode media files with its extension prefixed by its 2-letter language code.

🧰 Settings

  1. USAGE: mnamer [preferences] [directives] target [targets ...]
  2. POSITIONAL:
  3. [TARGET,...]: media file file path(s) to process
  4. PARAMETERS:
  5. The following flags can be used to customize mnamer's behaviour. Their long
  6. forms may also be set in a '.mnamer-v2.json' config file, in which case cli
  7. arguments will take precedence.
  8. -b, --batch: process automatically without interactive prompts
  9. -l, --lower: rename files using lowercase characters
  10. -r, --recurse: search for files within nested directories
  11. -s, --scene: use dots in place of alphanumeric chars
  12. -v, --verbose: increase output verbosity
  13. --hits=<NUMBER>: limit the maximum number of hits for each query
  14. --ignore=<PATTERN,...>: ignore files matching these regular expressions
  15. --language=<LANG>: specify the search language
  16. --mask=<EXTENSION,...>: only process given file types
  17. --no-guess: disable best guess; e.g. when no matches or network down
  18. --no-overwrite: prevent relocation if it would overwrite a file
  19. --no-style: print to stdout without using colour or unicode chars
  20. --movie-api={*tmdb,omdb}: set movie api provider
  21. --movie-directory: set movie relocation directory
  22. --movie-format: set movie renaming format specification
  23. --episode-api={tvdb,*tvmaze}: set episode api provider
  24. --episode-directory: set episode relocation directory
  25. --episode-format: set episode renaming format specification
  26. DIRECTIVES:
  27. Directives are one-off arguments that are used to perform secondary tasks
  28. like overriding media detection. They can't be used in '.mnamer-v2.json'.
  29. -V, --version: display the running mnamer version number
  30. --clear-cache: clear request cache
  31. --config-dump: prints current config JSON to stdout then exits
  32. --config-ignore: skips loading config file for session
  33. --config-path=<PATH>: specifies configuration path to load
  34. --id-imdb=<ID>: specify an IMDb movie id override
  35. --id-tmdb=<ID>: specify a TMDb movie id override
  36. --id-tvdb=<ID>: specify a TVDb series id override
  37. --id-tvmaze=<ID>: specify a TvMaze series id override
  38. --no-cache: disable request cache
  39. --media={movie,episode}: override media detection
  40. --test: mocks the renaming and moving of files

Parameters can either by entered as command line arguments or from a config file named .mnamer-v2.json.

Contributions

Community contributions are a welcome addition to the project. In order to be merged upsteam any additions will need to be formatted with black for consistency with the rest of the project and pass the continuous integration tests run against each PR. Before introducing any major features or changes to the configuration api please consider opening an issue to outline your proposal.

Bug reports are also welcome on the issue page. Please include any generated crash reports if applicable. Feature requests are welcome but consider checking out if it is in the works first to avoid duplication.