thumbnails 1.0.0 copy "thumbnails: ^1.0.0" to clipboard
thumbnails: ^1.0.0 copied to clipboard

discontinued
outdated

A Flutter Plugin to generate thumbnails from videos..

example/lib/main.dart

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

void main() => runApp(new MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  // Fetch thumbnail and store in a specified output folder
  void _toUserFolder() async {
    String thumb = await Thumbnails.getThumbnail(
        thumbnailFolder: '/storage/emulated/0/Videos/Thumbnails',
        videoFile: '/storage/emulated/0/Videos/Testvideo.mp4',
        imageType: ThumbFormat.PNG,
        quality: 30);
    print('path to File: $thumb');
  }

// when an output folder is not specified thumbnail are stored in app temporary directory
  void _noFolder() async {
    String thumb = await Thumbnails.getThumbnail(
        videoFile: '/storage/emulated/0/Videos/Testvideo.mp4',
        imageType: ThumbFormat.JPEG,
        quality: 30);
    print('Path to cache folder $thumb');
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      home: new Scaffold(
        appBar: new AppBar(
          title: const Text('Plugin example app'),
        ),
        body: new Center(
          child: Column(
            children: <Widget>[
              RaisedButton(
                  onPressed: _toUserFolder, child: Text('To Specified Folder')),
              RaisedButton(
                  onPressed: _noFolder, child: Text('No Folder Specified')),
            ],
          ),
        ),
      ),
    );
  }
}
17
likes
30
pub points
74%
popularity

Publisher

unverified uploader

A Flutter Plugin to generate thumbnails from videos..

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on thumbnails