audiocutter 0.0.7 copy "audiocutter: ^0.0.7" to clipboard
audiocutter: ^0.0.7 copied to clipboard

outdated

A plugin to cut audio files. Supports iOS and Android.

audiocutter #

A plugin to cut audio files. You pass in a path to a file, start and end times and the plugin will do the rest

Getting Started #

  1. Take a look at the requirements and any gotchas for your platform at the flutter_ffmpeg package page. There can be some stumbling blocks getting it working on iOS. (Works on my machine ¯_(ツ)_/¯)

  2. Import and cut!

    import 'package:audiocutter/audiocutter.dart';

    {...}

    var start = 15.0;
    var end = 25.5;
    var path = 'path/to/audio/file.mp3';

    // Get path to cut file and do whatever you want with it.
    var outputFilePath = await AudioCutter.cutAudio(path, start, end);

12
likes
0
pub points
13%
popularity

Publisher

unverified uploader

A plugin to cut audio files. Supports iOS and Android.

Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_ffmpeg, path_provider

More

Packages that depend on audiocutter