mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
sora: small fix in series9
This commit is contained in:
parent
81f614bd7c
commit
67f87cd7a5
4 changed files with 32 additions and 21 deletions
30
SoraStream/src/main/kotlin/com/hexated/Extractors.kt
Normal file
30
SoraStream/src/main/kotlin/com/hexated/Extractors.kt
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
package com.hexated
|
||||||
|
|
||||||
|
import com.lagradost.cloudstream3.extractors.Filesim
|
||||||
|
import com.lagradost.cloudstream3.extractors.StreamSB
|
||||||
|
import com.lagradost.cloudstream3.extractors.XStreamCdn
|
||||||
|
|
||||||
|
class Sbnet : StreamSB() {
|
||||||
|
override var name = "Sbnet"
|
||||||
|
override var mainUrl = "https://sbnet.one"
|
||||||
|
}
|
||||||
|
|
||||||
|
class StreamM4u : XStreamCdn() {
|
||||||
|
override val name: String = "StreamM4u"
|
||||||
|
override val mainUrl: String = "https://streamm4u.club"
|
||||||
|
}
|
||||||
|
|
||||||
|
class Sblongvu : StreamSB() {
|
||||||
|
override var name = "Sblongvu"
|
||||||
|
override var mainUrl = "https://sblongvu.com"
|
||||||
|
}
|
||||||
|
|
||||||
|
class Keephealth : StreamSB() {
|
||||||
|
override var name = "Keephealth"
|
||||||
|
override var mainUrl = "https://keephealth.info"
|
||||||
|
}
|
||||||
|
|
||||||
|
class FileMoonIn : Filesim() {
|
||||||
|
override val mainUrl = "https://filemoon.in"
|
||||||
|
override val name = "FileMoon"
|
||||||
|
}
|
|
@ -2770,26 +2770,6 @@ object SoraExtractor : SoraStream() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class StreamM4u : XStreamCdn() {
|
|
||||||
override val name: String = "StreamM4u"
|
|
||||||
override val mainUrl: String = "https://streamm4u.club"
|
|
||||||
}
|
|
||||||
|
|
||||||
class Sblongvu : StreamSB() {
|
|
||||||
override var name = "Sblongvu"
|
|
||||||
override var mainUrl = "https://sblongvu.com"
|
|
||||||
}
|
|
||||||
|
|
||||||
class Keephealth : StreamSB() {
|
|
||||||
override var name = "Keephealth"
|
|
||||||
override var mainUrl = "https://keephealth.info"
|
|
||||||
}
|
|
||||||
|
|
||||||
class FileMoonIn : Filesim() {
|
|
||||||
override val mainUrl = "https://filemoon.in"
|
|
||||||
override val name = "FileMoon"
|
|
||||||
}
|
|
||||||
|
|
||||||
data class FDMovieIFrame(
|
data class FDMovieIFrame(
|
||||||
val link: String,
|
val link: String,
|
||||||
val quality: String,
|
val quality: String,
|
||||||
|
|
|
@ -89,7 +89,7 @@ open class SoraStream : TmdbProvider() {
|
||||||
const val movieHabAPI = "https://moviehab.com"
|
const val movieHabAPI = "https://moviehab.com"
|
||||||
const val databaseGdriveAPI = "https://databasegdriveplayer.co"
|
const val databaseGdriveAPI = "https://databasegdriveplayer.co"
|
||||||
const val hdMovieBoxAPI = "https://hdmoviebox.net"
|
const val hdMovieBoxAPI = "https://hdmoviebox.net"
|
||||||
const val series9API = "https://series9.la"
|
const val series9API = "https://series9.sh"
|
||||||
const val idlixAPI = "https://idlixian.com"
|
const val idlixAPI = "https://idlixian.com"
|
||||||
const val noverseAPI = "https://www.nollyverse.com"
|
const val noverseAPI = "https://www.nollyverse.com"
|
||||||
const val uniqueStreamAPI = "https://uniquestream.net"
|
const val uniqueStreamAPI = "https://uniquestream.net"
|
||||||
|
|
|
@ -15,5 +15,6 @@ class SoraStreamPlugin: Plugin() {
|
||||||
registerExtractorAPI(Sblongvu())
|
registerExtractorAPI(Sblongvu())
|
||||||
registerExtractorAPI(Keephealth())
|
registerExtractorAPI(Keephealth())
|
||||||
registerExtractorAPI(FileMoonIn())
|
registerExtractorAPI(FileMoonIn())
|
||||||
|
registerExtractorAPI(Sbnet())
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue