Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,11 @@ class Playerwish : StreamWishExtractor() {
override val mainUrl = "https://playerwish.com"
}

class StreamHLS : StreamWishExtractor() {
override val name = "StreamHLS"
override val mainUrl = "https://streamhls.to"
}

open class StreamWishExtractor : ExtractorApi() {
override val name = "Streamwish"
override val mainUrl = "https://streamwish.to"
Expand Down Expand Up @@ -212,6 +217,9 @@ open class StreamWishExtractor : ExtractorApi() {
return if (inputUrl.contains("/f/")) {
val videoId = inputUrl.substringAfter("/f/")
"$mainUrl/$videoId"
} else if (inputUrl.contains("/e/")) {
val videoId = inputUrl.substringAfter("/e/")
"$mainUrl/$videoId"
} else {
inputUrl
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ import com.lagradost.cloudstream3.extractors.Sobreatsesuyp
import com.lagradost.cloudstream3.extractors.Solidfiles
import com.lagradost.cloudstream3.extractors.Ssbstream
import com.lagradost.cloudstream3.extractors.StreamEmbed
import com.lagradost.cloudstream3.extractors.StreamHLS
import com.lagradost.cloudstream3.extractors.StreamM4u
import com.lagradost.cloudstream3.extractors.StreamSB
import com.lagradost.cloudstream3.extractors.StreamSB1
Expand Down Expand Up @@ -1169,6 +1170,7 @@ val extractorApis: MutableList<ExtractorApi> = arrayListOf(
Lulustream1(),
Lulustream2(),
StreamWishExtractor(),
StreamHLS(),
BigwarpIO(),
BigwarpArt(),
BgwpCC(),
Expand Down Expand Up @@ -1360,4 +1362,4 @@ abstract class ExtractorApi {
open fun getExtractorUrl(id: String): String {
return id
}
}
}