forked from AlmightyHak/extensions-source
Initial commit
This commit is contained in:
commit
98ed7e8839
2263 changed files with 108711 additions and 0 deletions
3
lib/streamlare-extractor/build.gradle.kts
Normal file
3
lib/streamlare-extractor/build.gradle.kts
Normal file
|
@ -0,0 +1,3 @@
|
|||
plugins {
|
||||
id("lib-android")
|
||||
}
|
|
@ -0,0 +1,57 @@
|
|||
package eu.kanade.tachiyomi.lib.streamlareextractor
|
||||
|
||||
import eu.kanade.tachiyomi.animesource.model.Video
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.network.POST
|
||||
import okhttp3.MediaType.Companion.toMediaType
|
||||
import okhttp3.OkHttpClient
|
||||
import okhttp3.RequestBody.Companion.toRequestBody
|
||||
|
||||
class StreamlareExtractor(private val client: OkHttpClient) {
|
||||
fun videosFromUrl(url: String, prefix: String = "", suffix: String = ""): List<Video> {
|
||||
val id = url.split("/").last()
|
||||
val playlist = client.newCall(
|
||||
POST(
|
||||
"https://slwatch.co/api/video/stream/get",
|
||||
body = "{\"id\":\"$id\"}"
|
||||
.toRequestBody("application/json".toMediaType()),
|
||||
),
|
||||
).execute().body.string()
|
||||
|
||||
val type = playlist.substringAfter("\"type\":\"").substringBefore("\"")
|
||||
return if (type == "hls") {
|
||||
val masterPlaylistUrl = playlist.substringAfter("\"file\":\"").substringBefore("\"").replace("\\/", "/")
|
||||
val masterPlaylist = client.newCall(GET(masterPlaylistUrl)).execute().body.string()
|
||||
|
||||
val separator = "#EXT-X-STREAM-INF"
|
||||
masterPlaylist.substringAfter(separator).split(separator).map {
|
||||
val quality = it.substringAfter("RESOLUTION=").substringAfter("x").substringBefore(",") + "p"
|
||||
val videoUrl = it.substringAfter("\n").substringBefore("\n").let { urlPart ->
|
||||
when {
|
||||
!urlPart.startsWith("http") ->
|
||||
masterPlaylistUrl.substringBefore("master.m3u8") + urlPart
|
||||
else -> urlPart
|
||||
}
|
||||
}
|
||||
Video(videoUrl, buildQuality(quality, prefix, suffix), videoUrl)
|
||||
}
|
||||
} else {
|
||||
val separator = "\"label\":\""
|
||||
playlist.substringAfter(separator).split(separator).map {
|
||||
val quality = it.substringAfter(separator).substringBefore("\",")
|
||||
val apiUrl = it.substringAfter("\"file\":\"").substringBefore("\",")
|
||||
.replace("\\", "")
|
||||
val response = client.newCall(POST(apiUrl)).execute()
|
||||
val videoUrl = response.request.url.toString()
|
||||
Video(videoUrl, buildQuality(quality, prefix, suffix), videoUrl)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun buildQuality(resolution: String, prefix: String = "", suffix: String = "") =
|
||||
buildString {
|
||||
if (prefix.isNotBlank()) append("$prefix ")
|
||||
append("Streamlare:$resolution")
|
||||
if (suffix.isNotBlank()) append(" $suffix")
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue