extractor 0.0.3 copy "extractor: ^0.0.3" to clipboard
extractor: ^0.0.3 copied to clipboard

Create direct video links from various websites like youtube, vimeo and many more



extractor

Extract direct video links from video websites like youtube, vimeo and many more.

GitHub repo size GitHub



🌈 Supported Websites #

  • youtube.com
  • dailymotion.com
  • vimeo.com
  • yandex.video
  • facebook.com
  • instagram.com (In future updates)
  • soundcloud.com
  • twitter.com
  • tiktok.com
  • vk.com
  • odnoklassniki.ru
  • bilibili.com
  • hotstar.com
  • openloadmovies.net
  • streamago.com
  • tune.pk
  • viu.com

🔥 Usage #

Add the dependency in pubspec.yaml:

dependencies:
  ...
  extractor: ^0.0.1

Change minSdkVersion to 17 in android > app > build.gradle

 android {   
   defaultConfig {     
     minSdkVersion 17      
   }                   
 } 

Get direct link

void getData()async{
  VideoData results = Extractor.getDirectLink(link: 'https://www.youtube.com/watch?v=Ne7y9_AbBsY');
}

VideoData class consists of following,

bool? status;
String? message;
String? title;
String? thumbnail;
String? duration;
List<Link>? links;

✍️ Authors #

📜 License #

This project is licensed under the MIT License - see the LICENSE file for details.

🧰 Contribution #

Feel free to raise issues and open PR

36
likes
110
pub points
78%
popularity

Publisher

verified publisherflutterash.xyz

Create direct video links from various websites like youtube, vimeo and many more

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_inappwebview, html

More

Packages that depend on extractor