https://github.com/atkawa7/looper
Looper - Minimalistic console music player
https://github.com/atkawa7/looper
audio audio-player console flac mp3 opus ubuntu vorbis wav windows
Last synced: 7 months ago
JSON representation
Looper - Minimalistic console music player
- Host: GitHub
- URL: https://github.com/atkawa7/looper
- Owner: atkawa7
- Created: 2017-10-15T20:57:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-17T04:54:07.000Z (about 6 years ago)
- Last Synced: 2025-04-24T06:05:37.316Z (10 months ago)
- Topics: audio, audio-player, console, flac, mp3, opus, ubuntu, vorbis, wav, windows
- Language: C++
- Size: 234 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# looper
Looper - A minimalistic console music player
NB: Tested on Windows and Ubuntu
- On windows
```
git clone https://github.com/atkawa7/looper
cd looper
vcpkg.exe install --triplet x86-windows-static mpg123 libvorbis opusfile opus libogg libflac fdk-aac libaiff alac
mkdir build
cd build
cmake -G "Visual Studio 15 2017" -DCMAKE_TOOLCHAIN_FILE=C:\dev\vcpkg\scripts\buildsystems\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x86-windows-static -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release
looper.exe test.mp3
```

- On Ubuntu
```
git clone https://github.com/atkawa7/looper
cd looper
sudo apt-get install libflac-dev libasound2-dev libvorbis-dev libogg-dev libmpg123-dev libopus-dev libopusfile-dev
mkdir build
cd build
cmake ..
cmake --build . --config Release
./looper test.mp3
```
