Link Extractor

A Simple utility for extracting media urls from differennt social media websites.
View on pub.dev

style: very good analysis License: MIT


Supported Websites

  1. Ok.ru

Baic Usage

import 'package:link_extractor/link_extractor.dart';

try {
    final extractor = LinkExtractor();
    final links = await extractor.extract(
      'https://ok.ru/video/43134487273',
    );
    extractor.dispose();
    print(links);
} on UnsupportedSiteException (e) {
    print('Website not supported. { error : $e }');
}

GitHub

View Github