Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MTG/freesound-juce
A JUCE client for accessing the Freesound API
https://github.com/MTG/freesound-juce
audio freesound juce juce-client
Last synced: 3 months ago
JSON representation
A JUCE client for accessing the Freesound API
- Host: GitHub
- URL: https://github.com/MTG/freesound-juce
- Owner: MTG
- License: mit
- Created: 2019-06-07T09:39:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-25T15:36:23.000Z (almost 3 years ago)
- Last Synced: 2024-04-23T04:54:08.433Z (6 months ago)
- Topics: audio, freesound, juce, juce-client
- Language: C++
- Homepage: http://mtg.github.io/freesound-juce/
- Size: 348 KB
- Stars: 26
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-juce - freesound-juce
README
# freesound-juce
A JUCE client for accessing the [Freesound](https://freesound.org) API. From the Freesound API docs:
> With the Freesound API you can browse, search, and retrieve information about Freesound users, packs, and the sounds themselves of course. You can find similar sounds to a given target (based on content analysis) and retrieve automatically extracted features from audio files, as well as perform advanced queries combining content analysis features and other metadata (tags, etc…). With the Freesound API, you can also upload, comment, rate and bookmark sounds!
The freesound-juce client automatically maps function arguments to HTTP parameters of the Freesound API. JSON results are parsed and converted to C++ objects. The main object classes (`SoundList`, `Sound`,
`User`, `Pack`) implement utility methods to further interact with the API.The freesound-juce client includes a simple example command line application built with JUCE v5.4.4 which shows how to use it. Client's [documentation can be found here](https://mtg.github.io/freesound-juce/index.html). However we recommend you to check the [official Freesound API documentation]((https://freesound.org/docs/api/)) to get more information about the available API endpoints and features.
## Usage
To use freesound-juce just copy `FreesoundAPI.h` and `FreesoundAPI.cpp` to your project source folder and `#include "FreesoundAPI.h"`.
To access the API you'll need to create a Freesound user account and apply for an API key at [https://freesound.org/api/apply/](https://freesound.org/api/apply/). Then, an `FreesoundClient`
needs to be instantiated with the api key as a parameter. Note that this client can do both token-based
authentication or OAuth2 and there are specific functions for them.## Quick example
```cpp
FreesoundClient client(secret);
SoundList list = client.textSearch("bass");
Array arrayOfSearch = list.toArrayOfSounds();
for (int i = 0; i < arrayOfSearch.size(); i++) {
name = arrayOfSearch[i].name;
username = arrayOfSearch[i].user;
std::cout << "Sound Name: " << name << " Username: " << username << std::endl;
}```
## Example applications
Check out this cool example apps:
* [Demo app](https://github.com/aframires/freesound-juce/blob/master/Source/Main.cpp): simple command-line utility that makes some queries to Freesound to demonstrate how the client works. Includes OAuth2 authentication example as well.
* [FreesoundUploader](https://github.com/aframires/FreesoundUploader): let's you upload sounds to Freesound directly from your DAW!
* [FreesoundSimpleSampler](https://github.com/ffont/FreesoundSimpleSampler): let's you search in Freesound and automatically build a simple sampler based on the results.