Golang client for audd.io (https://audd.io/)
audd.io is Audio Recognition API service. The servic allows you to recognize audio files, recordings and audio streams. This packkage helps you to integrate audd.io service in your Golang project easily.
audd pakcage written in Go 1.14 however supports Go 1.13+ (Starting in Go 1.13, module mode will be the default for all development)
Give examples
go get -u github.com/Anarr/audd Run this command inside your project
go test .
Explain what these tests test and why
Give an example
To start implement package use the example below:
var audioClient audd.AuidoClient
audioClient.SetToken("YOUR_API_TOKEN").SetPlatform(audd.PlatformAppleMusic)
res, err := ac.Parse("AUDIO_FILE_URL")
if err != nil {
log.Println(err)
return
}
fmt.Println(res)
Add additional notes about how to deploy this on a live system
- Dropwizard - The web framework used
- Maven - Dependency Management
- ROME - Used to generate RSS Feeds
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Anar Rzayev - Initial work - Anarr
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details
- Hat tip to anyone whose code was used
- Inspiration
- etc