lyrics_parser 1.0.0-nullsafety.0 copy "lyrics_parser: ^1.0.0-nullsafety.0" to clipboard
lyrics_parser: ^1.0.0-nullsafety.0 copied to clipboard

.lrc file parser and lyrics tracker.

example/example.dart

import 'dart:io';

import 'package:lyrics_parser/lyrics_parser.dart';

void main(List<String> args) async {
  final file = File('./resources/See You Again.lcr');
  final parser = LyricsParser.fromFile(file);
  await parser.ready();
  final result = await parser.parse();
  for (final lyric in result.lyricList) {
    print('${lyric.startTimeMillisecond}: ${lyric.content}');
  }
}
12
likes
140
points
56
downloads

Publisher

unverified uploader

Weekly Downloads

.lrc file parser and lyrics tracker.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

characters, path

More

Packages that depend on lyrics_parser