artwork_extractor_dart
a simple library to extract & save artwork of a �� music/audio file.
this library is using a artwork-extractor library by alexmercerind. it is super simple to use, but requires a dll file, that needs to be built from artwork-extractor library. it uses dart ffi, which means, that it can run in plain dart applications aswell as in flutter applications.
usage
a simple usage example:
import 'package:artwork_extractor_dart/artwork_extractor_dart.dart'
as artworkextractor;
void main() {
artworkextractor.write('test.ogg', 'test.png');
}
Comments are closed.