pitch_capture 0.0.1
pitch_capture: ^0.0.1 copied to clipboard
this package intended for capture pitch
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add pitch_captureThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
pitch_capture: ^0.0.1Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:pitch_capture/capture.dart';
import 'package:pitch_capture/pitch_detector/algorithm/pitch_algorithm.dart';
import 'package:pitch_capture/pitch_detector/algorithm/yin.dart';
import 'package:pitch_capture/pitch_detector/exceptions/invalid_audio_buffer_exception.dart';
import 'package:pitch_capture/pitch_detector/pitch_detector.dart';
import 'package:pitch_capture/pitch_detector/pitch_detector_result.dart';
import 'package:pitch_capture/pitch_detector/util/pcm_util_extensions.dart';