https://github.com/moda20/flutter_file_meta_data
A Flutter plugin that enables you to get fileMetadata on iOS and Android
https://github.com/moda20/flutter_file_meta_data
Last synced: 8 months ago
JSON representation
A Flutter plugin that enables you to get fileMetadata on iOS and Android
- Host: GitHub
- URL: https://github.com/moda20/flutter_file_meta_data
- Owner: moda20
- License: mit
- Created: 2020-05-28T12:02:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T22:53:15.000Z (over 3 years ago)
- Last Synced: 2025-10-23T05:59:29.069Z (8 months ago)
- Language: Ruby
- Size: 10.2 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_file_meta_data
A Flutter plugin that enables you to get fileMetadata on iOS and Android
#### This Plugin is available only on Android
## Usage
To get Any File metadata :
```dart
import 'package:flutter_file_meta_data/flutter_file_meta_data.dart';
List metadata = await FlutterFileMetaData.getFileMetaData("filePath");
print(metadata); // Will print a list of metaData of that file
//Output Definition
metadata = [ Title, Artist, 8bit AlbumCover, Album Title, Track Number, Duration, Genre, Bitrate, Year ]
```
## Getting Started
This project is a starting point for a Flutter
[plug-in package](https://flutter.dev/developing-packages/),
a specialized package that includes platform-specific implementation code for
Android and/or iOS.
For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.