kPlayer is an MP3 player built using GTK 4 and GStreamer. It features a simple user interface, playlist management, and a real-time audio visualizer. It can play .mp3
, .wav
, .ogg
and .flac
file formats.
- Real-Time Visualizer: Displays an audio visualizer with frequency bars synchronized to the currently playing track.
- Playlist Management: Add, remove, and navigate through tracks in a playlist.
- Volume Control: Adjustable volume slider.
- Progress Tracking: Visual progress bar with the ability to seek by clicking.
- Looping: Option to enable looping for the current track.
The program can be compiled for Windows using MinGW. However, that won't be covered here.
Follow these steps to build and run kPlayer on your Linux system:
- GTK 4 (>= 4.14.2)
- GStreamer (>= 1.24.2)
- A C compiler such as
gcc
pkg-config
On Debian-based distributions, you can install the dependencies with:
sudo apt update
sudo apt install libgtk-4-dev gstreamer1.0-dev gcc pkg-config
-
Clone the repository:
git clone https://github.com/kayrapamukcu/kPlayer.git cd kPlayer
-
Build the project using the provided Makefile:
make
-
Run the application:
./mp3player