Flipside Audio Converter is a simple GUI application built with Tkinter and FFmpeg for converting audio files between different formats. It supports FLAC, WAV, AIFF, and M4A as input formats, and it can output to M4A, MP3, and FLAC.
- Convert audio files between different formats.
- Input formats: FLAC, WAV, AIFF, M4A.
- Output formats: M4A (lossless), MP3, FLAC.
- Apply optional dithering for 24 and 32-bit depth files.
- Automatically creates an output folder for converted files.
- Python 3
- FFmpeg
- Download the repository via ZIP file or run
git clone https://github.com/edgarronceroblanco/flipside-audio-converter.git
. - Install Python 3 from the [Microsoft Store].
- Get the latest stable FFmpeg build from Gyan Dev.
- Extract the FFmpeg archive to
C:\Users\Public\ffmpeg
(The path itself is a directory, it will look like this: C:\Users\Public\ffmpeg\ffmpeg.exe). - Add
C:\Users\Public\ffmpeg
to the PATH environment variable. - Logout and log back in to your Windows user or reboot the machine.
- Run
FlipsideAudioConverter.py
with the Python3 interpreter.
- Download the repository via ZIP file or run
git clone https://github.com/edgarronceroblanco/flipside-audio-converter.git
. - Install Python 3 and Tkinter with
sudo apt update; sudo apt install python3 python3-tk
. - Install FFmpeg with
sudo apt update; sudo apt install ffmpeg
. - Run the application from the terminal:
python3 FlipsideAudioConverter.py
.
- Download the repository via ZIP file or run
git clone https://github.com/edgarronceroblanco/flipside-audio-converter.git
. - Install the latest Python 3.x from its official webpage.
- Download the latest stable FFmpeg build from evermeet.cx.
- Extract FFmpeg into
/usr/local/bin
directory. - Run the application from the terminal:
python3 FlipsideAudioConverter.py
.