Really nice looking app. I installed it and the UI is absolutely amazing. Would love to make this my main music player. I am having some issues though, the audio quality of the playback is suspect. I'm playing back an mp3 file and comparing it to cmus and iTunes play it fine, however musikcube has some weird audio artefacts (especially during heavy bass sections). I'm guessing(hoping?) it's some weird config, but thi…
Show HN: Musikcube, a terminal-based music player, library, and streaming server
71–80 of 85 posts
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#72Earlier quoted context omitted.
So add an issue on Github, this isn't the right place.
This is a Show HN... And before you ask, I'm actually not only preparing the issue details, I'm looking to fix it myself.
https://github.com/clangen/musikcube/issues/120
That section of code should be refactored though.
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#73wow this looks amazing! I finally decided that i must get off iTunes and have been hoping for a terminal based software. I cant wait to try it out.
I've been using Swinsian, and am really, really happy with it. I also want to try this out, but for something similar to iTunes without all the terrible, Swinsian is A+++++.
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#74Would love to see a Spotify integration. Yes, I know. Thats probably not the devs bad, but Spotify makeing it impossible to write a legal integration. Happy new DRM world.
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#75Off topic a bit, but what were you using to show the keypresses?
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#76Too bad it doesn't do youtube. Anyone knows of a cli app that can play local files as well as youtube?
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#77Too bad it doesn't do youtube. Anyone knows of a cli app that can play local files as well as youtube?
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#78I have to ask though, when streaming protocols are fragmented already, why create a new one, and not use one of the existing / well supported ones, such as Subsonic?
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#79## Install build dependencies
sudo apt-get install build-essential cmake libboost-all-dev ncurses-dev libncursesw5-dev libcurl4-openssl-dev libfaad-dev libmad0-dev libav-tools libvorbis-dev libflac-dev libmicrohttpd-dev libmp3lame-dev libasound2-dev libpulse-dev;
## Building
mkdir ~/Applications
cd ~/Applications
git clone https://github.com/clangen/musikcube.git
cd musikcube
cmake .
make
# Running
./bin/musikcube
(edits: clarity)
Re: Show HN: Musikcube, a terminal-based music player, library, and streaming server
#80I'm using Fedora 26 and it shows that packages "asound", "pulse" and "libmp3lame" are not available. What do I do?
These are all common libraries that most distributions should have. 1. "asound" refers to ALSA. 2. "pulse" is PulseAudio 3. "libmp3lame" is LAME A quick google search looks like these may be the packages you need: 1. alsa-lib-devel 2. pulseaudio and pulseaudio-libs-devel 3. liblame-devel, maybe? Looks like I'll need to spend some time here soon installing a few more popular distros and figuring out the exact package…