This commit is contained in:
Stormunblessed 2022-03-29 18:34:34 +00:00 committed by GitHub
parent 279605e6ae
commit 8f4d60bd09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -380,9 +380,9 @@ class GogoanimeProvider : MainAPI() {
loadExtractor(data, streamingResponse.url, callback)
}
}, {
val iv = "31323835363732333833393339383532".decodeHex()
val iv = "4770478969418267".toByteArray()
val secretKey =
"3235373136353338353232393338333936313634363632323738383333323838".decodeHex()
"63976882873559819639988080820907".toByteArray()
extractVidstream(iframe, this.name, callback, iv, secretKey)
})
}

View file

@ -20,6 +20,9 @@ class VidEmbedProvider : VidstreamProviderTemplate() {
"$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.
// Needed for search functionality.
override val supportedTypes = setOf(TvType.TvSeries, TvType.Movie)