flutter_video_trimmer 3.1.0 copy "flutter_video_trimmer: ^3.1.0" to clipboard
flutter_video_trimmer: ^3.1.0 copied to clipboard

A Flutter package for trimming videos. This supports retrieving, trimming, and storage of trimmed video files to the file system.

example/lib/main.dart

import 'package:example/home_page.dart';
import 'package:flutter/material.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Video Trimmer',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(),
    );
  }
}
5
likes
140
points
221
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for trimming videos. This supports retrieving, trimming, and storage of trimmed video files to the file system.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, get_video_thumbnail, intl, path, path_provider, tmp_path, transparent_image, video_player

More

Packages that depend on flutter_video_trimmer