How to install bp.tagging
- Download and install ActivePython
- Open Command Prompt
- Type
pypm install bp.tagging
Lastest release
bp.tagging contains a set of convenience wrappers for mutagen as well as a single command line script for basic ID3 tag manipulation.
Command line usage
- bp_tagging COMMAND [ARGS...]
- bp_tagging help [COMMAND]
Options
-h, --help show this help message and exit
Commands
help (?) give detailed help on a specific sub-command
info (i) print available metadata for files
Usage bp_tagging info [PATHS...]
Options -h, --help show this help message and exit -v, --verbose print extra information -d, --debug print debug information
remove_tag (rmt) completely remove TAG from files.
Usage bp_tagging remove_tag TAG [PATHS...]
Options -h, --help show this help message and exit -v, --verbose print extra information -d, --debug print debug information
remove_tag_with_content (rmtc) remove tags with value PATTERN from files.
Usage bp_tagging remove_tag_with_content PATTERN [PATHS...]
Options -h, --help show this help message and exit -v, --verbose print extra information -d, --debug print debug information
replace_in_tag (rpt) replace PATTERN with REPLACEMENT in TAG on files. Use 'all' for tag to replace in all tags.
Usage bp_tagging replace_in_tag TAG PATTERN REPLACEMENT [PATHS...]
Options -h, --help show this help message and exit -v, --verbose print extra information -n, --nosave don't save (only print what would be done). -d, --debug print debug information
tag (t) get/set the VALUE for TAG on files.
Usage bp_tagging tag TAG [VALUE [PATHS...]]
Options -h, --help show this help message and exit -v, --verbose print extra information -s, --set set the tag value -d, --debug print debug information
Changelog
0.3
- completely revised command line usage (not compatible with prior versions!)
- switched from Baker to cmdln
0.2
- Added preference infarastructure
(using http://pypi.python.org/pypi/bp.preferences)
- Added filename_from_tags property to File
- Expose filename_from_tags as tags2filename command
0.1.1
- Recreated the project with modern-package-template
0.1
- Initial release