getVideoInfo method

  1. @override
Future<VideoInfo> getVideoInfo(
  1. String path
)
override

Implementation

@override
Future<VideoInfo> getVideoInfo(String path) async {
  final m = await _rawInfo(path);
  m['path'] = path;
  return VideoInfo.fromMap(m);
}