Metadata-Version: 2.1
Name: audiotagger
Version: 0.0.0
Summary: Cross-platform metadata editor for audio files.
Home-page: https://github.com/vincentzhchen/audiotagger
Author: Vincent Chen
Author-email: vincent.zh.chen@gmail.com
License: GPL-3.0-or-later
Project-URL: Source, https://github.com/vincentzhchen/audiotagger
Description: # audiotagger
        Cross-platform metadata editor for audio files.
        
        ## Dependencies
        - [mutagen](https://github.com/quodlibet/mutagen): Developed on 1.41.1 and
            higher.  May work for earlier versions.
        - [pandas](https://github.com/pandas-dev/pandas): Developed on 0.20.3 and
            higher.  May work for earlier versions.
        - [openpyxl](https://bitbucket.org/openpyxl/openpyxl/src): Developed on 2.5.11
            and higher.  May work for earlier versions.
        - [xlrd](): Developed on 1.1.0 and higher.  May work for earlier versions.
        
        ## Setup
        All commands are executed from `audiotagger.audiotagger.api.main`.  First run
        the following to generate a configuration file.
        ```text
        --generate-config
        ```
        This generates a configuration file in the `~/.audiotagger` directory.
        
        ## Example
        * This extracts the metadata from a single audio file.  Passing `-x` writes
        the output to an Excel (.xlsx) file.
            ```text
            -s /path/to/file -x
            ```
        
        * Similar to the above, you can extract metadata from several files by
        passing in a directory.
            ```text
            -s /path/to/album -x
            ```
        
        * To tag audio file(s) using a metadata input file, change the source to
        a metadata input file and pass the `-t` option.
            ```text
            -s /path/to/metadata_input_file.xlsx -t
            ```
        
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: System :: Logging
Requires-Python: >=3.6
Description-Content-Type: text/markdown
