A simple GUI application to convert FLAC audio files to Apple Lossless Audio Codec (ALAC) format.
- Drag and drop interface for FLAC files
- Batch conversion support
- Progress tracking
- Custom output folder selection
- Modern UI with Sun Valley theme
- Download the latest release from the releases page
- Run the FlaskToAlacConverter.exe file
- Enjoy!
- Add FLAC files by:
- Dragging and dropping files/folders onto the application window
- Using the "Add Files" button to select individual files
- Using the "Add Folder" button to select entire folders
- Select an output folder using the "Browse" button
- Click "Convert Files" to start the conversion process
- Windows 10/11
- No additional software required - all dependencies are bundled with the executable
Contributions are welcome! Here's how you can help:
- Fork the repository
- Create a new branch (
git checkout -b feature/improvement
) - Make your changes
- Run tests if applicable
- Commit your changes (
git commit -am 'Add new feature'
) - Push to the branch (
git push origin feature/improvement
) - Create a Pull Request
# Clone the repository
git clone https://github.com/ItsTatsuya/flac-to-alac-converter.git
# Create and activate virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Run the application
python src/gui.py