savely 0.0.7 copy "savely: ^0.0.7" to clipboard
savely: ^0.0.7 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}');
    }
  });
}
12
likes
140
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

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 .

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

http

More

Packages that depend on savely