Python-based CLI audio format converter specifically designed for FLAC to MP3 conversions.
pip install flac2mp3-cli
This program is a multi-threaded FLAC to MP3 converter. It can convert a single FLAC file, or it can convert multiple FLAC files in a directory. Non-FLAC files in the directory are copied without conversion. The metadata of the original FLAC files is maintained in the converted MP3 files.
To run the program, use the following command:
flac2mp3 <input_path> [<thread_count>] [<output_path>]
Where:
<input_path>
is the path to the FLAC file or directory of FLAC files to convert.<thread_count>
(optional) is the number of threads to use for conversion. If not provided, the program will use a default value.<output_path>
(optional) is the path to the directory where the converted MP3 files (and copied non-FLAC files) should be saved. If not provided, the program will save the files in a default directory.
To convert a single FLAC file, provide the path to the file as the <input_path>
:
flac2mp3 /path/to/your/file.flac
To convert all FLAC files in a directory, provide the path to the directory as the <input_path>
:
flac2mp3 /path/to/your/directory
All FLAC files in the directory (and its subdirectories) will be converted to MP3.
This program uses the following Python packages:
alive_progress
for progress barsconcurrent.futures
for multi-threadingos
andshutil
for file and directory operationssys
andtime
for system operations
If you want to build this project yourself, follow these steps:
-
Clone the repository
Clone the repository to your local machine:
git clone https://github.com/yourusername/flac-to-mp3-converter.git
-
Install the project
Navigate into the project directory and install the project along with its dependencies:
cd flac-to-mp3-converter pip install
This program is released under the MIT License. See the LICENSE
file for more details.
This project was born out of a personal need. I needed a tool that could convert my extensive library of FLAC files to MP3 format all at once. This would allow me to enjoy my music collection on devices that don't support FLAC.
This is one of my first projects and I'm still learning, so feel free to correct me or suggest improvements, raise issues or contribute to the project!