Skip to content

Commit ede4c26

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 560858e + 368ee2a commit ede4c26

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/ByseSX.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ class Bysezejataos : ByseSX() {
2121
override var mainUrl = "https://bysezejataos.com"
2222
}
2323

24+
@Prerelease
25+
class ByseBuho : ByseSX() {
26+
override var name = "ByseBuho"
27+
override var mainUrl = "https://bysebuho.com"
28+
}
29+
30+
@Prerelease
31+
class ByseVepoin : ByseSX() {
32+
override var name = "ByseVepoin"
33+
override var mainUrl = "https://bysevepoin.com"
34+
}
35+
2436
@Prerelease
2537
open class ByseSX : ExtractorApi() {
2638
override var name = "Byse"

library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/DoodExtractor.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ class Ds2video : DoodLaExtractor() {
7373
override var mainUrl = "https://ds2video.com"
7474
}
7575

76+
class MyVidPlay : DoodLaExtractor() {
77+
override var mainUrl = "https://myvidplay.com"
78+
}
79+
7680
open class DoodLaExtractor : ExtractorApi() {
7781
override var name = "DoodStream"
7882
override var mainUrl = "https://dood.la"

library/src/commonMain/kotlin/com/lagradost/cloudstream3/utils/ExtractorApi.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ import com.lagradost.cloudstream3.extractors.Blogger
2020
import com.lagradost.cloudstream3.extractors.BullStream
2121
import com.lagradost.cloudstream3.extractors.ByseSX
2222
import com.lagradost.cloudstream3.extractors.Bysezejataos
23+
import com.lagradost.cloudstream3.extractors.ByseBuho
24+
import com.lagradost.cloudstream3.extractors.ByseVepoin
2325
import com.lagradost.cloudstream3.extractors.ByteShare
2426
import com.lagradost.cloudstream3.extractors.Cda
2527
import com.lagradost.cloudstream3.extractors.Cdnplayer
@@ -143,6 +145,7 @@ import com.lagradost.cloudstream3.extractors.Moviesm4u
143145
import com.lagradost.cloudstream3.extractors.Mp4Upload
144146
import com.lagradost.cloudstream3.extractors.Multimovies
145147
import com.lagradost.cloudstream3.extractors.Mvidoo
148+
import com.lagradost.cloudstream3.extractors.MyVidPlay
146149
import com.lagradost.cloudstream3.extractors.Mwish
147150
import com.lagradost.cloudstream3.extractors.MwvnVizcloudInfo
148151
import com.lagradost.cloudstream3.extractors.NathanFromSubject
@@ -1227,6 +1230,9 @@ val extractorApis: MutableList<ExtractorApi> = arrayListOf(
12271230
VkExtractor(),
12281231
Bysezejataos(),
12291232
ByseSX(),
1233+
ByseVepoin(),
1234+
ByseBuho(),
1235+
MyVidPlay(),
12301236
Up4Stream(),
12311237
Up4FunTop()
12321238
)
@@ -1352,4 +1358,4 @@ abstract class ExtractorApi {
13521358
open fun getExtractorUrl(id: String): String {
13531359
return id
13541360
}
1355-
}
1361+
}

0 commit comments

Comments
 (0)