pitch_detector_dart_update_test

Last updated:

0 purchases

pitch_detector_dart_update_test Image
pitch_detector_dart_update_test Images
Add to Cart

Description:

pitch detector dart update test

Pitch detector dart library #
A dart library for pitch detection. It implements the yin algorithm ported from the tarsosDSP library by Joren Six.
Getting started #
To import the library into your project, go to your project pubspec.yaml and add the dependency:
dependencies:
pitch_detector_dart: ^0.0.2
copied to clipboard
Usage #
//Create a new pitch detector and set the sample rate and buffer size
final pitchDetectorDart = PitchDetector(44100, 2000);

//Call the get pitch method passing as a parameter the audio sample (List<double>) to detect a pitch
final result = pitchDetectorDart.getPitch(audioSample);
copied to clipboard
See the full example here: https://github.com/techpotatoes/pitchup_flutter_sample
The result will contain:

pitch: The pitch extracted from the audio sample if existent
probability: The probability of the pitch found
pitched: A flag to indicated if a pitch was identified or not from the sample given

Contributing #
Please, drop me an email if you have any suggestions, problems or feedback. Feel free to submit a pull request if you improved the library and want to share it.
Privacy Policy #
This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.
The library don't store or share any kind of information. No data is saved or shared through any means.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.