Metadata-Version: 2.1
Name: flackup
Version: 0.7.1
Summary: FLAC CD Backup Manager
Home-page: https://github.com/alxndr42/flackup
Author: Alexander Dietrich
Author-email: alexander@dietrich.cx
License: GPLv3+
Description: # Flackup
        
        Flackup manages audio CD backups as single FLAC files with [embedded cue
        sheets][cuesheet], adds metadata from [MusicBrainz][] and converts albums to
        individual [Ogg Vorbis][] tracks.
        
        [cuesheet]: https://xiph.org/flac/documentation_tools_flac.html#encoding_options
        [musicbrainz]: https://musicbrainz.org/
        [ogg vorbis]: https://xiph.org/vorbis/
        
        ## Requirements
        
        - FLAC files with embedded cue sheets
        - `flac`, `oggenc` and `vorbisgain`
        - Python 3
        
        ## Installation
        
        Using pip (or [pipx][]):
        
        ```bash
        pip install flackup
        ```
        
        [pipx]: https://pypa.github.io/pipx/
        
        ## Usage
        
        You can get help for all commands with the `--help` parameter.
        
        To tag a number of FLAC files with embedded cue sheets:
        
        ```bash
        flackup tag *.flac
        ```
        
        If there are multiple releases matching the cue sheet (and there probably will
        be), Flackup will show you some release details, including the barcode, and let
        you pick the correct one.
        
        To add cover images to a number of tagged FLAC files:
        
        ```bash
        flackup cover *.flac
        ```
        
        To convert a number of tagged FLAC files to Ogg Vorbis in the `$HOME/Music`
        directory:
        
        ```bash
        flackup convert -d $HOME/Music *.flac
        ```
        
Platform: UNKNOWN
Classifier: Topic :: Multimedia :: Sound/Audio :: CD Audio
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3
Description-Content-Type: text/markdown
