From d1db4c33707322363639d2a9dc829fec4a653f30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20Sancak?= Date: Thu, 15 Feb 2024 23:42:11 +0300 Subject: [PATCH] Extractor: Added PlayRu (#930) --- .../cloudstream3/extractors/HotlingerExtractor.kt | 10 ++++++++++ .../com/lagradost/cloudstream3/utils/ExtractorApi.kt | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/app/src/main/java/com/lagradost/cloudstream3/extractors/HotlingerExtractor.kt b/app/src/main/java/com/lagradost/cloudstream3/extractors/HotlingerExtractor.kt index 7389db68..b557a53e 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/extractors/HotlingerExtractor.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/extractors/HotlingerExtractor.kt @@ -10,4 +10,14 @@ class Hotlinger : ContentX() { class FourCX : ContentX() { override var name = "FourCX" override var mainUrl = "https://four.contentx.me" +} + +class PlayRu : ContentX() { + override var name = "PlayRu" + override var mainUrl = "https://playru.net" +} + +class FourPlayRu : ContentX() { + override var name = "FourPlayRu" + override var mainUrl = "https://four.playru.net" } \ No newline at end of file diff --git a/app/src/main/java/com/lagradost/cloudstream3/utils/ExtractorApi.kt b/app/src/main/java/com/lagradost/cloudstream3/utils/ExtractorApi.kt index 4f9c5e8c..637f65b9 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/utils/ExtractorApi.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/utils/ExtractorApi.kt @@ -106,6 +106,8 @@ import com.lagradost.cloudstream3.extractors.ContentX import com.lagradost.cloudstream3.extractors.EmturbovidExtractor import com.lagradost.cloudstream3.extractors.Hotlinger import com.lagradost.cloudstream3.extractors.FourCX +import com.lagradost.cloudstream3.extractors.PlayRu +import com.lagradost.cloudstream3.extractors.FourPlayRu import com.lagradost.cloudstream3.extractors.HDMomPlayer import com.lagradost.cloudstream3.extractors.HDPlayerSystem import com.lagradost.cloudstream3.extractors.VideoSeyred @@ -704,6 +706,8 @@ val extractorApis: MutableList = arrayListOf( ContentX(), Hotlinger(), FourCX(), + PlayRu(), + FourPlayRu(), HDMomPlayer(), HDPlayerSystem(), VideoSeyred(),