forked from recloudstream/cloudstream
Keys (#880)
This commit is contained in:
parent
279605e6ae
commit
8f4d60bd09
2 changed files with 5 additions and 2 deletions
|
@ -380,9 +380,9 @@ class GogoanimeProvider : MainAPI() {
|
||||||
loadExtractor(data, streamingResponse.url, callback)
|
loadExtractor(data, streamingResponse.url, callback)
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
val iv = "31323835363732333833393339383532".decodeHex()
|
val iv = "4770478969418267".toByteArray()
|
||||||
val secretKey =
|
val secretKey =
|
||||||
"3235373136353338353232393338333936313634363632323738383333323838".decodeHex()
|
"63976882873559819639988080820907".toByteArray()
|
||||||
extractVidstream(iframe, this.name, callback, iv, secretKey)
|
extractVidstream(iframe, this.name, callback, iv, secretKey)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,9 @@ class VidEmbedProvider : VidstreamProviderTemplate() {
|
||||||
"$mainUrl/cinema-movies"
|
"$mainUrl/cinema-movies"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
override val iv = "9225679083961858".toByteArray()
|
||||||
|
override val secretKey = "25742532592138496744665879883281".toByteArray()
|
||||||
|
|
||||||
// This is just extra metadata about what type of movies the provider has.
|
// This is just extra metadata about what type of movies the provider has.
|
||||||
// Needed for search functionality.
|
// Needed for search functionality.
|
||||||
override val supportedTypes = setOf(TvType.TvSeries, TvType.Movie)
|
override val supportedTypes = setOf(TvType.TvSeries, TvType.Movie)
|
||||||
|
|
Loading…
Reference in a new issue