soundtouch_plugin 0.0.1 copy "soundtouch_plugin: ^0.0.1" to clipboard
soundtouch_plugin: ^0.0.1 copied to clipboard

discontinued
retracted[pending analysis]

A Flutter plugin for SoundTouch audio processing on Android and Windows.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:soundtouch_plugin/soundtouch_plugin.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text("SoundTouch Plugin Example")),
        body: Center(
          child: ElevatedButton(
            onPressed: () async {
              SoundtouchPlugin soundtouchPlugin = SoundtouchPlugin();
              await soundtouchPlugin.processAudio('input_path', 'output_path');
            },
            child: Text("Process Audio"),
          ),
        ),
      ),
    );
  }
}
0
likes
0
points
34
downloads

Publisher

verified publishernexuscloud.uk

Weekly Downloads

A Flutter plugin for SoundTouch audio processing on Android and Windows.

Repository (GitHub)
View/report issues

License

(pending) (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on soundtouch_plugin

Packages that implement soundtouch_plugin