dropcreations / flactagger

Tag FLAC audio files using the python module Mutagen.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FLAC Tagger

  • This program is to tag FLAC media files using Mutagen.
  • Mutagen is a Python module to handle audio metadata and tags.

Installation

  1. First clone the repo.
git clone https://github.com/dropcreations/FLAC_Tagger.git && cd FLAC_Tagger
  1. Install mutagenFLAC.
pip install --editable .

Usage

  • You can add one FLAC file at once.
mutagenFLAC [FLAC_path]

Explanation

  • You can add multiple values to a tag by seperating it with a comma and a space (', ').

    eg : Tag_Value_01, Tag_Value_02, Tag_Value_03,...

  • When you are adding lyrics, first save lyrics to a text file.

  • Then add that text file's path when it asked.

  • You can add more custom tags.

  • Save all custom tags to text file or type one by one while running.

  • If you are using a text file to add custom tags, text file's format must be as below.

    Tag_Name_01: Tag_Value_01, Tag_Value_02, Tag_Value_03,...
    Tag_Name_02: Tag_Value_01, Tag_Value_02, Tag_Value_03,...

    eg:

    CustomTagsPreview

  • You can add covers/albumarts. (PNG and JPG/JPEG are supported)

About

Tag FLAC audio files using the python module Mutagen.

License:MIT License


Languages

Language:Python 100.0%