For those who want to create a movie and downloader app, this is a useful package.
You can get a direct link from the URL that my support sites.
In the pubspec.yaml
of your flutter project, add the following dependency:
dependencies:
...
direct_link: latest
In your library add the following import:
import 'package:direct_link/direct_link.dart';
var directLink = DirectLink();
Use check
function to check your link have been existed my support sites
var data = await directLink.check('url'); // add your url
if (data != null) {
print(data.title);
print(data.thumbnail);
print(data.duration);
for (var e in data.links!) {
print(e.type);
print(e.quality);
print(e.link);
print('-' * 20);
}
}
Feel free to file an issue if you find a problem or make pull requests.
All contributions are welcome :)