seek-tune
An implementation of Shazam's song recognition algorithm.
File Explorer
Download Latest Version (.zip)- favicon.ico
- fingerprint.wasm
- full-moon.png
- index.html
- logo192.png
- logo512.png
- manifest.json
- rec.png
- robots.txt
- wasm_exec.js
- CarouselSliders.module.css
- Form.module.css
- Listen.module.css
- AnimatedNumber.js
- CarouselSliders.js
- Form.js
- Listen.js
- App.js
- index.css
- index.js
- reportWebVitals.js
- .env.example
- .gitignore
- package.json
- README.md
- after_install.sh
- before_install.sh
- start_server.sh
- stop_server.sh
- client.go
- mongo.go
- sqlite.go
- models.go
- fft.go
- fingerprint.go
- image.go
- shazam.go
- spectrogram.go
- downloader.go
- spotify.go
- utils.go
- youtube.go
- helpers.go
- logger.go
- utils.go
- convert.go
- wav.go
- .env.example
- cmdHandlers.go
- go.mod
- go.sum
- main.go
- socketHandlers.go
- build.sh
- go.mod
- go.sum
- wasm_main.go
- .dockerignore
- .gitignore
- appspec.yml
- docker-compose.yml
- Dockerfile
- LICENSE
- README.md
π Installation Guide
git clone https://github.com/cgzirim/seek-tune
Downloads the entire project code from GitHub to your computer.
cd seek-tune
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker-compose up --build
Runs the command against the services defined in the compose file.
docker-compose down
Runs the command against the services defined in the compose file.
Pulled directly from this repo's README.
3. Node.js
Easynpm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
Pulled directly from this repo's README.
4. Go
Mediumgo run *.go serve [-proto <http|https> (default: http)] [-port <port number> (default: 5000)]
Runs the Go program directly without a separate build step.
go run *.go download <https://open.spotify.com/.../...>
Runs the Go program directly without a separate build step.
go run *.go save [-f|--force] <path_to_song_file_or_dir_of_songs>
Runs the Go program directly without a separate build step.
go run *.go find <path-to-wav-file>
Runs the Go program directly without a separate build step.
go run *.go erase
Runs the Go program directly without a separate build step.
Pulled directly from this repo's README.
