vvvirani / flutter_audio_trimmer

Trimming an audio file means cutting a portion of the audio from the beginning or end of the file or removing some part from the middle.
MIT License
1 stars 2 forks source link

Flutter Audio Trimmer

Trimming an audio file means cutting a portion of the audio from the beginning or end of the file or removing some part from the middle.

Dart API

The library offers several methods to handle audio trim related actions:

Future<File?> trim({
    required File inputFile,
    required Directory outputDirectory,
    required String fileName,
    required AudioFileType fileType,
    required AudioTrimTime time,
  }){...};

Run the example app

Contributing

You can help us make this project better, feel free to open an new issue or a pull request.