This repository contains Python scripts for managing audio file metadata and converting between audio formats. The scripts are designed to work with FLAC and MP3 files, allowing you to tag audio files and convert between formats while preserving metadata.
- FLAC Tagger: Update metadata (tags) for FLAC audio files
- FLAC to MP3 Converter: Convert FLAC files to MP3 format while preserving metadata
- Batch Processing: Process multiple files in a directory
- Metadata Preservation: Maintains ID3 tags during conversion
- Python 3.6+
- Required Python packages (install using
pip install -r requirements.txt
):- mutagen
- pydub
- tqdm
-
Clone the repository:
git clone https://github.com/engomaressam/tagging.git cd tagging
-
Install the required dependencies:
pip install -r requirements.txt
python flac_tagger.py /path/to/audio/files
python flac_to_mp3.py /path/to/flac/files /output/directory
A script to update metadata (tags) for FLAC audio files. It can process a single file or all FLAC files in a directory.
A script to convert FLAC audio files to MP3 format while preserving metadata. It can process a single file or all FLAC files in a directory.
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
Omar Essam