docs: update installation instructions to include Chromaprint dependency

This commit is contained in:
xtrullor73
2024-06-12 20:06:16 -07:00
parent 06509c5695
commit 436641fb6e

View File

@@ -14,23 +14,20 @@ With its ability to process an entire directory or individual files, MusicMetaFi
## Installation
**1. FFmpeg Requirement**
- Ensure ffmpeg is installed and available in your systems PATH.
**1. Dependencies Requirement**
- Ensure both FFmpeg and Chromaprint are installed and available in your systems PATH.
```sh
# On Windows
winget install ffmpeg
winget install ffmpeg && winget install chromaprint
# On macOS
brew install ffmpeg
brew install ffmpeg chromaprint
# On Linux
sudo apt-get install ffmpeg
```
Ensure FFmpeg is now available in your terminal with following command:
```
ffmpeg --version
sudo apt-get install ffmpeg chromaprint
```
**2. MusicMetaFinder Installation**
```