dart_tags 0.4.1 dart_tags: ^0.4.1 copied to clipboard
The library for work with music tags like ID3. Written on pure Dart. It can be used in flutter, web, and vm projects.
import 'dart:io';
import 'package:dart_tags/dart_tags.dart';
void main(List<String> args) {
if (args.isNotEmpty) {
args.forEach(_proceedArg);
} else {
print('args please!');
}
}
void _proceedArg(String path) {
final fileType = FileStat.statSync(path).type;
switch (fileType) {
case FileSystemEntityType.directory:
Directory(path)
.list(recursive: true, followLinks: false)
.listen((FileSystemEntity entity) {
if (entity.statSync().type == FileSystemEntityType.file &&
entity.path.endsWith('.mp3')) {
printFileInfo(entity.path);
}
});
break;
case FileSystemEntityType.file:
if (path.endsWith('.mp3')) {
printFileInfo(path);
}
break;
case FileSystemEntityType.notFound:
print('file not found');
break;
default:
print('sorry dude I don`t know what I must to do with that...\n');
}
}
void printFileInfo(String fileName) {
final file = File(fileName);
TagProcessor().getTagsFromByteArray(file.readAsBytes()).then((l) {
print('FILE: $fileName');
l.forEach(print);
print('\n');
});
}