diff --git a/README.md b/README.md index 4376c7a..45659a7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # mvc An MPD music visualizer, based on curses. It works by reading the fifo output of an MPD instance. -At the moment it performs a Fast Fourier Transform of the raw PCM data provided by MPD, but a beat detection is going to be implemented to gain more precision. +It performs a Fast Fourier Transform of the raw PCM data provided by MPD. ## Requirements @@ -15,13 +15,13 @@ format "44100:16:1" } ``` -This is allowing MPD to create a file (the location is hardcoded right now so it must be /tmp/mpd.fifo) and write it with raw PCM data in realtime. +This is allowing MPD to create a file (the location is hardcoded right now so it MUST be /tmp/mpd.fifo) and write it with raw PCM data in realtime. Path and format variables MUST be the same displayed above. By reading that, mvc is able to compute a frequency spectrum of the current track played. ## Building -Makefile-based. +Makefile-based. ``` make all ```