mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Extractor: Added PlayRu (#930)
This commit is contained in:
parent
8d318ca84a
commit
d1db4c3370
2 changed files with 14 additions and 0 deletions
|
@ -10,4 +10,14 @@ class Hotlinger : ContentX() {
|
||||||
class FourCX : ContentX() {
|
class FourCX : ContentX() {
|
||||||
override var name = "FourCX"
|
override var name = "FourCX"
|
||||||
override var mainUrl = "https://four.contentx.me"
|
override var mainUrl = "https://four.contentx.me"
|
||||||
|
}
|
||||||
|
|
||||||
|
class PlayRu : ContentX() {
|
||||||
|
override var name = "PlayRu"
|
||||||
|
override var mainUrl = "https://playru.net"
|
||||||
|
}
|
||||||
|
|
||||||
|
class FourPlayRu : ContentX() {
|
||||||
|
override var name = "FourPlayRu"
|
||||||
|
override var mainUrl = "https://four.playru.net"
|
||||||
}
|
}
|
|
@ -106,6 +106,8 @@ import com.lagradost.cloudstream3.extractors.ContentX
|
||||||
import com.lagradost.cloudstream3.extractors.EmturbovidExtractor
|
import com.lagradost.cloudstream3.extractors.EmturbovidExtractor
|
||||||
import com.lagradost.cloudstream3.extractors.Hotlinger
|
import com.lagradost.cloudstream3.extractors.Hotlinger
|
||||||
import com.lagradost.cloudstream3.extractors.FourCX
|
import com.lagradost.cloudstream3.extractors.FourCX
|
||||||
|
import com.lagradost.cloudstream3.extractors.PlayRu
|
||||||
|
import com.lagradost.cloudstream3.extractors.FourPlayRu
|
||||||
import com.lagradost.cloudstream3.extractors.HDMomPlayer
|
import com.lagradost.cloudstream3.extractors.HDMomPlayer
|
||||||
import com.lagradost.cloudstream3.extractors.HDPlayerSystem
|
import com.lagradost.cloudstream3.extractors.HDPlayerSystem
|
||||||
import com.lagradost.cloudstream3.extractors.VideoSeyred
|
import com.lagradost.cloudstream3.extractors.VideoSeyred
|
||||||
|
@ -704,6 +706,8 @@ val extractorApis: MutableList<ExtractorApi> = arrayListOf(
|
||||||
ContentX(),
|
ContentX(),
|
||||||
Hotlinger(),
|
Hotlinger(),
|
||||||
FourCX(),
|
FourCX(),
|
||||||
|
PlayRu(),
|
||||||
|
FourPlayRu(),
|
||||||
HDMomPlayer(),
|
HDMomPlayer(),
|
||||||
HDPlayerSystem(),
|
HDPlayerSystem(),
|
||||||
VideoSeyred(),
|
VideoSeyred(),
|
||||||
|
|
Loading…
Reference in a new issue