savely 0.0.5
savely: ^0.0.5 copied to clipboard
With Savely, you can easily download and retrieve the duration and type of a video, get the direct link of its thumbnail, and perform other operations .
example/README.md
Example #
import 'package:flutter/foundation.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:savely/savely.dart';
void main() {
test('test', () async {
final Savely savely = Savely();
await savely.down('https://www.youtube.com/watch?v=J_hQpNWA-Z8');
if (kDebugMode) {
print('source : ${savely.source}');
print('title : ${savely.title}');
print('duration : ${savely.duration}');
print('thumbnail : ${savely.thumbnail}');
print('website : ${savely.website}');
print('data : ${savely.data}');
}
});
}