Last updated:
0 purchases
nessmediametadataretriever
nessmediametadataretriever #
nessmediametadataretriever
A Flutter plugin to read metadata of media files for Android and IOS.
A part of Ness open source project
Install #
Add in your pubspec.yaml.
dependencies:
...
nessmediametadataretriever: ^1.1.1
copied to clipboard
Issues are maintained here.
Support #
Example #
var metadata = await NessMetadataRetriever.fromFile(File('your file path'))
String? title = metadata.title;
String? artist = metadata.artist;
String? album = metadata.album;
String? albumArtist = metadata.albumArtist;
String? path = metadata.path;
Duration? duration = metadata.duration;
Uint8List? albumArt = metadata.albumArt;
copied to clipboard
Platforms #
Platform
Status
Android
Working
IOS
Working
License #
This library & work under this repository is MIT licensed.
Copyright (C) 2021 Abdoulaye M Koné [email protected]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.