FLUTTER ECOSYSTEM

Dimolll/cached_video_preview

リモートまたはローカルの動画プレビュー画像を取得し、キャッシュするのに役立つFlutterプラグイン。

cached_video_preview のプロジェクト画像
Stars
8
Forks
9
最終プッシュ(UTC)
2022/06/22
プロジェクト状態
公開中
Dmytro Bondarchuk GitHub avatar
GITHUB User

Dmytro Bondarchuk ↗

Flutter Developer

言語DartRubySwiftKotlinObjective-C

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 13 件

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

Introduction

Cached Video Preview can help you get remote or local video preview image and cache it.

USAGE

This is example code how to implement this package.

Get Remote Video Image Preview extracting metadata in web pages

CachedVideoPreview(
  path: 'https://www.youtube.com/watch?v=b_sQ9bMltGU',
  type: SourceType.remote,
  remoteImageBuilder: (BuildContext context, url) =>
      Image.network(url),
)

Get Remote Video Image Preview from video url

CachedVideoPreview(
  path: 'https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4',
  type: SourceType.remote,
  httpHeaders: const <String, String>{},
  remoteImageBuilder: (BuildContext context, url) =>
      Image.network(url),
)

Get Local Video Image Preview from File path
final File video = File('video.mp4');

CachedVideoPreview(
  path: video.path,
  type: SourceType.local,
  fileImageBuilder: (context, bytes) =>
      Image.memory(bytes),
)

Acknowledgments

Thanks to the authors of these libraries metadata_fetch and video_thumbnail.

Contact and bugs

Use Issue Tracker for any questions or bug reports.