pytagdump is a simple Python utility to print the ID3/tag info of various files supported by the "mutagen" package.
Installation
To install, simply:
pip install http://github.com/seedifferently/pytagdump/zipball/master
- You'll need to have Python 2.5+ and pip installed.
- You might have to be root (or use sudo) for pip to install the script into a globally executable directory in your $PATH.
- pip should automatically install mutagen for you, but the advanced user can find it here: http://code.google.com/p/mutagen/
Usage
pytagdump [OPTIONS] file(s)
Examples
pytagdump [OPTIONS] ~/Music/*.mp3
or:
pytagdump [OPTIONS] "~/Music/Rick Astley - Never Gonna Give You Up.mp3"
Options
-j/--json Dump tag info in the JSON format (make sure you have Python
v2.6+ or have installed the JSON package).
-y/--yaml Dump tag info in the YAML format (make sure you have
installed the PyYAML package).
-i/--info Include additional meta info (bitrate, length, etc) in tag
dump.
-s/--size Include file size (in bytes) in tag dump.
-v/--verbose Print additional informational messages.
Product's homepage
Requirements:
· Python
What's New in This Release: [ read full changelog ]
· Moved JSON/YAML package references to setuptools extras.
· Added more informative errors to JSON/YAML import failures.
· Fixed issue where additional meta info wasn't shown if it was the only tag info available.