anitubeinua: add all qual. for csst player
This commit is contained in:
parent
3a4c8ae994
commit
f4961da4f4
2 changed files with 13 additions and 13 deletions
|
@ -299,18 +299,19 @@ class AnitubeinuaProvider : MainAPI() {
|
|||
)
|
||||
}
|
||||
contains("https://csst.online/embed/") -> {
|
||||
callback.invoke(
|
||||
ExtractorLink(
|
||||
decode(playerNamesArray[index]),
|
||||
name = decode(playerNamesArray[index]),
|
||||
csstExtractor().ParseUrl(Jsoup.parse(dub[dataList[0].toInt()].code).select("iframe")
|
||||
.attr("src")).split(",")[0].substringAfter("]"),
|
||||
"",
|
||||
0,
|
||||
isM3u8 = false
|
||||
csstExtractor().ParseUrl(Jsoup.parse(dub[dataList[0].toInt()].code).select("iframe")
|
||||
.attr("src")).split(",").forEach{
|
||||
callback.invoke(
|
||||
ExtractorLink(
|
||||
decode(playerNamesArray[index]),
|
||||
name = "${decode(playerNamesArray[index])} ${it.substringBefore("]").drop(1)}",
|
||||
it.substringAfter("]"),
|
||||
"",
|
||||
0,
|
||||
isM3u8 = false
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
}
|
||||
}
|
||||
else -> {}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package com.lagradost.extractors
|
||||
|
||||
import android.util.Log
|
||||
import com.lagradost.cloudstream3.app
|
||||
|
||||
class csstExtractor {
|
||||
|
@ -9,7 +8,7 @@ class csstExtractor {
|
|||
.substringAfterLast("file:\"")
|
||||
.substringBefore("\",")
|
||||
|
||||
Log.d("load-debug", playerLinks)
|
||||
// Log.d("load-debug", playerLinks)
|
||||
|
||||
return playerLinks
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue