Skip to content

Commit

Permalink
exts: Do not include quality sources, dubbing only
Browse files Browse the repository at this point in the history
  • Loading branch information
CakesTwix committed Aug 14, 2024
1 parent dd7df1e commit 555c16c
Show file tree
Hide file tree
Showing 34 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion AnimeONProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 5
version = 6

dependencies{
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class AnimeONProvider : MainAPI() {
source = "${dub.fundub.name} (${dub.player[0].name})",
streamUrl = getM3U(app.get("${apiUrl}/player/episode/${epd.id}").parsedSafe<FundubVideoUrl>()!!.videoUrl),
referer = "https://animeon.club"
).forEach(callback)
).last().let(callback)
}
}
return true
Expand All @@ -220,7 +220,7 @@ class AnimeONProvider : MainAPI() {
source = "${dub.fundub.name} (${dub.player[0].name})",
streamUrl = getM3U(app.get("${apiUrl}/player/${dub.player[0].id}/${dub.fundub.id}").parsedSafe<FundubVideoUrl>()!!.videoUrl),
referer = "https://animeon.club"
).forEach(callback)
).last().let(callback)
}

return true
Expand Down
2 changes: 1 addition & 1 deletion AnimeUAProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 5
version = 6


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class AnimeUAProvider : MainAPI() {
source = dataList[0],
streamUrl = m3u8Url,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

return true
}
Expand All @@ -200,7 +200,7 @@ class AnimeUAProvider : MainAPI() {
source = dubs.title,
streamUrl = episode.file,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion AnitubeinuaProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 9
version = 10


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,14 +197,14 @@ class AnitubeinuaProvider : MainAPI() {
source = "${it.urls.playerName} (${it.urls.name})",
streamUrl = AshdiExtractor().ParseM3U8(this.urls.url),
referer = "https://tortuga.wtf/")
.forEach(callback)
.last().let(callback)
}
it.urls.url.contains("https://ashdi.vip/vod") -> {
M3u8Helper.generateM3u8(
source = "${it.urls.playerName} (${it.urls.name})",
streamUrl = AshdiExtractor().ParseM3U8(this.urls.url),
referer = "https://qeruya.cyou")
.forEach(callback)
.last().let(callback)
}
it.urls.url.contains("https://www.udrop.com") -> {
callback.invoke(
Expand Down Expand Up @@ -274,14 +274,14 @@ class AnitubeinuaProvider : MainAPI() {
source = dub.playerName,
streamUrl = AshdiExtractor().ParseM3U8(this),
referer = "https://tortuga.wtf/")
.forEach(callback)
.last().let(callback)
}
contains("https://ashdi.vip/vod") -> {
M3u8Helper.generateM3u8(
source = dub.playerName,
streamUrl = AshdiExtractor().ParseM3U8(this),
referer = "https://qeruya.cyou")
.forEach(callback)
.last().let(callback)
}
contains("https://www.udrop.com") -> {
callback.invoke(
Expand Down
2 changes: 1 addition & 1 deletion BambooUAProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 4
version = 5

dependencies {
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ class BambooUAProvider : MainAPI() {
source = it.attr("data-title"),
streamUrl = it.attr("data-file"),
referer = ""
).forEach(callback)
).last().let(callback)
}
return true
}
Expand All @@ -215,7 +215,7 @@ class BambooUAProvider : MainAPI() {
source = "Bambooua",
streamUrl = data,
referer = ""
).forEach(callback)
).last().let(callback)

return true
}
Expand Down
2 changes: 1 addition & 1 deletion EneyidaProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 5
version = 6


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class EneyidaProvider : MainAPI() {
source = dataList[0],
streamUrl = m3u8Url.replace("https://", "http://"),
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

val subtitleUrl = app.get(dataList[1]).document.select("script").html()
.substringAfterLast("subtitle: \"")
Expand Down Expand Up @@ -186,7 +186,7 @@ class EneyidaProvider : MainAPI() {
source = dubs.title,
streamUrl = episode.file.replace("https://", "http://"),
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

if(episode.subtitle.isBlank()) return true
subtitleCallback.invoke(
Expand Down
2 changes: 1 addition & 1 deletion HigoTVProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 5
version = 6

dependencies{
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ class HigoTVProvider : MainAPI() {
source = it.title,
streamUrl = it.file!!,
referer = "https://moonanime.art"
).forEach(callback)
).last().let(callback)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion KinoTronProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 3
version = 4


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class KinoTronProvider : MainAPI() {
source = dataList[0],
streamUrl = m3u8Url,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

return true
}
Expand All @@ -193,7 +193,7 @@ class KinoTronProvider : MainAPI() {
source = dubs.title,
streamUrl = episode.file,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion KinoVezhaProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 4
version = 5


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class KinoVezhaProvider : MainAPI() {
source = dataList[0],
streamUrl = m3u8Url,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

return true
}
Expand All @@ -166,7 +166,7 @@ class KinoVezhaProvider : MainAPI() {
source = dubs.title,
streamUrl = episode.file,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion KlonTVProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 5
version = 6


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class KlonTVProvider : MainAPI() {
source = dataList[0],
streamUrl = m3u8Url,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

val subtitleUrl = app.get(dataList[1]).document.select("script").html()
.substringAfterLast("subtitle: \"")
Expand Down Expand Up @@ -218,7 +218,7 @@ class KlonTVProvider : MainAPI() {
source = dubs.title,
streamUrl = episode.file,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

if(episode.subtitle.isBlank()) return true
subtitleCallback.invoke(
Expand Down
2 changes: 1 addition & 1 deletion SerialnoProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 2
version = 3


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class SerialnoProvider : MainAPI() {
source = dubs.title,
streamUrl = episode.file,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion TeleportalProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 1
version = 2

dependencies{
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class TeleportalProvider : MainAPI() {
source = video.projectName,
streamUrl = video.mediaHlsNoAdv,
referer = mainUrl
).forEach(callback)
).last().let(callback)
return true
}

Expand Down
2 changes: 1 addition & 1 deletion UAFlixProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 2
version = 3

dependencies {
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class UAFlixProvider : MainAPI() {
source = "UAFlix",
streamUrl = playerRawJson,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
return true
}
val playerRawJson = app.get(playerUrl).document.select("script").html()
Expand All @@ -255,7 +255,7 @@ class UAFlixProvider : MainAPI() {
source = dubs.title,
streamUrl = dubs.folder[0].folder[0].file,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
}

Expand All @@ -276,7 +276,7 @@ class UAFlixProvider : MainAPI() {
source = dubs.title,
streamUrl = episode.file.replace("https://", "http://"),
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion UASerialProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 7
version = 8

dependencies {
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ open class UASerialProvider(url: String, name: String) : MainAPI() {
source = "Movie",
streamUrl = m3u8Url,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)

return true
}
Expand All @@ -187,7 +187,7 @@ open class UASerialProvider(url: String, name: String) : MainAPI() {
source = "${dub.text()} (${player.attr("data-player-id").replaceFirstChar { it.uppercase() }})",
streamUrl = m3u8Url,
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
}
// selecto__dropdown-item
Expand Down
2 changes: 1 addition & 1 deletion UASerialsProProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 5
version = 6

dependencies {
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class UASerialsProProvider : MainAPI() {
source = dataList[0],
streamUrl = m3u8Url.replace("https://", "http://"),
referer = "https://tortuga.wtf/",
).forEach(callback)
).last().let(callback)
return true
}

Expand All @@ -251,7 +251,7 @@ class UASerialsProProvider : MainAPI() {
source = episode.title,
streamUrl = m3u8Url.replace("https://", "http://"),
referer = "https://tortuga.wtf/"
).forEach(callback)
).last().let(callback)
}
return true
}
Expand Down
2 changes: 1 addition & 1 deletion UakinoProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 10
version = 11


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class UakinoProvider : MainAPI() {
streamUrl = m3uLink,
referer = "https://ashdi.vip/"
)
.forEach(callback)
.last().let(callback)
}
}
}
Expand Down Expand Up @@ -281,7 +281,7 @@ class UakinoProvider : MainAPI() {
streamUrl = m3uLink,
referer = "https://ashdi.vip/"
)
.forEach(callback)
.last().let(callback)
}
}
}
Expand Down Expand Up @@ -324,7 +324,7 @@ class UakinoProvider : MainAPI() {
streamUrl = m3uLink,
referer = "https://ashdi.vip/"
)
.forEach(callback)
.last().let(callback)
}
}
}
Expand All @@ -351,7 +351,7 @@ class UakinoProvider : MainAPI() {
streamUrl = m3uLink,
referer = "https://ashdi.vip/"
)
.forEach(callback)
.last().let(callback)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion UnimayProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 9
version = 10

dependencies{
implementation("com.google.code.gson:gson:2.9.0")
Expand Down
Loading

0 comments on commit 555c16c

Please sign in to comment.