trimVideo method

Future<String> trimVideo(
  1. String filePath,
  2. double startSeconds,
  3. double endSeconds
)

Trims a video file to the specified time range.

Implementation

Future<String> trimVideo(
    String filePath, double startSeconds, double endSeconds) {
  throw UnimplementedError('trimVideo() has not been implemented.');
}