Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meetleev/flutter_media_data_extractor
Extracts video file metadata. Retrieve video details efficiently
https://github.com/meetleev/flutter_media_data_extractor
meta video video-metadata
Last synced: 1 day ago
JSON representation
Extracts video file metadata. Retrieve video details efficiently
- Host: GitHub
- URL: https://github.com/meetleev/flutter_media_data_extractor
- Owner: meetleev
- License: apache-2.0
- Created: 2024-03-08T08:37:24.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-15T07:05:05.000Z (5 months ago)
- Last Synced: 2024-06-15T08:21:33.318Z (5 months ago)
- Topics: meta, video, video-metadata
- Language: Kotlin
- Homepage: https://pub.dev/packages/media_data_extractor
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# media_data_extractor
[![Pub](https://img.shields.io/pub/v/media_data_extractor.svg?style=flat-square)](https://pub.dev/packages/media_data_extractor)
[![support](https://img.shields.io/badge/platform-android%20|%20ios%20-blue.svg)](https://pub.dev/packages/media_data_extractor)The package is a Flutter plugin that provides functionality to extract metadata from video files. This plugin allows developers to retrieve various metadata information from video files, such as duration, resolution, bitrate, codec, and more.
## Usage
``` dart
final mediaDataExtractorPlugin = MediaDataExtractor();
final metas = await mediaDataExtractorPlugin
.getVideoData(MediaDataSource(
type: MediaDataSourceType.asset,
url: 'assetVideoUrl'));
```