An open API service indexing awesome lists of open source software.

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

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
```

![Alt text](windows.PNG?raw=true "Windows")

- 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
```

![Alt text](Ubuntu.png?raw=true "Ubuntu")