xmltovtt 1.0.51 copy "xmltovtt: ^1.0.51" to clipboard
xmltovtt: ^1.0.51 copied to clipboard

A Dart console app to convert subtitle files from xml to vtt.

example/example.dart

import 'dart:io' show Directory;

import 'package:xmltovtt/xmltovtt.dart' as app;

void main() {
  // The directory where you want to convert the files
  final dir = Directory('data');

  // Exit with code 1 if the directory do not exists
  app.checkDirExists(dir);
  app.start(dir);
}
1
likes
160
points
42
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart console app to convert subtitle files from xml to vtt.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

args

More

Packages that depend on xmltovtt