Extractor

abstract class Extractor(url: String)

Author

Udhaya Created on 21-01-2022

This is super class of all kind of Extractor

Don't directly create instance of Extractor abstract class

use Extractor.findExtractor to get required extractor

Constructors

Link copied to clipboard
fun Extractor(url: String)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun failed(error: Error)
Link copied to clipboard
fun setCustomClient(httpClient: HttpClient, autoCloseClient: Boolean = true)

If you have any custom client to work on you can use it.

Link copied to clipboard
suspend fun start(progressCallback: ProgressCallback)

starting point of all child of Extractor where net safe analyze will be called

suspend fun start(progressCallback: (Result) -> Unit)
Link copied to clipboard
fun startAsync(progressCallback: ProgressCallback)
Link copied to clipboard
abstract suspend fun testWebpage(string: String)

Properties

Link copied to clipboard
var cookies: String? = null

If media is private just pass valid cookies to extract list of Formats

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard