diff --git a/README.md b/README.md index 963c5092..4b83a1fc 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,3 @@ ### Based on CatVod https://github.com/CatVodTVOfficial/CatVodTVSpider - -### Usage - -[fastgit](https://raw.fastgit.org/FongMi/CatVodSpider/main/json/config.json) -[ghproxy](https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/json/config.json) -[https://fongmi.page.link/cat](https://fongmi.page.link/cat) diff --git a/app/build.gradle b/app/build.gradle index b4f57e1a..fd3b12e8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,7 +11,6 @@ android { minSdk 17 targetSdk 29 ndk { abiFilters "armeabi-v7a" } - buildConfigField("String", "APP_ID", "\"${appId}\"") buildConfigField("String", "CLIENT_ID", "\"${clientId}\"") } @@ -37,7 +36,6 @@ android { dependencies { //Debug For HTTP/3 debugImplementation 'org.chromium.net:cronet-embedded:101.4951.41' - implementation 'com.starkbank.ellipticcurve:starkbank-ecdsa:1.0.2' implementation 'com.google.net.cronet:cronet-okhttp:0.1.0' implementation 'androidx.annotation:annotation:1.5.0' implementation 'com.squareup.okhttp3:okhttp:3.12.13' diff --git a/app/src/main/java/com/github/catvod/ali/API.java b/app/src/main/java/com/github/catvod/ali/API.java index 7acb3d6b..1fb3ffb0 100644 --- a/app/src/main/java/com/github/catvod/ali/API.java +++ b/app/src/main/java/com/github/catvod/ali/API.java @@ -4,7 +4,6 @@ import android.app.AlertDialog; import android.content.DialogInterface; import android.graphics.Color; import android.graphics.drawable.ColorDrawable; -import android.net.UrlQuerySanitizer; import android.os.SystemClock; import android.text.TextUtils; import android.util.Log; @@ -26,9 +25,6 @@ import com.github.catvod.utils.Prefers; import com.github.catvod.utils.QRCode; import com.github.catvod.utils.Trans; import com.github.catvod.utils.Utils; -import com.starkbank.ellipticcurve.Ecdsa; -import com.starkbank.ellipticcurve.PrivateKey; -import com.starkbank.ellipticcurve.utils.BinaryAscii; import org.json.JSONArray; import org.json.JSONObject; @@ -43,13 +39,11 @@ import java.util.Map; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; -import java.util.concurrent.locks.ReentrantLock; public class API { + private final Map quality; private ScheduledExecutorService service; - private Map mediaId2Url; - private final ReentrantLock lock; private AlertDialog dialog; private String shareToken; private final Auth auth; @@ -64,8 +58,14 @@ public class API { } private API() { - this.lock = new ReentrantLock(true); - this.auth = Auth.objectFrom(Prefers.getString("aliyundrive")); + auth = Auth.objectFrom(Prefers.getString("aliyundrive")); + quality = new HashMap<>(); + quality.put("4K", "UHD"); + quality.put("2k", "QHD"); + quality.put("超清", "FHD"); + quality.put("高清", "HD"); + quality.put("標清", "SD"); + quality.put("流暢", "LD"); } public void setRefreshToken(String token) { @@ -98,13 +98,6 @@ public class API { return headers; } - private HashMap getHeaderSign() { - HashMap headers = getHeaderAuth(); - headers.put("x-device-id", auth.getDeviceId()); - headers.put("x-signature", auth.getSignature()); - return headers; - } - private String post(String url, JSONObject body) { url = url.startsWith("https") ? url : "https://api.aliyundrive.com/" + url; return OkHttp.postJson(url, body.toString(), getHeader()); @@ -123,25 +116,16 @@ public class API { } private String oauth(String url, String json, boolean retry) { - url = url.startsWith("https") ? url : "https://api.aliyundrive.com/" + url; + url = url.startsWith("https") ? url : "https://open.aliyundrive.com/adrive/v1.0/" + url; String result = OkHttp.postJson(url, json, getHeaderOpen()); Log.e("oauth", result); if (retry && checkOpen(result)) return oauth(url, json, false); return result; } - private String sign(String url, String json, boolean retry) { - url = url.startsWith("https") ? url : "https://api.aliyundrive.com/" + url; - String result = OkHttp.postJson(url, json, getHeaderSign()); - Log.e("sign", result); - if (retry && checkAuth(result)) return sign(url, json, false); - return result; - } - private boolean checkAuth(String result) { if (result.contains("AccessTokenInvalid")) return refreshAccessToken(); if (result.contains("ShareLinkTokenInvalid") || result.contains("InvalidParameterNotMatch")) return refreshShareToken(); - if (result.contains("UserDeviceOffline") || result.contains("UserDeviceIllegality") || result.contains("DeviceSessionSignatureInvalid")) return refreshSignature(); return false; } @@ -154,10 +138,6 @@ public class API { if (auth.getAccessToken().isEmpty()) refreshAccessToken(); } - private void checkSignature() { - if (auth.getSignature().isEmpty()) refreshSignature(); - } - private boolean refreshAccessToken() { try { SpiderDebug.log("refreshAccessToken..."); @@ -169,7 +149,6 @@ public class API { JSONObject object = new JSONObject(post("https://auth.aliyundrive.com/v2/account/token", body)); Log.e("DDD", object.toString()); auth.setUserId(object.getString("user_id")); - auth.setDeviceId(object.getString("device_id")); auth.setDriveId(object.getString("default_drive_id")); auth.setRefreshToken(object.getString("refresh_token")); auth.setAccessToken(object.getString("token_type") + " " + object.getString("access_token")); @@ -240,31 +219,6 @@ public class API { } } - private boolean refreshSignature() { - try { - SpiderDebug.log("refreshSignature..."); - PrivateKey privateKey = new PrivateKey(); - String pubKey = "04" + BinaryAscii.hexFromBinary(privateKey.publicKey().toByteString().getBytes()); - String message = BuildConfig.APP_ID + ":" + auth.getDeviceId() + ":" + auth.getUserId() + ":" + 0; - String signature = BinaryAscii.hexFromBinary(Ecdsa.sign(message, privateKey).toDer().getBytes()); - auth.setSignature(signature.substring(signature.length() - 128) + "01"); - JSONObject body = new JSONObject(); - body.put("deviceName", "samsung"); - body.put("modelName", "SM-G9810"); - body.put("nonce", 0); - body.put("pubKey", pubKey); - body.put("refreshToken", auth.getRefreshToken()); - JSONObject object = new JSONObject(sign("users/v1/users/device/create_session", body.toString(), false)); - if (!object.getBoolean("success")) throw new Exception(object.toString()); - auth.save(); - return true; - } catch (Exception e) { - auth.setSignature(""); - SpiderDebug.log(e); - return false; - } - } - public Vod getVod(String url, String fileId) throws Exception { JSONObject body = new JSONObject(); body.put("share_id", shareId); @@ -360,27 +314,47 @@ public class API { return sub; } - public String getPreviewUrl(String fileId, String flag) { - return Proxy.getUrl() + "?do=ali&type=m3u8&file_id=" + fileId + "&flag=" + getPreviewQuality(flag); - } - public String getDownloadUrl(String fileId) { try { - fileId = copy(fileId); - return TextUtils.isEmpty(fileId) ? "" : open(fileId); + String tempId = copy(fileId); + JSONObject body = new JSONObject(); + body.put("file_id", tempId); + body.put("drive_id", auth.getDriveId()); + String url = new JSONObject(oauth("openFile/getDownloadUrl", body.toString(), true)).getString("url"); + Init.execute(() -> delete(tempId)); + return url; } catch (Exception e) { e.printStackTrace(); return ""; } } - private String open(String fileId) throws Exception { - JSONObject body = new JSONObject(); - body.put("file_id", fileId); - body.put("drive_id", auth.getDriveId()); - String url = new JSONObject(oauth("https://open.aliyundrive.com/adrive/v1.0/openFile/getDownloadUrl", body.toString(), true)).getString("url"); - Init.execute(() -> delete(fileId)); - return url; + public String getPreviewUrl(String fileId, String flag) { + try { + String tempId = copy(fileId); + JSONObject body = new JSONObject(); + body.put("file_id", tempId); + body.put("drive_id", auth.getDriveId()); + body.put("category", "live_transcoding"); + body.put("url_expire_sec", "14400"); + String json = oauth("openFile/getVideoPreviewPlayInfo", body.toString(), true); + JSONArray taskList = new JSONObject(json).getJSONObject("video_preview_play_info").getJSONArray("live_transcoding_task_list"); + Init.execute(() -> delete(tempId)); + return getPreviewQuality(taskList, flag); + } catch (Exception e) { + e.printStackTrace(); + return ""; + } + } + + private String getPreviewQuality(JSONArray taskList, String flag) throws Exception { + for (int i = 0; i < taskList.length(); ++i) { + JSONObject task = taskList.getJSONObject(i); + if (task.getString("template_id").equals(quality.get(flag))) { + return task.getString("url"); + } + } + return taskList.getJSONObject(0).getString("url"); } private String copy(String fileId) throws Exception { @@ -406,95 +380,6 @@ public class API { return result; } - public Object[] proxyM3U8(Map params) { - String fileId = params.get("file_id"); - String flag = params.get("flag"); - Object[] result = new Object[3]; - result[0] = 200; - result[1] = "application/vnd.apple.mpegurl"; - result[2] = new ByteArrayInputStream(refreshM3U8(fileId, flag).getBytes()); - return result; - } - - public Object[] proxyMedia(Map params) { - try { - String fileId = params.get("file_id"); - String mediaId = params.get("media_id"); - String flag = params.get("flag"); - lock.lock(); - String mediaUrl = mediaId2Url.get(mediaId); - long expires = Long.parseLong(new UrlQuerySanitizer(mediaUrl).getValue("x-oss-expires")); - long current = System.currentTimeMillis() / 1000; - if (expires - current <= 60) { - refreshM3U8(fileId, flag); - mediaUrl = mediaId2Url.get(mediaId); - } - lock.unlock(); - Object[] result = new Object[3]; - result[0] = 200; - result[1] = "video/MP2T"; - result[2] = OkHttp.newCall(mediaUrl, getHeader()).body().byteStream(); - return result; - } catch (Exception e) { - return null; - } - } - - private String refreshM3U8(String fileId, String flag) { - try { - checkSignature(); - JSONObject body = new JSONObject(); - body.put("file_id", fileId); - body.put("share_id", shareId); - body.put("template_id", ""); - body.put("category", "live_transcoding"); - String json = sign("v2/file/get_share_link_video_preview_play_info", body.toString(), true); - JSONArray taskList = new JSONObject(json).getJSONObject("video_preview_play_info").getJSONArray("live_transcoding_task_list"); - Map> respHeaders = new HashMap<>(); - OkHttp.stringNoRedirect(getPreviewQuality(taskList, flag), getHeader(), respHeaders); - String location = OkHttp.getRedirectLocation(respHeaders); - String m3u8 = OkHttp.string(location, getHeader()); - String mediaUrlPrefix = location.substring(0, location.lastIndexOf("/")) + "/"; - List lines = new ArrayList<>(); - int mediaId = 0; - mediaId2Url = new HashMap<>(); - for (String line : m3u8.split("\n")) { - if (line.contains("x-oss-expires")) { - mediaId += 1; - mediaId2Url.put(String.valueOf(mediaId), mediaUrlPrefix + line); - line = Proxy.getUrl() + "?do=ali&type=media" + "&file_id=" + fileId + "&media_id=" + mediaId + "&flag=" + flag; - } - lines.add(line); - } - return TextUtils.join("\n", lines); - } catch (Exception e) { - return ""; - } - } - - private String getPreviewQuality(String flag) { - switch (flag) { - case "2K": - return "QHD"; - case "超清": - return "FHD"; - case "高清": - return "HD"; - default: - return ""; - } - } - - private String getPreviewQuality(JSONArray taskList, String flag) throws Exception { - for (int i = 0; i < taskList.length(); ++i) { - JSONObject task = taskList.getJSONObject(i); - if (task.getString("template_id").equals(flag)) { - return task.getString("url"); - } - } - return taskList.getJSONObject(0).getString("url"); - } - private void getQRCode() { Data data = Data.objectFrom(OkHttp.string("https://passport.aliyundrive.com/newlogin/qrcode/generate.do?appName=aliyun_drive&fromSite=52&appName=aliyun_drive&appEntrance=web&isMobile=false&lang=zh_CN&returnUrl=&bizParams=&_bx-v=2.2.3")).getContent().getData(); Init.run(() -> showQRCode(data)); diff --git a/app/src/main/java/com/github/catvod/bean/ali/Auth.java b/app/src/main/java/com/github/catvod/bean/ali/Auth.java index 8b1d568b..178bf7d6 100644 --- a/app/src/main/java/com/github/catvod/bean/ali/Auth.java +++ b/app/src/main/java/com/github/catvod/bean/ali/Auth.java @@ -16,10 +16,6 @@ public class Auth { private String accessToken; @SerializedName("accessTokenOpen") private String accessTokenOpen; - @SerializedName("signature") - private String signature; - @SerializedName("deviceId") - private String deviceId; @SerializedName("userId") private String userId; @SerializedName("driveId") @@ -62,22 +58,6 @@ public class Auth { this.accessTokenOpen = accessTokenOpen; } - public String getSignature() { - return TextUtils.isEmpty(signature) ? "" : signature; - } - - public void setSignature(String signature) { - this.signature = signature; - } - - public String getDeviceId() { - return deviceId; - } - - public void setDeviceId(String deviceId) { - this.deviceId = deviceId; - } - public String getDriveId() { return TextUtils.isEmpty(driveId) ? "" : driveId; } @@ -103,7 +83,6 @@ public class Auth { setAccessTokenOpen(""); setRefreshToken(""); setAccessToken(""); - setSignature(""); } public void save() { diff --git a/app/src/main/java/com/github/catvod/spider/Ali.java b/app/src/main/java/com/github/catvod/spider/Ali.java index 1f8b9e9a..3d18cd43 100644 --- a/app/src/main/java/com/github/catvod/spider/Ali.java +++ b/app/src/main/java/com/github/catvod/spider/Ali.java @@ -45,8 +45,6 @@ public class Ali extends Spider { public static Object[] vod(Map params) { String type = params.get("type"); if (type.equals("sub")) return API.get().proxySub(params); - if (type.equals("m3u8")) return API.get().proxyM3U8(params); - if (type.equals("media")) return API.get().proxyMedia(params); return null; } } \ No newline at end of file diff --git a/app/src/main/java/com/github/catvod/spider/Live.java b/app/src/main/java/com/github/catvod/spider/Live.java deleted file mode 100644 index 2fc5b683..00000000 --- a/app/src/main/java/com/github/catvod/spider/Live.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.github.catvod.spider; - -import android.app.Activity; -import android.content.ComponentName; -import android.content.Context; -import android.content.Intent; -import android.text.TextUtils; - -import com.github.catvod.crawler.Spider; - -public class Live extends Spider { - - private int delay; - - @Override - public void init(Context context, String extend) { - super.init(context, extend); - this.delay = delay(extend); - } - - @Override - public String homeVideoContent() { - Init.run(this::openLive, delay); - return ""; - } - - private int delay(String extend) { - try { - return TextUtils.isEmpty(extend) ? 0 : Integer.parseInt(extend); - } catch (Throwable ignored) { - return 0; - } - } - - private void openLive() { - try { - Activity activity = Init.getActivity(); - activity.startActivity(new Intent().setComponent(new ComponentName(activity, "com.fongmi.android.tv.ui.activity.LiveActivity"))); - } catch (Throwable ignored) { - } - } -} diff --git a/gradle.properties b/gradle.properties index 024245ed..f48eeb14 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,5 +19,4 @@ android.useAndroidX=true # resources declared in the library itself and none from the library's dependencies, # thereby reducing the size of the R class for that library android.nonTransitiveRClass=true -appId=5dde4e1bdf9e4966b387ba58f4b3fdc3 clientId=76917ccccd4441c39457a04f6084fb2f \ No newline at end of file diff --git a/jar/custom_spider.jar b/jar/custom_spider.jar index bf29ec71..fe48eefe 100644 Binary files a/jar/custom_spider.jar and b/jar/custom_spider.jar differ diff --git a/jar/custom_spider.jar.md5 b/jar/custom_spider.jar.md5 index 485d79b3..57ee7ff2 100644 --- a/jar/custom_spider.jar.md5 +++ b/jar/custom_spider.jar.md5 @@ -1 +1 @@ -ed850893fd0c94513677e7b98cc741a8 +ac115573e4f120c68c0702f89150dbf3 diff --git a/json/adult.json b/json/adult.json index e8e3f54c..981ce678 100644 --- a/json/adult.json +++ b/json/adult.json @@ -1,31 +1,7 @@ { - "spider": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;ed850893fd0c94513677e7b98cc741a8", + "spider": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;ac115573e4f120c68c0702f89150dbf3", "wallpaper": "https://gao.chuqiuyu.tk", - "lives": [ - { - "name": "直播", - "type": 0, - "url": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/txt/adult.txt" - } - ], "sites": [ - { - "key": "AList", - "name": "AList", - "type": 3, - "api": "csp_AList", - "searchable": 1, - "filterable": 1, - "changeable": 0, - "ext": { - "drives": [ - { - "name": "木偶", - "server": "https://www.kugutsu.ml" - } - ] - } - }, { "key": "泥巴", "name": "泥巴", diff --git a/json/alist.json b/json/alist.json index 075fe3d0..90c0e7f5 100644 --- a/json/alist.json +++ b/json/alist.json @@ -27,10 +27,6 @@ { "name": "梓澪", "server": "https://zi0.cc" - }, - { - "name": "Testing purpose", - "server": "https://alist.you-mostmost.repl.co" } ] } diff --git a/json/config.json b/json/config.json index be87fdc5..0e086806 100644 --- a/json/config.json +++ b/json/config.json @@ -1,22 +1,6 @@ { - "spider": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;ed850893fd0c94513677e7b98cc741a8", + "spider": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;ac115573e4f120c68c0702f89150dbf3", "wallpaper": "http://饭太硬.ga/深色壁纸/api.php", - "lives": [ - { - "name": "TXT", - "type": 0, - "url": "http://home.jundie.top:81/Cat/tv/live.txt", - "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={name}&date={date}", - "logo": "https://epg.112114.xyz/logo/{name}.png" - }, - { - "name": "Json", - "type": 1, - "url": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/json/live.json", - "epg": "http://epg.51zmt.top:8000/api/diyp/?ch={epg}&date={date}", - "logo": "http://epg.51zmt.top:8000/{logo}" - } - ], "sites": [ { "key": "AList", @@ -45,94 +29,7 @@ "api": "csp_NiNi", "searchable": 1, "filterable": 1, - "changeable": 1 - }, - { - "key": "獨播", - "name": "獨播", - "type": 3, - "api": "csp_XPathMacFilter", - "searchable": 1, - "filterable": 1, - "changeable": 1, - "ext": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/CatVodSpider/main/json/duboku.json" - }, - { - "key": "快播", - "name": "快播", - "type": 1, - "api": "https://www.kuaibozy.com/api.php/provide/vod/", - "searchable": 1, - "filterable": 0, - "changeable": 1, - "categories": [ - "动漫", - "国产剧", - "日韩剧", - "港台剧", - "欧美剧", - "泰剧", - "动作片", - "喜剧片", - "爱情片", - "科幻片", - "恐怖片", - "剧情片", - "战争片", - "纪录片", - "综艺" - ] - }, - { - "key": "百度", - "name": "百度", - "type": 1, - "api": "https://api.apibdzy.com/api.php/provide/vod/", - "searchable": 1, - "filterable": 0, - "changeable": 1, - "categories": [ - "国产动漫", - "日韩动漫", - "大陆剧", - "欧美剧", - "韩剧", - "日剧", - "动作片", - "喜剧片", - "爱情片", - "科幻片", - "恐怖片", - "剧情片", - "战争片" - ] - }, - { - "key": "櫻花", - "name": "櫻花", - "type": 3, - "api": "csp_Ying", - "searchable": 1, - "filterable": 1, - "changeable": 1 - }, - { - "key": "巴士", - "name": "巴士", - "type": 3, - "api": "csp_Dm84", - "searchable": 1, - "filterable": 1, - "changeable": 1 - }, - { - "key": "異界", - "name": "異界", - "type": 3, - "api": "csp_Ysj", - "searchable": 1, - "filterable": 1, - "changeable": 1 + "ext": "1" }, { "key": "紙條", @@ -184,16 +81,6 @@ "changeable": 0, "ext": "http://ali.饭太硬.ml/alitoken$$$yingshi$$$abcd1234" }, - { - "key": "Live", - "name": "直播", - "type": 3, - "api": "csp_Live", - "searchable": 0, - "filterable": 0, - "changeable": 0, - "ext": "2000" - }, { "key": "push_agent", "name": "推送", diff --git a/json/duboku.json b/json/duboku.json index 77c8ed8b..a58e0f16 100644 --- a/json/duboku.json +++ b/json/duboku.json @@ -58,7 +58,7 @@ "playUrl": "https://my.duboku.vip/vodplay/{playUrl}.html", "playUa": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36", "playReferer": "https://www.duboku.tv/", - "searchUrl": "https://my.duboku.vip/index.php/ajax/suggest?mid=1&wd={wd}&limit=10", + "searchUrl": "https://www.duboku.tv/index.php/ajax/suggest?mid=1&wd={wd}&limit=10", "scVodNode": "json:list", "scVodName": "name", "scVodId": "id", diff --git a/json/live.json b/json/live.json deleted file mode 100644 index 52f1f623..00000000 --- a/json/live.json +++ /dev/null @@ -1,7916 +0,0 @@ -[ - { - "channel": [ - { - "urls": [ - "http://play-live.ifeng.com/live/06OLEGEGM4G.m3u8", - "http://playtv-live.ifeng.com/live/06OLEGEGM4G.m3u8", - "http://playtv-live.ifeng.com/live/06OLEGEGM4G_tv1.m3u8", - "http://playtv-live.ifeng.com/live/06OLEGEGM4G_tv2.m3u8", - "http://playtv-live.ifeng.com:80/live/06OLEGEGM4G.m3u8", - "http://playtv-live.ifeng.com:80/live/06OLEGEGM4G_tv1.m3u8", - "http://playtv-live.ifeng.com:80/live/06OLEGEGM4G_tv2.m3u8", - "https://playtv-live.ifeng.com/live/06OLEGEGM4G_tv1.m3u8", - "https://playtv-live.ifeng.com/live/06OLEGEGM4G_tv2.m3u8", - "http://107.151.203.111:2209/135/hk.php?id=fhzw" - ], - "number": "001", - "logo": "tb1/gt/fenghuangzhongwen.png", - "epg": "凤凰中文", - "name": "凤凰中文" - }, - { - "urls": [ - "http://play-live.ifeng.com/live/06OLEEWQKN4.m3u8", - "http://play-live.ifeng.com/live/06OLEEWQKN4.m3u8", - "http://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8", - "http://playtv-live.ifeng.com/live/06OLEEWQKN4_tv1.m3u8", - "http://playtv-live.ifeng.com/live/06OLEEWQKN4_tv2.m3u8", - "http://playtv-live.ifeng.com:80/live/06OLEEWQKN4.m3u8", - "http://playtv-live.ifeng.com:80/live/06OLEEWQKN4_tv1.m3u8", - "http://playtv-live.ifeng.com:80/live/06OLEEWQKN4_tv2.m3u8", - "https://playtv-live.ifeng.com/live/06OLEEWQKN4.m3u8", - "https://playtv-live.ifeng.com/live/06OLEEWQKN4_tv1.m3u8", - "https://playtv-live.ifeng.com/live/06OLEEWQKN4_tv2.m3u8", - "http://107.151.203.111:2209/135/hk.php?id=fhzx" - ], - "number": "002", - "logo": "tb1/gt/fenghuangzixun.png", - "epg": "凤凰资讯", - "name": "凤凰资讯" - }, - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221226251/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226251/index.m3u8", - "http://zb.688768.xyz/jiudian/jddb.php?member=liubwdefd34&playurl=http://120.84.96.42:808/hls/81/index.m3u8" - ], - "number": "003", - "logo": "tb1/gt/fenghuangxianggang.png", - "epg": "凤凰香港", - "name": "凤凰香港" - }, - { - "urls": [ - "http://111.59.189.40:8445/tsfile/live/1022_1.m3u8", - "http://111.59.189.40:8445/tsfile/live/1022_1.m3u8?zgangd", - "http://218.202.220.2:5000/nn_live.ts?id=NEWSASIA" - ], - "number": "004", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "凤凰电影", - "name": "凤凰电影" - }, - { - "urls": [ - "http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8", - "http://zhibo.hkstv.tv/livestream/mutfysrq/playlist.m3u8?wsSession=3c732f93c14e1bc0c07641df-156388849014752&wsIPSercert=8de23d0849e78e3b16ec92a809235421&wsMonitor=0", - "http://hw-play.lezhibo.com/live/bd2d26fd492b403d8ec69de1859bdb31.m3u8", - "http://124.238.99.44:808/hls/352/index.m3u8" - ], - "number": "005", - "logo": "tb1/gt/hks.png", - "epg": "HKS", - "name": "香港卫视" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941619&extension=ts&play_token=p2yEuU1aFS", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=153395&extension=ts&play_token=Pd3SDU2VSy", - "http://r.jdshipin.com/62WM7", - "http://c-leung.homeip.net:8011/bysid/1", - "http://r.jdshipin.com/qClQf", - "http://116.205.130.205:66/6/807tv.php?tid=gt&id=0", - "http://r.jdshipin.com/n90gt", - "http://107.151.203.111:2209/135/hk.php?id=tvbfct" - ], - "number": "006", - "logo": "tb1/gt/TVB翡翠台.png", - "epg": "翡翠台", - "name": "翡翠台" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571186&extension=ts&play_token=HnxccIWiNo", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=153506&extension=ts&play_token=miEIuxsBcN", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941620&extension=ts&play_token=TBgeJuh42H", - "http://gxfrg007.8800.org:8282/tsfile/live/1062_1.m3u8" - ], - "number": "007", - "logo": "tb1/gt/TVB星河.png", - "epg": "TVB星河频道", - "name": "TVB星河" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=153396&extension=ts&play_token=ICdnbP1fWe", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=153401&extension=ts&play_token=zUkGQ70Vue" - ], - "number": "008", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "TVB1", - "name": "TVB1" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571197&extension=ts&play_token=S0w0stULcO" - ], - "number": "009", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "千禧经典台", - "name": "千禧经典台" - }, - { - "urls": [ - "http://hpull.kktv8.com/livekktv/128600025/playlist.m3u8" - ], - "number": "010", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金马影院", - "name": "金马影院" - }, - { - "urls": [ - "https://cn-hbyc2-dx-live-01.bilivideo.com/live-bvc/545768/live_179302204_68184269.m3u8" - ], - "number": "011", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "功夫台", - "name": "功夫台" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571188&extension=ts&play_token=p582OSpABb", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=153398&extension=ts&play_token=TPIp3m3TjC" - ], - "number": "012", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "娱乐新闻台", - "name": "娱乐新闻台" - }, - { - "urls": [ - "http://61.10.2.141/live_freedirect/freehd209_h.live/playlist.m3u", - "http://61.10.2.140:80/live_freedirect/freehd209_h.live/chunklist_w135209556.m3u8" - ], - "number": "013", - "logo": "tb1/gt/youxianxinwen.png", - "epg": "有线新闻台", - "name": "有线新闻" - }, - { - "urls": [ - "http://c-leung.homeip.net:8012/bysid/83" - ], - "number": "014", - "logo": "tb1/gt/wxxw.png", - "epg": "无线新闻", - "name": "无线新闻" - }, - { - "urls": [ - "http://c-leung.homeip.net:8012/bysid/2" - ], - "number": "015", - "logo": "tb1/gt/TVB明珠台.png", - "epg": "明珠台", - "name": "Pearl" - }, - { - "urls": [ - "http://c-leung.homeip.net:8012/bysid/85", - "http://r.jdshipin.com/Nr5jq" - ], - "number": "016", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "财经体育资讯台", - "name": "财经体育资讯台" - }, - { - "urls": [ - "http://r.jdshipin.com/Nr5jq", - "http://c-leung.homeip.net:8012/bysid/82", - "https://pull-l3-cny.douyincdn.com/live/e32c9af787d1f0347d306886c0f58359.m3u8", - "https://p2.weizan.cn/1646497941/269664979080385265/live.m3u8" - ], - "number": "017", - "logo": "tb1/gt/TVBJ2.png", - "epg": "J2", - "name": "J2" - }, - { - "urls": [ - "http://media.fantv.hk/m3u8/archive/channel2_stream1.m3u8", - "http://livetv.dnsfor.me/channel.9.m3u8" - ], - "number": "018", - "logo": "tb1/gt/hongkongkai.png", - "epg": "香港开电视", - "name": "香港开电视" - }, - { - "urls": [ - "https://video.bread-tv.com:8091/hls-live24/online/index.m3u8" - ], - "number": "019", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "面包台", - "name": "面包台" - }, - { - "urls": [ - "http://116.205.130.205:66/6/807tv.php?tid=gt&id=20" - ], - "number": "020", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "有线18台", - "name": "有线18台" - }, - { - "urls": [ - "http://116.205.130.205:66/6/807tv.php?tid=gt&id=21" - ], - "number": "021", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "有线603台", - "name": "有线603台" - }, - { - "urls": [ - "https://livecdn.fptplay.net/sdb/htv3_hls.smil/chunklist_b2500000.m3u8" - ], - "number": "022", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "HTV3", - "name": "HTV3" - }, - { - "urls": [ - "https://livecdn.fptplay.net/sdb/htv4_hls.smil/chunklist_b2500000.m3u8" - ], - "number": "023", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "HTV4", - "name": "HTV4" - }, - { - "urls": [ - "http://c-leung.homeip.net:8013/bysid/31" - ], - "number": "024", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "RTHK31", - "name": "RTHK31" - }, - { - "urls": [ - "http://c-leung.homeip.net:8013/bysid/32", - "https://rthktv32-live.akamaized.net/hls/live/2036819/RTHKTV32/master.m3u8" - ], - "number": "025", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "RTHK32", - "name": "RTHK32" - }, - { - "urls": [ - "http://r.jdshipin.com/vSJvl" - ], - "number": "026", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "VIUTV", - "name": "VIUTV" - }, - { - "urls": [ - "http://c-leung.homeip.net:8011/bysid/99" - ], - "number": "027", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "VIU TV", - "name": "VIU TV" - }, - { - "urls": [ - "http://c-leung.homeip.net:8011/bysid/96" - ], - "number": "028", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "VIU 6", - "name": "VIU 6" - }, - { - "urls": [ - "http://107.151.203.111:2209/135/hk.php?id=amlh", - "http://nettvpro.live/hls/lotustv.php?zgangd", - "http://nettvpro.live/hls/lotustv.php", - "http://anren.live/HK/BiIOU11uLA.m3u8" - ], - "number": "029", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "澳门莲花", - "name": "澳门莲花" - }, - { - "urls": [ - "http://107.151.203.111:2209/135/hk.php?id=aoya", - "https://live.mastvnet.com/lsdream/lY44pmm/2000/live.m3u8" - ], - "number": "030", - "epg": "澳亚卫视", - "name": "澳亚卫视" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571187&extension=ts&play_token=uWRW1HvPSb", - "http://r.jdshipin.com/thuYX", - "http://198.16.64.10:8278/Wlt/playlist.m3u8?tid=MC9C7523788875237888&ct=19225&tsum=fc74aa160d3ca61369c2e5f3ae79ee8e" - ], - "number": "031", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "华丽台", - "name": "华丽台" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571191&extension=ts&play_token=6Do9QdLKkM" - ], - "number": "032", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "双星", - "name": "双星" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571192&extension=ts&play_token=xEP94V2R5Q" - ], - "number": "033", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "全佳", - "name": "全佳" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571230&extension=ts&play_token=D3QyPDZb9O" - ], - "number": "034", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "小太阳", - "name": "小太阳" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941622&extension=ts&play_token=E9ymAxKoVJ", - "http://158.101.151.82:9000/jmsytb.m3u8?c=3", - "http://123.58.201.173:52411/test/lshotel.php?id=44", - "http://140.238.155.232:9000/jmsytb.m3u8?c=31", - "http://38.64.72.148/hls/modn/list/4006/chunklist0.m3u8", - "http://38.64.72.148:80/hls/modn/list/4006/chunklist0.m3u8", - "http://38.64.72.148:80/hls/modn/list/4006/chunklist1.m3u8" - ], - "number": "035", - "logo": "tb1/gt/TVBS新闻.png", - "epg": "TVBS新闻台", - "name": "TVBS新闻台" - }, - { - "urls": [ - "http://158.101.151.82:9000/jmsytb.m3u8?c=2", - "http://123.58.201.173:52411/test/lshotel.php?id=40" - ], - "number": "036", - "logo": "tb1/gt/EBCNews.png", - "epg": "东森新闻台", - "name": "东森新闻" - }, - { - "urls": [ - "http://38.64.72.148:80/hls/modn/list/2015/chunklist0.m3u8" - ], - "number": "037", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "东森新闻美洲台", - "name": "东森新闻美洲台" - }, - { - "urls": [ - "http://38.64.72.148:80/hls/modn/list/4012/chunklist0.m3u8", - "http://123.58.201.173:52411/test/lshotel.php?id=42", - "http://38.64.72.148:80/hls/modn/list/4012/chunklist1.m3u8" - ], - "number": "038", - "logo": "tb1/gt/FTVNews.png", - "epg": "民视新闻台", - "name": "民视新闻台" - }, - { - "urls": [ - "http://158.101.151.82:9000/jmsytb.m3u8?c=7", - "http://38.64.72.148:80/hls/modn/list/4013/chunklist0.m3u8", - "http://38.64.72.148:80/hls/modn/list/4013/chunklist1.m3u8", - "http://38.64.72.148/hls/modn/list/4013/chunklist0.m3u8", - "http://38.64.72.148/hls/modn/list/4012/chunklist0.m3u8" - ], - "number": "039", - "logo": "tb1/gt/台视新闻.png", - "epg": "台视新闻台", - "name": "台视新闻" - }, - { - "urls": [ - "http://152.69.224.242:9500/jmsytb.m3u8?c=21", - "http://123.58.201.173:52411/test/lshotel.php?id=38" - ], - "number": "040", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "华视新闻", - "name": "华视新闻" - }, - { - "urls": [ - "https://livetv.qhzx.repl.co/live.m3u8?c=9", - "http://158.101.151.82:9000/jmsytb.m3u8?c=5", - "http://123.58.201.173:52411/test/lshotel.php?id=41", - "http://104.192.80.27:9500/live.m3u8?c=2", - "http://152.69.224.242:9500/jmsytb.m3u8?c=1" - ], - "number": "041", - "epg": "中天新闻台", - "name": "中天新闻" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571212&extension=ts&play_token=yaoffzUbUJ", - "http://50.7.220.74:8278/ctiasia_twn/playlist.m3u8?tid=MFFF9983745599837455&ct=19193&tsum=ee61e179a8c619a076c515514d68e24e", - "http://198.16.64.10:8278/ctiasia_twn/playlist.m3u8?tid=MC3C8838319088383190&ct=19226&tsum=6eaf7a477dd08b06a5dc54b4c05e52e1" - ], - "number": "042", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中天亚洲台", - "name": "中天亚洲台" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=46" - ], - "number": "043", - "logo": "tb1/gt/UniqueNews.png", - "epg": "非凡新闻台", - "name": "非凡新闻" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=47" - ], - "number": "044", - "logo": "tb1/gt/UniqueUSTVHDUSTVHD.png", - "epg": "非凡商业台", - "name": "非凡商业" - }, - { - "urls": [ - "http://158.101.151.82:9000/jmsytb.m3u8?c=9", - "http://123.58.201.173:52411/test/lshotel.php?id=43", - "http://140.238.155.232:9000/jmsytb.m3u8?c=23" - ], - "number": "045", - "logo": "tb1/gt/SETNews.png", - "epg": "三立新闻台", - "name": "三立新闻" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=50" - ], - "number": "046", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "壹新闻", - "name": "壹新闻" - }, - { - "urls": [ - "http://158.101.151.82:9000/jmsytb.m3u8?c=14", - "http://www.yshmzmc.top/gtjm.php?id=live1222", - "http://123.58.201.173:52411/test/lshotel.php?id=49" - ], - "number": "047", - "logo": "tb1/gt/GlobalNews.png", - "epg": "寰宇新闻", - "name": "寰宇新闻" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=39" - ], - "number": "048", - "logo": "tb1/gt/年代ERANewsHD.png", - "epg": "年代新闻台", - "name": "年代新闻" - }, - { - "urls": [ - "http://158.101.151.82:9000/jmsytb.m3u8?c=8" - ], - "number": "049", - "logo": "tb1/gt/中视新闻.png", - "epg": "中视新闻", - "name": "中视新闻" - }, - { - "urls": [ - "http://116.205.130.205:66/6/807tv.php?tid=gt&id=13" - ], - "number": "050", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "NOW新闻台", - "name": "NOW新闻台" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=4", - "http://107.151.203.111:2209/135/us50.php?id=msk" - ], - "number": "051", - "logo": "tb1/gt/FTV.png", - "epg": "民视无线台", - "name": "民视" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=1", - "http://107.151.203.111:2209/135/us50.php?id=tsk" - ], - "number": "052", - "logo": "tb1/gt/台视.png", - "epg": "台视", - "name": "台视" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=2" - ], - "number": "053", - "logo": "tb1/gt/中视.png", - "epg": "中视", - "name": "中视" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=5" - ], - "number": "054", - "logo": "tb1/gt/PublicTV2.png", - "epg": "公视2", - "name": "公视" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=3" - ], - "number": "055", - "logo": "tb1/gt/CTS.png", - "epg": "华视", - "name": "华视" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941618&extension=ts&play_token=kr082FQvzN" - ], - "number": "056", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "天映频道", - "name": "天映频道" - }, - { - "urls": [ - "http://198.16.64.10:8278/Celestial/playlist.m3u8?tid=MCFC1164333411643334&ct=19225&tsum=3668a5dd07515bbf30cfeebe267936ff", - "http://198.16.64.10:8278/Celestial2/playlist.m3u8?tid=MD3D1210050512100505&ct=19225&tsum=d40ac484b1a904e59158bd911bbd8b89", - "http://120.84.96.66:808/hls/85/index.m3u8" - ], - "number": "057", - "epg": "天映经典", - "name": "天映经典" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941624&extension=ts&play_token=xmfFOBilCP" - ], - "number": "058", - "logo": "tb1/gt/fenghuangzhongwen.png", - "epg": "凤凰中文", - "name": "卫视中文台" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941625&extension=ts&play_token=UX6nxpu1TT" - ], - "number": "059", - "logo": "tb1/gt/StarChineseMovies.png", - "epg": "卫视电影台", - "name": "卫视电影台" - }, - { - "urls": [ - "http://www.yshmzmc.top/gtjm.php?id=live1031", - "http://123.58.201.173:52411/test/lshotel.php?id=54" - ], - "number": "060", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "星卫电影台", - "name": "星卫电影台" - }, - { - "urls": [ - "http://gxfrg007.8800.org:8282/tsfile/live/1048_1.m3u8" - ], - "number": "061", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "龙祥时代", - "name": "龙祥时代" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=57" - ], - "number": "062", - "logo": "tb1/gt/龙华电影.png", - "epg": "龙华电影", - "name": "龙华电影" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv045.stream/playlist.m3u8", - "http://www.336699.live:1935/blockfour/4gtv-4gtv058.stream/playlist.m3u8" - ], - "number": "063", - "logo": "tb1/gt/靖天戏剧.png", - "epg": "靖天戏剧台", - "name": "靖天戏剧台" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv062.stream/playlist.m3u8" - ], - "number": "064", - "logo": "tb1/gt/靖天育乐.png", - "epg": "靖天育乐台", - "name": "靖天育乐台" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv055.stream/playlist.m3u8" - ], - "number": "065", - "logo": "tb1/gt/靖天映画.png", - "epg": "靖天映画", - "name": "靖天映画" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv044.stream/playlist.m3u8" - ], - "number": "066", - "logo": "tb1/gt/靖天卡通.png", - "epg": "靖天卡通台", - "name": "靖天卡通台" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv054.stream/playlist.m3u8" - ], - "number": "067", - "logo": "tb1/gt/靖天欢乐.png", - "epg": "靖天欢乐台", - "name": "靖天欢乐台" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv063.stream/playlist.m3u8" - ], - "number": "068", - "logo": "tb1/gt/靖天国际.png", - "epg": "靖天国际", - "name": "靖天国际" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv049.stream/playlist.m3u8" - ], - "number": "069", - "logo": "tb1/gt/采昌影剧.png", - "epg": "采昌影剧", - "name": "采昌影剧" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=156397&extension=ts&play_token=2fQZ7EF20L" - ], - "number": "070", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "东森美洲", - "name": "东森美洲" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=156394&extension=ts&play_token=UEKTIim7lP" - ], - "number": "071", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "东森卫视", - "name": "东森卫视" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=48" - ], - "number": "072", - "logo": "tb1/gt/EBCFinancialNews.png", - "epg": "东森财经新闻台", - "name": "东森财经新闻" - }, - { - "urls": [ - "http://cclive2.aniu.tv/live/anzb.m3u8?zgangd", - "http://cclive2.aniu.tv/live/anzb.m3u8" - ], - "number": "073", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "点掌财经", - "name": "点掌财经" - }, - { - "urls": [ - "http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8", - "http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8?wowzasessionid=64000", - "http://202.69.67.66:443/webcast/bshdlive-pc/playlist.m3u8?wowzasessionid=64000?zgangd", - "https://v3.mediacast.hk/webcast/bshdlive-pc/playlist.m3u8", - "http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8" - ], - "number": "074", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "耀才财经", - "name": "耀才财经" - }, - { - "urls": [ - "http://107.151.203.111:2209/135/hk.php?id=dsypt" - ], - "number": "075", - "logo": "tb1/gt/EBCWesternMovies.png", - "epg": "东森洋片台", - "name": "东森洋片" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=56" - ], - "number": "076", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "纬來电影", - "name": "纬來电影" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv064.stream/playlist.m3u8" - ], - "number": "077", - "logo": "tb1/gt/中视菁采.png", - "epg": "中视菁采台", - "name": "中视菁采台" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571185&extension=ts&play_token=wD7CZpooiF", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941621&extension=ts&play_token=vFR5CkmzbA", - "http://38.64.72.148/hls/modn/list/4005/chunklist1.m3u8", - "http://38.64.72.148:80/hls/modn/list/4005/chunklist0.m3u8", - "http://38.64.72.148:80/hls/modn/list/4005/chunklist1.m3u8", - "http://38.64.72.148/hls/modn/list/4005/chunklist1.m3u8" - ], - "number": "078", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "TVBS亚洲", - "name": "TVBS亚洲" - }, - { - "urls": [ - "http://158.101.151.82:9000/jmsytb.m3u8?c=4" - ], - "number": "079", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "TVBS42", - "name": "TVBS42" - }, - { - "urls": [ - "http://streamipcf.akamaized.net/live/_definst_/live_720/chunklist_b1500.m3u8", - "http://streamipcf.akamaized.net/live/_definst_/live_720/key_b1500.m3u8" - ], - "number": "080", - "logo": "tb1/gt/yuanzhumin.png", - "epg": "原住民频道", - "name": "原住民" - }, - { - "urls": [ - "http://61.216.67.119:1935/TWHG/E1/chunklist_w705811302.m3u8", - "http://61.216.67.119:1935/TWHG/E1/chunklist_w7058102.m3u8" - ], - "number": "081", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "番薯", - "name": "番薯" - }, - { - "urls": [ - "http://www.dalitv.com.tw:4568/live/dali/index.m3u8" - ], - "number": "082", - "logo": "tb1/gt/DaliTV.png", - "epg": "大立电视台", - "name": "大立电视" - }, - { - "urls": [ - "http://61.216.67.119:1935/bltvhd/bltv1/chunklist_w1266569526.m3u8" - ], - "number": "083", - "logo": "tb1/gt/BeautifulLife.png", - "epg": "人间卫视", - "name": "人间卫视" - }, - { - "urls": [ - "http://38.64.72.148:80/hls/modn/list/4001/chunklist0.m3u8", - "http://38.64.72.148:80/hls/modn/list/4002/chunklist0.m3u8", - "http://38.64.72.148:80/hls/modn/list/4003/chunklist0.m3u8" - ], - "number": "084", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "华语电视", - "name": "华语电视" - }, - { - "urls": [ - "http://38.64.72.148:80/hls/modn/list/4008/chunklist0.m3u8" - ], - "number": "085", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "长城精品", - "name": "长城精品" - }, - { - "urls": [ - "http://123.58.201.173:52411/test/lshotel.php?id=55" - ], - "number": "086", - "logo": "tb1/gt/HMC.png", - "epg": "好莱坞电影台", - "name": "好莱坞电影" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=571204&extension=ts&play_token=TQWwwF8fB9", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=941648&extension=ts&play_token=U9qP9sjHUP", - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=56057&extension=ts&play_token=pqlvbiUAPq", - "http://198.16.64.10:8278/hbosignature_twn/playlist.m3u8?tid=MC5C5754321157543211&ct=19225&tsum=2b86077147813534b4cae6dd85bb3c4a" - ], - "number": "087", - "logo": "tb1/gt/HBO.png", - "epg": "HBO", - "name": "HBO" - }, - { - "urls": [ - "http://198.16.64.10:8278/hbohd_twn/playlist.m3u8?tid=ME9E5260921952609219&ct=19225&tsum=a904cd480db106670befb11d14149fce" - ], - "number": "088", - "logo": "tb1/gt/HBOHD.png", - "epg": "HBOHD", - "name": "HBO HD" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=56105&extension=ts&play_token=TYYmi0O3a2" - ], - "number": "089", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "HBO2", - "name": "HBO2" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=56104&extension=ts&play_token=HqqAESBfCa" - ], - "number": "090", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "HBO3", - "name": "HBO3" - }, - { - "urls": [ - "http://185.243.7.13:80/play/live.php?mac=00:1A:79:45:5E:9A&stream=155727&extension=ts&play_token=zB1JWsM7AB" - ], - "number": "091", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "STAR MOVIES", - "name": "STAR MOVIES" - }, - { - "urls": [ - "http://www.yshmzmc.top/gtjm.php?id=live1005" - ], - "number": "092", - "logo": "tb1/gt/tlc.png", - "epg": "TLC旅游生活频道", - "name": "TLC" - }, - { - "urls": [ - "https://jpts.sinovision.net/livestream.m3u8" - ], - "number": "093", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "美国中文电视", - "name": "美国中文电视" - }, - { - "urls": [ - "https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8?zshijd" - ], - "number": "094", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "新加坡中文台", - "name": "新加坡中文台" - }, - { - "urls": [ - "https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index_4.m3u8" - ], - "number": "095", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "新加坡国际", - "name": "新加坡国际" - }, - { - "urls": [ - "http://www.336699.live:1935/blockfour/4gtv-4gtv101.stream/playlist.m3u8" - ], - "number": "096", - "logo": "tb1/gt/智林体育台.png", - "epg": "智林体育", - "name": "智林体育" - }, - { - "urls": [ - "https://dqhxk7sbp7xog.cloudfront.net/hls-live/goodtv/_definst_/liveevent/live-ch1-2.m3u8" - ], - "number": "097", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "好消息综合台", - "name": "好消息综合台" - }, - { - "urls": [ - "http://80.94.54.42/fashiontv/stream/playlist.m3u8" - ], - "number": "098", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "时尚台FTV", - "name": "时尚台FTV" - }, - { - "urls": [ - "https://sc.id-tv.kz/NatGeoWildHD_34_35.m3u8" - ], - "number": "099", - "logo": "tb1/gt/natgeowild.png", - "epg": "国家地理野生频道", - "name": "国家地理野生" - }, - { - "urls": [ - "http://www.yshmzmc.top/gtjm.php?id=live1004" - ], - "number": "100", - "logo": "tb1/gt/AnimalPlanet.png", - "epg": "动物星球", - "name": "动物星球" - } - ], - "name": "⛵ 港•澳•台" - }, - { - "channel": [ - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225618/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225630/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225501/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225642/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225762/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225918/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv1hd8m/8000000" - ], - "number": "101", - "logo": "tb1/CCTV/CCTV1.png", - "epg": "CCTV1", - "name": "CCTV1" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225619/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225643/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225500/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv2hd8m/8000000" - ], - "number": "102", - "logo": "tb1/CCTV/CCTV2.png", - "epg": "CCTV2", - "name": "CCTV2" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225634/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225647/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv38m/8000000" - ], - "number": "103", - "logo": "tb1/CCTV/CCTV3.png", - "epg": "CCTV3", - "name": "CCTV3" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225621/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv4hd8m/8000000" - ], - "number": "104", - "logo": "tb1/CCTV/CCTV4.png", - "epg": "CCTV4", - "name": "CCTV4" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225633/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225751/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225752/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225753/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225754/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225755/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225756/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv58m/8000000" - ], - "number": "105", - "logo": "tb1/CCTV/CCTV5.png", - "epg": "CCTV5", - "name": "CCTV5" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225649/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225706/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv5phd8m/8000000" - ], - "number": "106", - "logo": "tb1/CCTV/CCTV5+.png", - "epg": "CCTV5+", - "name": "CCTV5+" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225632/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225650/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv6hd8m/8000000" - ], - "number": "107", - "logo": "tb1/CCTV/CCTV6.png", - "epg": "CCTV6", - "name": "CCTV6" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225624/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225644/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225499/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv7hd8m/8000000" - ], - "number": "108", - "logo": "tb1/CCTV/CCTV7.png", - "epg": "CCTV7", - "name": "CCTV7" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225631/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225635/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv8hd8m/8000000" - ], - "number": "109", - "logo": "tb1/CCTV/CCTV8.png", - "epg": "CCTV8", - "name": "CCTV8" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225626/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225646/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv9hd8m/8000000" - ], - "number": "110", - "logo": "tb1/CCTV/CCTV9.png", - "epg": "CCTV9", - "name": "CCTV9" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225496/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225627/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225636/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv10hd8m/8000000" - ], - "number": "111", - "logo": "tb1/CCTV/CCTV10.png", - "epg": "CCTV10", - "name": "CCTV10" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225628/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv11hd8m/8000000" - ], - "number": "112", - "logo": "tb1/CCTV/CCTV11.png", - "epg": "CCTV11", - "name": "CCTV11" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225495/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225629/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225637/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv12hd8m/8000000" - ], - "number": "113", - "logo": "tb1/CCTV/CCTV12.png", - "epg": "CCTV12", - "name": "CCTV12" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225638/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv13xwhd8m/8000000" - ], - "number": "114", - "logo": "tb1/CCTV/CCTV13.png", - "epg": "CCTV13", - "name": "CCTV13" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225494/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225639/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225640/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctvsehd8m/8000000" - ], - "number": "115", - "logo": "tb1/CCTV/CCTV14.png", - "epg": "CCTV14", - "name": "CCTV14" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225641/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv15hd8m/8000000" - ], - "number": "116", - "logo": "tb1/CCTV/CCTV15.png", - "epg": "CCTV15", - "name": "CCTV15" - }, - { - "urls": [ - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226597/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv16hd4k/15000000", - "https://live.v1.mk/api/bestv.php?id=cctv16hd8m/8000000" - ], - "number": "117", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV16", - "name": "CCTV16" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225907/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225908/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225909/2/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv17hd8m/8000000" - ], - "number": "118", - "logo": "tb1/CCTV/CCTV17.png", - "epg": "CCTV17", - "name": "CCTV17" - }, - { - "urls": [ - "http://[2409:8087:3408:20:5040::106]:18890/PLTV/88888888/224/3221226998/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cctv4k/15000000" - ], - "number": "119", - "logo": "tb1/CCTV/CCTV4k.png", - "epg": "CCTV4K", - "name": "CCTV4K" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226825/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "120", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV4K", - "name": "CCTV4K" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225786/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226825/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "121", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "4KUHD", - "name": "4KUHD" - }, - { - "urls": [ - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000002055/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8c02:21c:60::2b]/live.rxip.sc96655.com/live/wqCHCdzdyH265_4000.m3u8" - ], - "number": "122", - "logo": "tb1/qt/CHC1.jpg", - "epg": "CHC动作电影", - "name": "CHC动作电影" - }, - { - "urls": [ - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000002085/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000002065/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8c02:21c:60::2b]/live.rxip.sc96655.com/live/jbtygqCHCjtyyH265_4000.m3u8" - ], - "number": "123", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CHC家庭影院", - "name": "CHC家庭影院" - }, - { - "urls": [ - "http://[2409:8c02:21c:60::2b]/live.rxip.sc96655.com/live/lnwsCHC-HDH265_4000.m3u8" - ], - "number": "124", - "logo": "tb1/qt/CHC3.jpg", - "epg": "CHC高清电影", - "name": "CHC高清电影" - } - ], - "name": "⚛️ 央视IPV6" - }, - { - "channel": [ - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225491/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226339/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225959/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225870/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225491/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225703/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225744/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225870/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225825/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226682/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=zjwshd8m/8000000" - ], - "number": "125", - "logo": "tb1/ws/zhejiang.png", - "epg": "浙江卫视", - "name": "浙江卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225600/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225931/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226450/index.m3u8", - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000001335/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227246/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225826/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225600/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225673/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225674/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227246/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225826/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=bjwshd8m/8000000" - ], - "number": "126", - "logo": "tb1/ws/beijing.png", - "epg": "北京卫视", - "name": "北京卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225601/2/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227141/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225832/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225601/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225696/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225735/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227141/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225832/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226586/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=lnwshd8m/8000000" - ], - "number": "127", - "logo": "tb1/ws/liaoning.png", - "epg": "辽宁卫视", - "name": "辽宁卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225691/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226391/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225925/index.m3u8", - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000001298/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000001283/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000001346/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227178/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225844/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225691/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225737/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227178/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225844/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226578/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=ahwshd8m/8000000" - ], - "number": "128", - "logo": "tb1/ws/anhui.png", - "epg": "安徽卫视", - "name": "安徽卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225488/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225938/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225929/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226310/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227160/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225847/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225488/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225702/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225743/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227160/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225847/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=jswshd8m/8000000" - ], - "number": "129", - "logo": "tb1/ws/jiangsu.png", - "epg": "江苏卫视", - "name": "江苏卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225489/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226345/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225942/index.m3u8", - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000001336/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225828/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226603/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226560/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227059/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226895/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225489/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225658/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225659/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225828/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226603/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226560/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227059/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226895/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226681/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=dfwshd8m/8000000" - ], - "number": "130", - "logo": "tb1/ws/dongfang.png", - "epg": "东方卫视", - "name": "东方卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225585/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226038/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226341/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225950/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225833/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225585/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225657/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227156/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225833/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=dnwshd8m/8000000" - ], - "number": "131", - "logo": "tb1/ws/dongnan.png", - "epg": "东南卫视", - "name": "东南卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225596/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225975/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226015/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225840/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227111/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225596/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225699/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225740/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225840/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227111/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226579/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225740/index.m3u8" - ], - "number": "132", - "logo": "tb1/ws/hubei.png", - "epg": "湖北卫视", - "name": "湖北卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888910/224/3221225701/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225966/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226248/index.m3u8", - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000001337/index.m3u8?virtualDomain=yinhe.live_hls.zte.com", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225824/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227164/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225597/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225701/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225742/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225824/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227164/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=gdwshd8m/8000000" - ], - "number": "133", - "logo": "tb1/ws/guangdong.png", - "epg": "广东卫视", - "name": "广东卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225731/2/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227250/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225836/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225731/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227250/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225836/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=gxwshd8m/8000000" - ], - "number": "134", - "logo": "tb1/ws/guangxi.png", - "epg": "广西卫视", - "name": "广西卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225598/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225997/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226313/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225943/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225848/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225598/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225700/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225741/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227242/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225848/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=szwshd8m/8000000" - ], - "number": "135", - "logo": "tb1/ws/shenzhen.png", - "epg": "深圳卫视", - "name": "深圳卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225487/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225970/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226338/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225835/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225487/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225835/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227182/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226573/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=scwshd/8000000" - ], - "number": "136", - "logo": "tb1/ws/sichuan.png", - "epg": "四川卫视", - "name": "四川卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225484/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225952/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226456/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227236/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225843/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225484/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225697/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225738/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227236/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225843/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226564/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=sdws8m/8000000" - ], - "number": "137", - "logo": "tb1/ws/shandong.png", - "epg": "山东卫视", - "name": "山东卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225611/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226023/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225988/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226480/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225842/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225611/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225842/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227095/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226639/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=hnwshd8m/8000000" - ], - "number": "138", - "logo": "tb1/ws/henan.png", - "epg": "河南卫视", - "name": "河南卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225610/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225961/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225991/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225837/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225610/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225732/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227063/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225837/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226611/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=hbwshd8m/8000000" - ], - "number": "139", - "logo": "tb1/ws/hebei.png", - "epg": "河北卫视", - "name": "河北卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225492/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225935/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226344/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225834/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227209/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225492/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225705/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225746/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225834/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227209/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226594/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=jxws8m/8000000" - ], - "number": "140", - "logo": "tb1/ws/jiangxi.png", - "epg": "江西卫视", - "name": "江西卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225485/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225972/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226459/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227205/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225830/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225485/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225698/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225739/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227205/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225830/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226621/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=tjwshd8m/8000000" - ], - "number": "141", - "logo": "tb1/ws/tianjin.png", - "epg": "天津卫视", - "name": "天津卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225612/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225963/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226409/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225831/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225612/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225692/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225734/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227240/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225831/index.m3u8?servicetype=1&IASHttpSessionId=RR42382022040913471411917810/PLTV/88888888/224/3221227193/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226676/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=cqws8m/8000000" - ], - "number": "142", - "logo": "tb1/ws/chongqing.png", - "epg": "重庆卫视", - "name": "重庆卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225586/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225985/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226327/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226006/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225862/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227197/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225586/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225690/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225736/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225862/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227197/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=hljwshd8m/8000000" - ], - "number": "143", - "logo": "tb1/ws/heilongjiang.png", - "epg": "黑龙江卫视", - "name": "黑龙江卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225680/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226013/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225981/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225851/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225680/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227099/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225851/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226684/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=jlwshd8m/8000000" - ], - "number": "144", - "logo": "tb1/ws/jilin.png", - "epg": "吉林卫视", - "name": "吉林卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225722/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225978/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225855/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225722/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225855/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227216/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "https://live.v1.mk/api/bestv.php?id=hainanwshd8m/8000000" - ], - "number": "145", - "logo": "tb1/ws/lvyou.png", - "epg": "旅游卫视", - "name": "海南卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225853/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225853/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227181/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226660/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=ynwshd8m/8000000" - ], - "number": "146", - "logo": "tb1/ws/yunnan.png", - "epg": "云南卫视", - "name": "云南卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225483/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225728/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226030/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225974/index.m3u8", - "http://[2409:8087:1a01:df::4077]/ottrrs.hl.chinamobile.com/PLTV/88888888/224/3221226474/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225838/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227201/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225483/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225728/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225838/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227201/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226632/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=gzwshd8m/8000000" - ], - "number": "147", - "logo": "tb1/ws/guizhou.png", - "epg": "贵州卫视", - "name": "贵州卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225723/2/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226847/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227217/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225723/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226847/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227217/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226669/index.m3u8" - ], - "number": "148", - "logo": "tb1/ws/xizang.png", - "epg": "西藏卫视", - "name": "西藏卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225724/2/index.m3u8", - "http://[2409:8c02:21c:60::2b]/live.rxip.sc96655.com/live/gsws_4000.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225845/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227262/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225724/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225845/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227262/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "149", - "logo": "tb1/ws/gansu.png", - "epg": "甘肃卫视", - "name": "甘肃卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225725/2/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227248/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225852/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225725/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227248/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225852/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226657/index.m3u8" - ], - "number": "150", - "logo": "tb1/ws/xinjiang.png", - "epg": "新疆卫视", - "name": "新疆卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225726/2/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227254/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225849/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225726/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227254/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225849/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "151", - "logo": "tb1/ws/ningxia.png", - "epg": "宁夏卫视", - "name": "宁夏卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225727/2/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227119/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225841/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225727/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227119/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225841/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226584/index.m3u8" - ], - "number": "152", - "logo": "tb1/ws/qinghai.png", - "epg": "青海卫视", - "name": "青海卫视" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225729/2/index.m3u8", - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225989/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225850/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227221/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225729/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225850/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227221/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226591/index.m3u8" - ], - "number": "153", - "logo": "tb1/ws/shanxi.png", - "epg": "陕西卫视", - "name": "陕西卫视" - }, - { - "urls": [ - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226000/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225827/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227232/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226851/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225490/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225704/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225745/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225827/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227232/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226851/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226659/index.m3u8", - "https://live.v1.mk/api/bestv.php?id=hunanwshd8m/8000000" - ], - "number": "154", - "logo": "tb1/ws/hunan.png", - "epg": "湖南卫视", - "name": "湖南卫视" - }, - { - "urls": [ - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221226009/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227258/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225839/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225730/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227258/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225839/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "155", - "logo": "tb1/ws/shanxi_.png", - "epg": "山西卫视", - "name": "山西卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227168/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227168/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "156", - "logo": "tb1/ws/bingtuan.png", - "epg": "兵团卫视", - "name": "兵团卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227198/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "157", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "海峡卫视", - "name": "海峡卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225856/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225856/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "158", - "logo": "tb1/ws/kangba.png", - "epg": "康巴卫视", - "name": "康巴卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227214/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "159", - "logo": "tb1/ws/nanfang.png", - "epg": "南方卫视", - "name": "南方卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227244/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225846/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227244/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225846/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "160", - "logo": "tb1/ws/neimeng.png", - "epg": "内蒙古卫视", - "name": "内蒙古卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227172/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227172/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "161", - "logo": "tb1/ws/sansha.png", - "epg": "三沙卫视", - "name": "三沙卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226964/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226964/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226781/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "162", - "logo": "tb1/ws/xiamen.png", - "epg": "厦门卫视", - "name": "厦门卫视" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225877/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "163", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "爱情喜剧", - "name": "爱情喜剧" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225708/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226107/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225708/2/index.m3u8" - ], - "number": "164", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "潮妈辣婆", - "name": "潮妈辣婆" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226692/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226712/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225881/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226708/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226887/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226754/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225893/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226692/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226712/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225881/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226708/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226887/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226754/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225893/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "165", - "logo": "tb1/CCTV/CCTV8.png", - "epg": "CCTV8", - "name": "电视剧" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226741/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226743/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226736/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226732/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226741/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226743/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226736/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226732/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "166", - "logo": "tb1/CCTV/CCTVxinke.png", - "epg": "新科动漫", - "name": "动漫" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225879/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "167", - "logo": "tb1/qt/CHC1.jpg", - "epg": "CHC动作电影", - "name": "动作电影" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227204/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "168", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "都市剧场", - "name": "都市剧场" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225678/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225880/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225678/2/index.m3u8" - ], - "number": "169", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "古装剧场", - "name": "古装剧场" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225718/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225764/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225769/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225891/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225718/2/index.m3u8" - ], - "number": "170", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黑莓电影", - "name": "黑莓电影" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225672/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225878/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225672/2/index.m3u8" - ], - "number": "171", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黑莓动画", - "name": "黑莓动画" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227145/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "172", - "logo": "tb1/qt/huanxiao.png", - "epg": "欢笑剧场", - "name": "欢笑剧场" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225946/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227213/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226923/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225609/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225654/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225655/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225946/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227213/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226923/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225609/2/index.m3u8" - ], - "number": "173", - "logo": "tb1/ws/shanghaijishi.png", - "epg": "上海纪实", - "name": "纪实人文" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225713/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225882/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225713/2/index.m3u8" - ], - "number": "174", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "家庭剧场", - "name": "家庭剧场" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227230/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "175", - "logo": "tb1/qt/jiajiakt.png", - "epg": "嘉佳卡通", - "name": "嘉佳卡通" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225711/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225884/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225711/2/index.m3u8" - ], - "number": "176", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金牌综艺", - "name": "金牌综艺" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227208/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227208/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "177", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金色学堂", - "name": "金色学堂" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226937/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226975/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225595/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226937/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226975/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225595/2/index.m3u8" - ], - "number": "178", - "logo": "tb1/ws/jinyingjishi.png", - "epg": "金鹰纪实", - "name": "金鹰纪实" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227018/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226959/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225721/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227018/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226959/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225721/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225730/2/index.m3u8" - ], - "number": "179", - "logo": "tb1/qt/jinyingkatong.png", - "epg": "金鹰卡通", - "name": "金鹰卡通" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225885/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "180", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "惊悚悬疑", - "name": "惊悚悬疑" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225714/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225889/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225714/2/index.m3u8" - ], - "number": "181", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品大剧", - "name": "精品大剧" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225888/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "182", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品纪录", - "name": "精品纪录" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225669/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225887/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225669/2/index.m3u8" - ], - "number": "183", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "军旅剧场", - "name": "军旅剧场" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225757/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225890/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225757/2/index.m3u8" - ], - "number": "184", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "军事评论", - "name": "军事评论" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226646/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226642/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226638/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "185", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "百事通", - "name": "百事通" - }, - { - "urls": [ - "http://[2409:8087:1a01:df::4077]/PLTV/88888888/224/3221225904/index.m3u8", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227189/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227047/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227228/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227107/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227158/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227189/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227047/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227228/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227107/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227158/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "186", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "咪咕", - "name": "咪咕" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227083/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "187", - "logo": "tb1/qt/quanjishi.png", - "epg": "全纪实", - "name": "全纪实" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226676/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226680/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225894/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226676/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226680/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225894/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "188", - "logo": "tb1/CCTV/CCTV5+.png", - "epg": "CCTV5+", - "name": "赛事" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227091/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226570/index.m3u8" - ], - "number": "189", - "logo": "tb1/qt/shenghuoshishang.png", - "epg": "生活时尚", - "name": "生活时尚" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225656/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225895/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225656/2/index.m3u8" - ], - "number": "190", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "武博世界", - "name": "武博世界" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226715/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226715/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "191", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "熊猫", - "name": "熊猫" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226699/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225707/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226699/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225707/2/index.m3u8" - ], - "number": "192", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "炫舞未来", - "name": "炫舞未来" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225883/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "193", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "怡伴健康", - "name": "怡伴健康" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227075/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227075/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "194", - "logo": "tb1/qt/youxifengyun.png", - "epg": "游戏风云", - "name": "游戏风云" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225660/2/index.m3u8", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221225896/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225660/2/index.m3u8" - ], - "number": "195", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国功夫", - "name": "中国功夫" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226987/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226987/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226987/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "196", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国经济", - "name": "中国经济" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178", - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227210/index.m3u8?servicetype=1&IASHttpS" - ], - "number": "197", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国天气", - "name": "中国天气" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225508/2/index.m3u8" - ], - "number": "198", - "logo": "tb1/qt/WUSHUSHIJIE.jpg", - "epg": "武术世界", - "name": "武术世界" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225581/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225581/2/index.m3u8" - ], - "number": "199", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "梨园频道", - "name": "梨园频道" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225620/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225768/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225620/2/index.m3u8" - ], - "number": "200", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级综艺", - "name": "超级综艺" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225622/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225648/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225767/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225622/2/index.m3u8" - ], - "number": "201", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级体育", - "name": "超级体育" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225623/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225766/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225623/2/index.m3u8" - ], - "number": "202", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级电影", - "name": "超级电影" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225625/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225765/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225625/2/index.m3u8" - ], - "number": "203", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级电视剧", - "name": "超级电视剧" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225709/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225709/2/index.m3u8" - ], - "number": "204", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品体育", - "name": "精品体育" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225710/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225710/2/index.m3u8" - ], - "number": "205", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品记录", - "name": "精品记录" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225716/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225716/2/index.m3u8" - ], - "number": "206", - "logo": "tb1/qt/IPTV少儿动画.png", - "epg": "IPTV少儿动画", - "name": "动画" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225924/2/index.m3u8", - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888888/224/3221225924/2/index.m3u8" - ], - "number": "207", - "epg": "中华美食", - "name": "中华美食" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227087/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "208", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "地方财经", - "name": "地方财经" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221226564/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "209", - "logo": "tb1/qt/diyicaijing.png", - "epg": "第一财经", - "name": "第一财经" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::1009]:6610/PLTV/88888888/224/3221227071/index.m3u8?servicetype=1&IASHttpSessionId=RR423820220409134714119178" - ], - "number": "210", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "动漫秀场", - "name": "动漫秀场" - }, - { - "urls": [ - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226567/index.m3u8" - ], - "number": "211", - "logo": "tb1/CCTV/CCTV5+.png", - "epg": "CCTV5+", - "name": "体育赛事" - }, - { - "urls": [ - "http://[2409:8087:4400:20:1:a0f:11:9]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226585/index.m3u8" - ], - "number": "212", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中华特产", - "name": "中华特产" - }, - { - "urls": [ - "https://live.v1.mk/api/bestv.php?id=hxjc4k/15000000" - ], - "number": "213", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "欢笑剧场4K", - "name": "欢笑剧场4K" - } - ], - "name": "📡 卫视IPV6" - }, - { - "channel": [ - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225618/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225618/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225642/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226231/index.m3u8" - ], - "number": "214", - "logo": "tb1/CCTV/CCTV1.png", - "epg": "CCTV1", - "name": "CCTV1" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888910/224/3221225619/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225619/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225643/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226195/index.m3u8" - ], - "number": "215", - "logo": "tb1/CCTV/CCTV2.png", - "epg": "CCTV2", - "name": "CCTV2" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225647/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225634/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225647/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226397/index.m3u8" - ], - "number": "216", - "logo": "tb1/CCTV/CCTV3.png", - "epg": "CCTV3", - "name": "CCTV3" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225621/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225621/index.m3u8", - "http://182.151.211.171:808/hls/4/index.m3u8", - "http://183.196.25.171:808/hls/4/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225621/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226191/index.m3u8" - ], - "number": "217", - "logo": "tb1/CCTV/CCTV4.png", - "epg": "CCTV4", - "name": "CCTV4" - }, - { - "urls": [ - "http://39.134.24.161/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226395/index.m3u8?", - "http://39.134.24.162/dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226395/index.m3u8?", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226259/index.m3u8?fmt=ts2hls", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225633/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226395/index.m3u8" - ], - "number": "218", - "logo": "tb1/CCTV/CCTV5.png", - "epg": "CCTV5", - "name": "CCTV5" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225649/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225706/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225706/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226221/index.m3u8" - ], - "number": "219", - "logo": "tb1/CCTV/CCTV5+.png", - "epg": "CCTV5+", - "name": "CCTV5+" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225632/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225650/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225650/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225632/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226393/index.m3u8" - ], - "number": "220", - "logo": "tb1/CCTV/CCTV6.png", - "epg": "CCTV6", - "name": "CCTV6" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225624/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225644/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225624/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225624/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225624/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226192/index.m3u8" - ], - "number": "221", - "logo": "tb1/CCTV/CCTV7.png", - "epg": "CCTV7", - "name": "CCTV7" - }, - { - "urls": [ - "http://39.135.138.60:18890/PLTV/88888910/224/3221225635/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225635/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225631/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226391/index.m3u8" - ], - "number": "222", - "logo": "tb1/CCTV/CCTV8.png", - "epg": "CCTV8", - "name": "CCTV8" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225626/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225646/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225626/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225626/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226197/index.m3u8" - ], - "number": "223", - "logo": "tb1/CCTV/CCTV9.png", - "epg": "CCTV9", - "name": "CCTV9" - }, - { - "urls": [ - "http://39.135.138.60:18890/PLTV/88888910/224/3221225636/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225627/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225636/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226189/index.m3u8" - ], - "number": "224", - "logo": "tb1/CCTV/CCTV10.png", - "epg": "CCTV10", - "name": "CCTV10" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225628/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888910/224/3221225628/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225628/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226240/index.m3u8" - ], - "number": "225", - "logo": "tb1/CCTV/CCTV11.png", - "epg": "CCTV11", - "name": "CCTV11" - }, - { - "urls": [ - "http://39.135.138.58:18890/TVOD/88888888/224/3221225637/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225629/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225637/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226190/index.m3u8" - ], - "number": "226", - "logo": "tb1/CCTV/CCTV12.png", - "epg": "CCTV12", - "name": "CCTV12" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225638/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225638/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225638/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225638/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225638/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226233/index.m3u8" - ], - "number": "227", - "logo": "tb1/CCTV/CCTV13.png", - "epg": "CCTV13", - "name": "CCTV13" - }, - { - "urls": [ - "http://39.135.138.60:18890/PLTV/88888910/224/3221225639/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225639/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225639/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225640/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226193/index.m3u8" - ], - "number": "228", - "logo": "tb1/CCTV/CCTV14.png", - "epg": "CCTV14", - "name": "CCTV14" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225641/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225641/index.m3u8", - "http://182.151.211.171:808/hls/15/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225641/index.m3u8?icpid=88888888&from=30&hms_devid=1452", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225641/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221225785/index.m3u8" - ], - "number": "229", - "logo": "tb1/CCTV/CCTV15.png", - "epg": "CCTV15", - "name": "CCTV15" - }, - { - "urls": [ - "http://39.134.116.30:8080/PLTV/88888888/224/3221226230/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888910/224/3221226230/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226233/index.m3u8", - "http://liveop.cctv.cn/hls/CCTV16HD/playlist.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226921/index.m3u8" - ], - "number": "230", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV16", - "name": "CCTV16" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225908/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225909/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225908/index.m3u8", - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226198/index.m3u8" - ], - "number": "231", - "logo": "tb1/CCTV/CCTV17.png", - "epg": "CCTV17", - "name": "CCTV17" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/qicai/__op/default/__f//index.m3u8" - ], - "number": "232", - "epg": "中学生", - "name": "中学生" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/faxian/__op/default/__f//index.m3u8" - ], - "number": "233", - "logo": "tb1/CCTV/CCTVfaxianzhilv.png", - "epg": "发现之旅", - "name": "发现之旅" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/gushi/__op/default/__f//index.m3u8" - ], - "number": "234", - "logo": "tb1/CCTV/CCTVlaogushi.png", - "epg": "老故事", - "name": "老故事" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/shuhua/__op/default/__f//index.m3u8" - ], - "number": "235", - "logo": "tb1/qt/CCTVPAYFEE37.jpg", - "epg": "书画频道", - "name": "书画" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/sheying/__op/default/__f//index.m3u8" - ], - "number": "236", - "logo": "tb1/qt/PHOTOGRAPHY-CHANNEL.jpg", - "epg": "摄影频道", - "name": "摄影" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/guoxue/__op/default/__f//index.m3u8" - ], - "number": "237", - "logo": "tb1/qt/SHUOWENJIEZI.jpg", - "epg": "国学", - "name": "国学" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/liang/__op/default/__f//index.m3u8" - ], - "number": "238", - "epg": "靓妆频道", - "name": "靓妆" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/dongman/__op/default/__f//index.m3u8" - ], - "number": "239", - "logo": "tb1/qt/xindongman.png", - "epg": "新动漫", - "name": "新动漫" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/youxi/__op/default/__f//index.m3u8" - ], - "number": "240", - "logo": "tb1/qt/gtv_youxi.png", - "epg": "GTV游戏竞技", - "name": "游戏竞技" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/techan/__op/default/__f//index.m3u8" - ], - "number": "241", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中华特产", - "name": "中华特产" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/car/__op/default/__f//index.m3u8" - ], - "number": "242", - "logo": "tb1/qt/jisuqiche.png", - "epg": "MAX极速汽车", - "name": "极速汽车" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/shengtai/__op/default/__f//index.m3u8" - ], - "number": "243", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "生态环境", - "name": "生态环境" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/diaoyu/__op/default/__f//index.m3u8" - ], - "number": "244", - "logo": "tb1/qt/BAMC4.jpg", - "epg": "四海钓鱼", - "name": "四海钓鱼" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/tianqiSD/__op/default/__f//index.m3u8" - ], - "number": "245", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国气象", - "name": "中国气象" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/doxtv/__op/default/__f//index.m3u8" - ], - "number": "246", - "logo": "tb1/qt/BAMC1.jpg", - "epg": "车迷频道", - "name": "车迷频道" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/cgtnSD/__op/default/__f//index.m3u8" - ], - "number": "247", - "logo": "tb1/CCTV/cgtn.png", - "epg": "CGTN", - "name": "CGTN" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/qsjlHD/__op/default/__f//index.m3u8" - ], - "number": "248", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "求索纪录", - "name": "求索纪录" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/jiankangSD/__op/default/__f//index.m3u8" - ], - "number": "249", - "logo": "tb1/qt/CHTV.jpg", - "epg": "百姓健康", - "name": "百姓健康" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/klcdHD/__op/default/__f//index.m3u8" - ], - "number": "250", - "logo": "tb1/qt/KUAILECHUIDIAO.jpg", - "epg": "快乐垂钓", - "name": "快乐垂钓" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/zaojiaoHD/__op/default/__f//index.m3u8" - ], - "number": "251", - "logo": "tb1/qt/CCTVPAYFEE33.jpg", - "epg": "早期教育", - "name": "早期教育" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/dfcj/__op/default/__f//index.m3u8" - ], - "number": "252", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "东方财经", - "name": "东方财经" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/jiazheng/__op/default/__f//index.m3u8" - ], - "number": "253", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "证券服务", - "name": "证券服务" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/soucang/__op/default/__f//index.m3u8" - ], - "number": "254", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "收藏天下", - "name": "收藏天下" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/caifu/__op/default/__f//index.m3u8" - ], - "number": "255", - "logo": "tb1/qt/财富天下.png", - "epg": "财富天下", - "name": "财富天下" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/weiqi/__op/default/__f//index.m3u8" - ], - "number": "256", - "logo": "tb1/qt/TIANYUANWEIQI.jpg", - "epg": "天元围棋", - "name": "天元围棋" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/xianfeng/__op/default/__f//index.m3u8" - ], - "number": "257", - "logo": "tb1/qt/XFBY.png", - "epg": "先锋乒羽", - "name": "先锋乒羽" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/huanqiulvyou/__op/default/__f//index.m3u8" - ], - "number": "258", - "logo": "tb1/qt/BAMC6.jpg", - "epg": "环球旅游", - "name": "环球旅游" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/bjayjsSD/__op/default/__f//index.m3u8" - ], - "number": "259", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "纪实科教", - "name": "纪实科教" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/dsjcHD/__op/default/__f//index.m3u8" - ], - "number": "260", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "SiTV都市剧场", - "name": "SiTV都市剧场" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/mlzqHD/__op/default/__f//index.m3u8" - ], - "number": "261", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "SiTV魅力足球", - "name": "SiTV魅力足球" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/dmxcHD/__op/default/__f//index.m3u8" - ], - "number": "262", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "SiTV动漫秀场", - "name": "SiTV动漫秀场" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/yxfyHD/__op/default/__f//index.m3u8" - ], - "number": "263", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "SiTV游戏风云", - "name": "SiTV游戏风云" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/shenghuo/__op/default/__f//index.m3u8" - ], - "number": "264", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "SiTV生活时尚", - "name": "SiTV生活时尚" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/fazhi/__op/default/__f//index.m3u8" - ], - "number": "265", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "SiTV法治天地", - "name": "SiTV法治天地" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/jinse/__op/default/__f//index.m3u8" - ], - "number": "266", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "SiTV金色学堂", - "name": "SiTV金色学堂" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/chcgqdyHD/__op/default/__f//index.m3u8", - "https://live.v1.mk/aishang/chcgqdy" - ], - "number": "267", - "logo": "tb1/qt/CHC3.jpg", - "epg": "CHC高清电影", - "name": "CHC高清电影" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/chcdzdyHD/__op/default/__f//index.m3u8", - "https://live.v1.mk/aishang/chcdzdy" - ], - "number": "268", - "logo": "tb1/qt/CHC1.jpg", - "epg": "CHC动作电影", - "name": "CHC动作电影" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/chcjtyyHD/__op/default/__f//index.m3u8", - "https://live.v1.mk/aishang/chcjtyy" - ], - "number": "269", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CHC家庭影院", - "name": "CHC家庭影院" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/shandongHD/__op/default/__f//index.m3u8", - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/fyjcHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1070_1.m3u8" - ], - "number": "270", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV风云剧场", - "name": "CCTV风云剧场" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/fyyyHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1073_1.m3u8" - ], - "number": "271", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV风云音乐", - "name": "CCTV风云音乐" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/fyzqHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1065_1.m3u8" - ], - "number": "272", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV风云足球", - "name": "CCTV风云足球" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/hjjcHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1069_1.m3u8" - ], - "number": "273", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV怀旧剧场", - "name": "CCTV怀旧剧场" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/diyijuchangHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1072_1.m3u8" - ], - "number": "274", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV第一剧场", - "name": "CCTV第一剧场" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/bqkjHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1027_1.m3u8" - ], - "number": "275", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV兵器科技", - "name": "CCTV兵器科技" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/yswhHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1071_1.m3u8" - ], - "number": "276", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV央视文化", - "name": "CCTV央视文化" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/golfHD/__op/default/__f//index.m3u8" - ], - "number": "277", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV高尔夫网球", - "name": "CCTV高尔夫网球" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/ystqHD/__op/default/__f//index.m3u8", - "http://218.17.216.102:9901/tsfile/live/1066_1.m3u8" - ], - "number": "278", - "logo": "tb1/CCTV/CCTVtaiqiu.png", - "epg": "央视台球", - "name": "CCTV央视台球" - }, - { - "urls": [ - "http://bytedance.live.cqccn.com/__cl/cg:live/__c/nvxing/__op/default/__f//index.m3u8" - ], - "number": "279", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV女性时尚", - "name": "CCTV女性时尚" - }, - { - "urls": [ - "https://live.v1.mk/api/bestv.php?id=hxjc8m/8000000" - ], - "number": "280", - "logo": "tb1/qt/huanxiao.png", - "epg": "欢笑剧场", - "name": "欢笑剧场" - }, - { - "urls": [ - "http://218.17.216.102:9901/tsfile/live/1068_1.m3u8" - ], - "number": "281", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CCTV世界地理", - "name": "CCTV世界地理" - }, - { - "urls": [ - "http://txycsbl.centv.cn/zb/0628cetv1.m3u8", - "http://183.207.255.188/live/program/live/zgjy1ott/1300000/mnf.m3u8" - ], - "number": "282", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CETV1", - "name": "CETV1" - }, - { - "urls": [ - "http://txycsbl.centv.cn/zb/0822cetv2.m3u8" - ], - "number": "283", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CETV2", - "name": "CETV2" - }, - { - "urls": [ - "http://txycsbl.centv.cn/zb/0822cetv3.m3u8" - ], - "number": "284", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CETV3", - "name": "CETV3" - }, - { - "urls": [ - "http://txycsbl.centv.cn/zb/0822cetv4.m3u8" - ], - "number": "285", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CETV4", - "name": "CETV4" - }, - { - "urls": [ - "http://beifeng.site:4000/udp/239.3.1.111:8001" - ], - "number": "286", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "每日影院", - "name": "每日影院" - }, - { - "urls": [ - "http://beifeng.site:4000/udp/239.3.1.112:8001" - ], - "number": "287", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "幸福剧场", - "name": "幸福剧场" - }, - { - "urls": [ - "http://beifeng.site:4000/udp/239.3.1.113:8001" - ], - "number": "288", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "幸福娱乐", - "name": "幸福娱乐" - }, - { - "urls": [ - "https://nmglive.imfc.cn/5n1r1c/182396.m3u8" - ], - "number": "289", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "足球频道", - "name": "足球频道" - } - ], - "name": "⚛️ 央视" - }, - { - "channel": [ - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225673/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225673/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225673/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225673/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225674/index.m3u8" - ], - "number": "290", - "logo": "tb1/ws/beijing.png", - "epg": "北京卫视", - "name": "北京卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225734/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225692/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225734/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225692/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225692/index.m3u8" - ], - "number": "291", - "logo": "tb1/ws/chongqing.png", - "epg": "重庆卫视", - "name": "重庆卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225740/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225699/index.m3u8" - ], - "number": "292", - "logo": "tb1/ws/hubei.png", - "epg": "湖北卫视", - "name": "湖北卫视" - }, - { - "urls": [ - "http://39.135.138.60:18890/PLTV/88888910/224/3221225741/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225741/index.m3u8?fmt=ts2hls", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225741/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225700/index.m3u8" - ], - "number": "293", - "logo": "tb1/ws/shenzhen.png", - "epg": "深圳卫视", - "name": "深圳卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225745/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225704/index.m3u8", - "http://39.134.66.2/PLTV/88888888/224/3221225506/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225745/index.m3u8" - ], - "number": "294", - "logo": "tb1/ws/hunan.png", - "epg": "湖南卫视", - "name": "湖南卫视" - }, - { - "urls": [ - "http://39.135.138.60:18890/PLTV/88888910/224/3221225744/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225744/index.m3u8", - "http://39.134.66.2/PLTV/88888888/224/3221225514/index.m3u8", - "http://hw-m-l.cztv.com/channels/lantian/channel01/1080p.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225744/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225703/index.m3u8" - ], - "number": "295", - "logo": "tb1/ws/zhejiang.png", - "epg": "浙江卫视", - "name": "浙江卫视" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225735/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225735/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225735/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225696/index.m3u8" - ], - "number": "296", - "logo": "tb1/ws/liaoning.png", - "epg": "辽宁卫视", - "name": "辽宁卫视" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225705/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225705/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888910/224/3221225705/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225746/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225705/index.m3u8", - "http://117.169.120.140:8080/live/jiangxistv/.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225746/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225746/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225705/index.m3u8" - ], - "number": "297", - "logo": "tb1/ws/jiangxi.png", - "epg": "江西卫视", - "name": "江西卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225743/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225702/index.m3u8", - "http://39.134.66.2/PLTV/88888888/224/3221225503/index.m3u8" - ], - "number": "298", - "logo": "tb1/ws/jiangsu.png", - "epg": "江苏卫视", - "name": "江苏卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225658/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225659/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225658/index.m3u8", - "http://183.207.255.197/live/program/live/hddfws/2300000/mnf.m3u8" - ], - "number": "299", - "logo": "tb1/ws/dongfang.png", - "epg": "东方卫视", - "name": "东方卫视" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225657/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225657/index.m3u8" - ], - "number": "300", - "logo": "tb1/ws/dongnan.png", - "epg": "东南卫视", - "name": "东南卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225728/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225728/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225728/index.m3u8" - ], - "number": "301", - "logo": "tb1/ws/guizhou.png", - "epg": "贵州卫视", - "name": "贵州卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225733/index.m3u8", - "http://live.aikan.miguvideo.com/PLTV/88888888/224/3221231885/1.m3u8" - ], - "number": "302", - "logo": "tb1/ws/sichuan.png", - "epg": "四川卫视", - "name": "四川卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225739/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225698/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225739/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225739/index.m3u8" - ], - "number": "303", - "logo": "tb1/ws/tianjin.png", - "epg": "天津卫视", - "name": "天津卫视" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225738/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225738/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225738/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225697/index.m3u8" - ], - "number": "304", - "logo": "tb1/ws/shandong.png", - "epg": "山东卫视", - "name": "山东卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225737/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225691/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225737/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225737/index.m3u8?fmt=ts2hls" - ], - "number": "305", - "logo": "tb1/ws/anhui.png", - "epg": "安徽卫视", - "name": "安徽卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225730/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225730/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225730/index.m3u8?fmt=ts2hlsts", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225730/index.m3u8?fmt=ts2hlsts" - ], - "number": "306", - "logo": "tb1/ws/shanxi_.png", - "epg": "山西卫视", - "name": "山西卫视" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225732/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225732/index.m3u8?fmt=ts2hls", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225732/index.m3u8" - ], - "number": "307", - "logo": "tb1/ws/hebei.png", - "epg": "河北卫视", - "name": "河北卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225667/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225667/index.m3u8" - ], - "number": "308", - "logo": "tb1/ws/neimeng.png", - "epg": "内蒙古卫视", - "name": "内蒙古卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225727/index.m3u8", - "http://stream.qhbtv.com/qhws/sd/live.m3u8?_upt=63cf437e1591689484" - ], - "number": "309", - "logo": "tb1/ws/qinghai.png", - "epg": "青海卫视", - "name": "青海卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225729/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225729/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225729/index.m3u8" - ], - "number": "310", - "logo": "tb1/ws/shanxi.png", - "epg": "陕西卫视", - "name": "陕西卫视" - }, - { - "urls": [ - "http://39.135.138.59:18890/PLTV/88888910/224/3221225724/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225724/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225724/index.m3u8" - ], - "number": "311", - "logo": "tb1/ws/gansu.png", - "epg": "甘肃卫视", - "name": "甘肃卫视" - }, - { - "urls": [ - "http://39.135.138.59:18890/PLTV/88888910/224/3221225726/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225726/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225726/index.m3u8" - ], - "number": "312", - "logo": "tb1/ws/ningxia.png", - "epg": "宁夏卫视", - "name": "宁夏卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225742/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225701/index.m3u8" - ], - "number": "313", - "logo": "tb1/ws/guangdong.png", - "epg": "广东卫视", - "name": "广东卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225731/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225731/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225731/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225731/index.m3u8?fmt=ts2hls" - ], - "number": "314", - "logo": "tb1/ws/guangxi.png", - "epg": "广西卫视", - "name": "广西卫视" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225722/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225722/index.m3u8" - ], - "number": "315", - "logo": "tb1/ws/lvyou.png", - "epg": "旅游卫视", - "name": "海南卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225722/index.m3u8" - ], - "number": "316", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "旅游卫视", - "name": "旅游卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225680/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225680/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225680/index.m3u8" - ], - "number": "317", - "logo": "tb1/ws/jilin.png", - "epg": "吉林卫视", - "name": "吉林卫视" - }, - { - "urls": [ - "http://39.135.138.59:18890/PLTV/88888910/224/3221225736/index.m3u8?fmt=ts2hls", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225736/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225736/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225690/index.m3u8" - ], - "number": "318", - "logo": "tb1/ws/heilongjiang.png", - "epg": "黑龙江卫视", - "name": "黑龙江卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225664/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225664/index.m3u8" - ], - "number": "319", - "logo": "tb1/ws/yunnan.png", - "epg": "云南卫视", - "name": "云南卫视" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225725/index.m3u8", - "http://218.204.51.252:9901/tsfile/live/1044_1.m3u8", - "http://livehyw5.chinamcache.com/hyw/zb01.m3u8?txSecret=58347f72aece2c25c685b8dc4da74652&txTime=95A66658", - "http://111.12.101.23:6610/PLTV/77777777/224/3221225788/index.m3u8?servicetype=1&IASHttpSessionId=OTT" - ], - "number": "320", - "logo": "tb1/ws/xinjiang.png", - "epg": "新疆卫视", - "name": "新疆卫视" - }, - { - "urls": [ - "http://111.59.189.40:8445/tsfile/live/0115_1.m3u8", - "http://test5.btzx.com.cn/live/btxjbtws.stream/chunklist_w588330955.m3u8" - ], - "number": "321", - "logo": "tb1/ws/bingtuan.png", - "epg": "兵团卫视", - "name": "兵团卫视" - }, - { - "urls": [ - "http://183.207.255.188/live/program/live/jspdhd/4000000/mnf.m3u8" - ], - "number": "322", - "logo": "tb1/ws/shanghaijishi.png", - "epg": "上海纪实", - "name": "上海纪实" - }, - { - "urls": [ - "https://tv.vtibet.cn:443/live/EfgSmE4jCTBtvchannel3.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225723/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225723/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225723/index.m3u8" - ], - "number": "323", - "logo": "tb1/ws/xizang.png", - "epg": "西藏卫视", - "name": "西藏卫视" - }, - { - "urls": [ - "https://tv.vtibet.cn/live/FYeIdVzzCTBtvchannel2.m3u8" - ], - "number": "324", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "西藏影视文化", - "name": "西藏影视文化" - }, - { - "urls": [ - "https://tv.vtibet.cn/live/de3mrRaaCTBtvchannel1.m3u8", - "http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8" - ], - "number": "325", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "西藏藏语", - "name": "西藏藏语" - }, - { - "urls": [ - "http://live.ybtvyun.com/video/s10006-90fe76c52091/index.m3u8", - "http://111.20.33.70/TVOD/88888893/224/3221226220/index.m3u8" - ], - "number": "326", - "logo": "tb1/ws/YANBIAN1.png", - "epg": "延边卫视", - "name": "延边卫视" - }, - { - "urls": [ - "http://111.20.33.70/TVOD/88888893/224/3221226218/index.m3u8" - ], - "number": "327", - "logo": "tb1/ws/nanfang.png", - "epg": "南方卫视", - "name": "大湾区卫视" - }, - { - "urls": [ - "http://111.20.33.70/TVOD/88888893/224/3221226229/index.m3u8" - ], - "number": "328", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "农林卫视", - "name": "农林卫视" - } - ], - "name": "📡 卫视" - }, - { - "channel": [ - { - "urls": [ - "http://117.184.239.60/liveplay-kk.rtxapp.com/live/program/live/cctv4k/15000000/mnf.m3u8", - "http://114.132.210.86:8765/telegram@feiyangdigital-bestv-cctv4k.m3u8", - "http://159.75.85.63:8654/telegram@feiyangdigital-gudou-cctv4k.m3u8", - "http://114.132.210.86:8765/telegram@feiyangdigital-cqyx-cctv4k.m3u8", - "http://159.75.85.63:8654/telegram@feiyangdigital-ysp-cctv4k.m3u8", - "http://liveop.cctv.cn/hls/4KHD/playlist.m3u8", - "http://liveop.cctv.cn/hls/4KHD/playlist.m3u8?zzhongd" - ], - "number": "329", - "logo": "tb1/CCTV/CCTV4k.png", - "epg": "CCTV4K", - "name": "CCTV4K" - }, - { - "urls": [ - "http://[2409:8087:3869:8021:1001::e5]:6610/PLTV/88888910/224/3221225786/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225786/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225786/index.m3u8", - "http://39.135.138.59:18890/PLTV/88888910/224/3221225786/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225786/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225786/index.m3u8" - ], - "number": "330", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "纯享4K", - "name": "纯享4K" - }, - { - "urls": [ - "http://183.207.255.188/live/program/live/hxjchd/4000000/mnf.m3u8" - ], - "number": "331", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "欢笑剧场4K", - "name": "欢笑剧场4K" - }, - { - "urls": [ - "http://[2409:8087:7000:20:1000::22]:6060/yinhe/2/ch00000090990000001709/index.m3u8?virtualDomain=yinhe.live_hls.zte.com" - ], - "number": "332", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "爱上4K", - "name": "爱上4K" - }, - { - "urls": [ - "http://[2409:8c02:21c:60::2b]/live.rxip.sc96655.com/live/emdy4k_8000.m3u8", - "http://159.75.85.63:5681/sxg.php" - ], - "number": "333", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "4K超高清电影", - "name": "4K超高清电影" - }, - { - "urls": [ - "http://159.75.85.63:5828/4kys.php" - ], - "number": "334", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "4K影视", - "name": "4K影视" - }, - { - "urls": [ - "https://d18dyiwu97wm6q.cloudfront.net/playlist2160p.m3u8" - ], - "number": "335", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "爱自然", - "name": "爱自然" - }, - { - "urls": [ - "http://[2409:8087:5e01:34::30]:6610/ZTE_CMS/00000001000000060000000000000202/index.m3u8?IAS" - ], - "number": "336", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "BesTV4K", - "name": "BesTV4K" - }, - { - "urls": [ - "http://117.136.156.66:80/000000001000/3000000010000005180/index.m3u8", - "http://117.136.156.71:80/000000001000/3000000010000005180/index.m3u8", - "http://117.136.156.35:80/000000001000/3000000010000005180/index.m3u8" - ], - "number": "337", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "咪咕体育", - "name": "咪咕体育" - }, - { - "urls": [ - "http://[2409:8087:3428:20:500::100f]:6610/PLTV/88888888/224/3221226887/index.m3u8?servicetype=1" - ], - "number": "338", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "芒果娱乐4K", - "name": "芒果娱乐4K" - }, - { - "urls": [ - "http://1972762443.cloudvdn.com/a.m3u8?domain=liveshowbak2.kan0512.com&player=TsoAAKTAB9juCfgW&secondToken=secondToken%3Aquo0xZnAeUUm47BcklXb7ffCum8&streamid=ksz-norecord%3Aksz-norecord%2Fcsztv4k_4k&v3=1", - "http://liveshowbak2.kan0512.com/ksz-norecord/csztv4k_4k.m3u8" - ], - "number": "339", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "苏州4K", - "name": "苏州4K" - }, - { - "urls": [ - "http://221.179.217.76/PLTV/88888888/224/3221226550/1.m3u8" - ], - "number": "340", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "北京IPTV", - "name": "北京IPTV" - }, - { - "urls": [ - "https://justsometime.gztv.com/sec/shenghuos.m3u8" - ], - "number": "341", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "南国都市", - "name": "南国都市" - }, - { - "urls": [ - "http://[2409:8087:4400:20:1:a0f:12:33]/iptv.cdn.ha.chinamobile.com/PLTV/88888888/224/3221226526/index.m3u8" - ], - "number": "342", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "河南4K", - "name": "河南4K" - }, - { - "urls": [ - "http://muzzik-live.morescreens.com/mts-a6/playlist.m3u8" - ], - "number": "343", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "ZZ4000", - "name": "ZZ4000" - }, - { - "urls": [ - "http://pluto-live.plutotv.net/egress/chandler/pluto01/live/VIACBS02/master_2400.m3u8" - ], - "number": "344", - "logo": "tb1/gt/mtvlivehd.png", - "epg": "MTV", - "name": "MTV" - }, - { - "urls": [ - "https://d2dw21aq0j0l5c.cloudfront.net/playlist_3840x2160.m3u8" - ], - "number": "345", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "Loupe 4K", - "name": "Loupe 4K" - } - ], - "name": "🌈 4K" - }, - { - "channel": [ - { - "urls": [ - "http://hpull.kktv8.com/livekktv/128600025/playlist.m3u8" - ], - "number": "346", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "HBO2", - "name": "HBO2" - }, - { - "urls": [ - "http://39.135.138.60:18890/PLTV/88888910/224/3221225718/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225718/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225764/index.m3u8", - "http://39.135.138.58:18890/PLTV/88888888/224/3221225769/index.m3u8" - ], - "number": "347", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黑莓电影", - "name": "黑莓电影" - }, - { - "urls": [ - "http://hpull.kktv8.com/livekktv/128600025/playlist.m3u8" - ], - "number": "348", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金马影院", - "name": "金马影院" - }, - { - "urls": [ - "http://lvbaiducdncmn.inter.iqiyi.com/tslive/c56_lb_184_600_t10/c56_lb_184_600_t10.m3u8" - ], - "number": "349", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "票房电影", - "name": "票房电影" - }, - { - "urls": [ - "http://lvbaiducdncmn.inter.iqiyi.com/tslive/c51_lb_109_600_t10/c51_lb_109_600_t10.m3u8" - ], - "number": "350", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "怀旧影院", - "name": "怀旧影院" - }, - { - "urls": [ - "http://lvbaiducdncmn.inter.iqiyi.com/tslive/c56_lb_183_600_t10/c56_lb_183_600_t10.m3u8" - ], - "number": "351", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "五星影院", - "name": "五星影院" - }, - { - "urls": [ - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226463/index.m3u8", - "http://222.132.191.125:9901/tsfile/live/1010_1.m3u8", - "http://live.cooltv.top/tv/aishang.php?id=chcgqdy" - ], - "number": "352", - "logo": "tb1/qt/CHC3.jpg", - "epg": "CHC高清电影", - "name": "CHC高清电影" - }, - { - "urls": [ - "http://dbiptv.sn.chinamobile.com/PLTV/88888890/224/3221226462/index.m3u8" - ], - "number": "353", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "CHC家庭影院", - "name": "CHC家庭影院" - }, - { - "urls": [ - "http://live.cooltv.top/tv/aishang.php?id=chcdzdy" - ], - "number": "354", - "logo": "tb1/qt/CHC1.jpg", - "epg": "CHC动作电影", - "name": "CHC动作电影" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225623/index.m3u8" - ], - "number": "355", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级电影", - "name": "超级电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6610883" - ], - "number": "356", - "logo": "tb1/CCTV/CCTVxinke.png", - "epg": "新科动漫", - "name": "动漫" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/131977", - "http://epg.112114.xyz/douyu/7298973" - ], - "number": "357", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "24H欢乐不断", - "name": "24H欢乐不断" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4332" - ], - "number": "358", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "科幻动作经典喜剧", - "name": "科幻动作经典喜剧" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/252802" - ], - "number": "359", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典科幻动作灾难", - "name": "经典科幻动作灾难" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/10395973" - ], - "number": "360", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "童年回忆", - "name": "童年回忆" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3508304" - ], - "number": "361", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "科幻影视", - "name": "科幻影视" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/747764" - ], - "number": "362", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "60帧极致蓝光", - "name": "60帧极致蓝光" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3700024" - ], - "number": "363", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典神剧", - "name": "经典神剧" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6449849" - ], - "number": "364", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "国语超清动画电影", - "name": "国语超清动画电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/434971" - ], - "number": "365", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "华语经典", - "name": "华语经典" - } - ], - "name": "🎥 影视" - }, - { - "channel": [ - { - "urls": [ - "http://39.135.138.60:18890/PLTV/88888888/224/3221225677/index.m3u8?zbeid" - ], - "number": "366", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "北京卡酷少儿", - "name": "北京卡酷少儿" - }, - { - "urls": [ - "https://newcntv.qcloudcdn.com/asp/hls/1200/0303000a/3/default/87f87ba569c147e3805f80e4844d2de9/1200.m3u8" - ], - "number": "367", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "倒霉特熊", - "name": "倒霉特熊" - }, - { - "urls": [ - "https://newcntv.qcloudcdn.com/asp/hls/1200/0303000a/3/default/3ccdecc7d6e341c1920ad4eac5d82f38/1200.m3u8" - ], - "number": "368", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "反转星球", - "name": "反转星球" - }, - { - "urls": [ - "http://39.135.138.59:18890/PLTV/88888910/224/3221225720/index.m3u8" - ], - "number": "369", - "logo": "tb1/qt/xuandong.png", - "epg": "哈哈炫动", - "name": "哈哈炫动" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225721/index.m3u8" - ], - "number": "370", - "logo": "tb1/qt/jinyingkatong.png", - "epg": "金鹰卡通", - "name": "金鹰卡通" - }, - { - "urls": [ - "http://live.nbs.cn/channels/njtv/sepd/500k.m3u8?zjiangsd", - "http://live.nbs.cn/channels/njtv/sepd/m3u8:500k/live.m3u8" - ], - "number": "371", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "南京少儿", - "name": "南京少儿" - }, - { - "urls": [ - "https://newcntv.qcloudcdn.com/asp/hls/850/0303000a/3/default/c2e7e767f3144bed959ef20b8b961fe5/850.m3u8" - ], - "number": "372", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "狮子王国", - "name": "狮子王国" - }, - { - "urls": [ - "https://newcntv.qcloudcdn.com/asp/hls/1200/0303000a/3/default/7ae265653fe149069c3b53e31caaf060/1200.m3u8" - ], - "number": "373", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "熊大过年", - "name": "熊大过年" - }, - { - "urls": [ - "https://newcntv.qcloudcdn.com/asp/hls/1200/0303000a/3/default/1733da751de64e6e910abda889d87a26/1200.m3u8" - ], - "number": "374", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "熊大熊二", - "name": "熊大熊二" - }, - { - "urls": [ - "https://newcntv.qcloudcdn.com/asp/hls/1200/0303000a/3/default/d8ad434c6b08421a927557a4d98da65c/1200.m3u8" - ], - "number": "375", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "云朵妈妈", - "name": "云朵妈妈" - }, - { - "urls": [ - "http://hw-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8?zzhed", - "http://hw-m-l.cztv.com/channels/lantian/channel08/360p.m3u8?zzhed", - "http://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8?zzhed", - "http://hw-m-l.cztv.com/channels/lantian/channel08/1080p.m3u8?k=1a7559a51eeb880b021619a07f463ac4&t=1577153787" - ], - "number": "376", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "浙江少儿", - "name": "浙江少儿" - } - ], - "name": "👶 少儿" - }, - { - "channel": [ - { - "urls": [ - "http://183.207.255.188/live/program/live/mlyyhd/4000000/mnf.m3u8", - "http://183.207.255.188/live/program/live/mlyyhd/4000000/mnf.m3u8?zshangd" - ], - "number": "377", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "魅力足球", - "name": "魅力足球" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225709/index.m3u8", - "http://39.135.138.60:18890/PLTV/88888910/224/3221225709/index.m3u8" - ], - "number": "378", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品体育", - "name": "精品体育" - }, - { - "urls": [ - "http://39.134.115.163:8080/PLTV/88888910/224/3221225622/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225767/index.m3u8" - ], - "number": "379", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级体育", - "name": "超级体育" - }, - { - "urls": [ - "http://[2409:8c3c:1300:806:74::b]/liveplay-kk.rtxapp.com/live/program/live/wxtyhd8m/8000000/mnf.m3u8?" - ], - "number": "380", - "logo": "tb1/qt/wuxingtiyu.png", - "epg": "五星体育频道", - "name": "五星体育" - }, - { - "urls": [ - "http://183.207.255.188/live/program/live/xsjhd/4000000/mnf.m3u8", - "http://183.207.255.188/live/program/live/xsjhd/4000000/mnf.m3u8?zshangd", - "http://183.207.255.188/live/program/live/xsjhd/4000000/mnf.m3u8" - ], - "number": "381", - "logo": "tb1/qt/xinshijue.png", - "epg": "新视觉", - "name": "新视觉" - }, - { - "urls": [ - "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/jbtyhd/4000000/mnf.m3u8", - "http://shbu.live.bestvcdn.com.cn:8080/live/program/live/jbtyhd/2300000/mnf.m3u8" - ], - "number": "382", - "logo": "tb1/qt/jinbaotiyu.jpg", - "epg": "劲爆体育", - "name": "劲爆体育" - }, - { - "urls": [ - "http://117.136.156.35:80/000000001000/3000000010000005180/index.m3u8", - "http://39.135.134.67/000000001000/3000000001000028638/index.m3u8" - ], - "number": "383", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "咪咕体育", - "name": "咪咕体育" - } - ], - "name": "🏂 体育" - }, - { - "channel": [ - { - "urls": [ - "https://epg.112114.xyz/huya/23865036", - "https://epg.112114.xyz/huya/23734246" - ], - "number": "384", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "西游记", - "name": "西游记" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23740156" - ], - "number": "385", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "楚汉骄雄", - "name": "楚汉骄雄" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23734183", - "https://epg.112114.xyz/huya/23735153" - ], - "number": "386", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "状王宋世杰", - "name": "状王宋世杰" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865058" - ], - "number": "387", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "食为奴", - "name": "食为奴" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23860049" - ], - "number": "388", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "乾隆大帝", - "name": "乾隆大帝" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23734211" - ], - "number": "389", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "降魔的", - "name": "降魔的" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23863796" - ], - "number": "390", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "神雕侠侣", - "name": "神雕侠侣" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23829447" - ], - "number": "391", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "难兄难弟", - "name": "难兄难弟" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865164" - ], - "number": "392", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "杨家将", - "name": "杨家将" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865152" - ], - "number": "393", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "僵尸", - "name": "僵尸" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23735126", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23749096" - ], - "number": "394", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆1", - "name": "埋堆堆1" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23728660", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23735126" - ], - "number": "395", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆2", - "name": "埋堆堆2" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23749068", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865152" - ], - "number": "396", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆3", - "name": "埋堆堆3" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23903123", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23903196" - ], - "number": "397", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆4", - "name": "埋堆堆4" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23734176" - ], - "number": "398", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆[32]", - "name": "埋堆堆[32]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23728674", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23740156" - ], - "number": "399", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆5", - "name": "埋堆堆5" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23735181", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728660" - ], - "number": "400", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆6", - "name": "埋堆堆6" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865080", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23735153" - ], - "number": "401", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆7", - "name": "埋堆堆7" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23829543", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865058" - ], - "number": "402", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆8", - "name": "埋堆堆8" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23734256", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734183" - ], - "number": "403", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆9", - "name": "埋堆堆9" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23749083", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23749068" - ], - "number": "404", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆10", - "name": "埋堆堆10" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23860039", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865036" - ], - "number": "405", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆11", - "name": "埋堆堆11" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23863778", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23740162" - ], - "number": "406", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆12", - "name": "埋堆堆12" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23863818", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23829474" - ], - "number": "407", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆13", - "name": "埋堆堆13" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23903183", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863833" - ], - "number": "408", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆14", - "name": "埋堆堆14" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23863787", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23903106" - ], - "number": "409", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆15", - "name": "埋堆堆15" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23903130", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865025" - ], - "number": "410", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆16", - "name": "埋堆堆16" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23734169", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728689" - ], - "number": "411", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆17", - "name": "埋堆堆17" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865142", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23824171" - ], - "number": "412", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆18", - "name": "埋堆堆18" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23903196", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23860057" - ], - "number": "413", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆19", - "name": "埋堆堆19" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865179", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865072" - ], - "number": "414", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆20", - "name": "埋堆堆20" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865171", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734176" - ], - "number": "415", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆21", - "name": "埋堆堆21" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23864973", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728651" - ], - "number": "416", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆22", - "name": "埋堆堆22" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23863804", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734246" - ], - "number": "417", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆23", - "name": "埋堆堆23" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23865161", - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865179" - ], - "number": "418", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆24", - "name": "埋堆堆24" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734196" - ], - "number": "419", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆25", - "name": "埋堆堆25" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734211" - ], - "number": "420", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆26", - "name": "埋堆堆26" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865086" - ], - "number": "421", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆27", - "name": "埋堆堆27" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863796" - ], - "number": "422", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆28", - "name": "埋堆堆28" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863822" - ], - "number": "423", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆29", - "name": "埋堆堆29" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23749083" - ], - "number": "424", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆30", - "name": "埋堆堆30" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734243" - ], - "number": "425", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆31", - "name": "埋堆堆31" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23864480" - ], - "number": "426", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆32", - "name": "埋堆堆32" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23746486" - ], - "number": "427", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆33", - "name": "埋堆堆33" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23860049" - ], - "number": "428", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆34", - "name": "埋堆堆34" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23749074" - ], - "number": "429", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆35", - "name": "埋堆堆35" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863882" - ], - "number": "430", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆36", - "name": "埋堆堆36" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863778" - ], - "number": "431", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆37", - "name": "埋堆堆37" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23824164" - ], - "number": "432", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆38", - "name": "埋堆堆38" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23829537" - ], - "number": "433", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆39", - "name": "埋堆堆39" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863809" - ], - "number": "434", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆40", - "name": "埋堆堆40" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865096" - ], - "number": "435", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆41", - "name": "埋堆堆41" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863804" - ], - "number": "436", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆42", - "name": "埋堆堆42" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728630" - ], - "number": "437", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆43", - "name": "埋堆堆43" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863895" - ], - "number": "438", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆44", - "name": "埋堆堆44" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863787" - ], - "number": "439", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆45", - "name": "埋堆堆45" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728637" - ], - "number": "440", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆46", - "name": "埋堆堆46" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865142" - ], - "number": "441", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆47", - "name": "埋堆堆47" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23903085" - ], - "number": "442", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆48", - "name": "埋堆堆48" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23903183" - ], - "number": "443", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆49", - "name": "埋堆堆49" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728647" - ], - "number": "444", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆50", - "name": "埋堆堆50" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23746691" - ], - "number": "445", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆51", - "name": "埋堆堆51" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23829447" - ], - "number": "446", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆52", - "name": "埋堆堆52" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728693" - ], - "number": "447", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆53", - "name": "埋堆堆53" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23903130" - ], - "number": "448", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆54", - "name": "埋堆堆54" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734223" - ], - "number": "449", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆55", - "name": "埋堆堆55" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23734169" - ], - "number": "450", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆56", - "name": "埋堆堆56" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865124" - ], - "number": "451", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆57", - "name": "埋堆堆57" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23865186" - ], - "number": "452", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆58", - "name": "埋堆堆58" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23902225" - ], - "number": "453", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆59", - "name": "埋堆堆59" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23903164" - ], - "number": "454", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆60", - "name": "埋堆堆60" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23728674" - ], - "number": "455", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆61", - "name": "埋堆堆61" - }, - { - "urls": [ - "http://43.128.40.42:198/虎牙直播/huya.php?id=23863818" - ], - "number": "456", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "埋堆堆62", - "name": "埋堆堆62" - } - ], - "name": "🏖 埋堆堆" - }, - { - "channel": [ - { - "urls": [ - "https://epg.112114.xyz/huya/11342412" - ], - "number": "457", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "周星驰[1]", - "name": "周星驰[1]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342421" - ], - "number": "458", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "林正英[4]", - "name": "林正英[4]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/880261" - ], - "number": "459", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "港台电影[5]", - "name": "港台电影[5]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059574" - ], - "number": "460", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "欧美娱乐[6]", - "name": "欧美娱乐[6]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342396" - ], - "number": "461", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "铁齿铜牙纪晓岚[8]", - "name": "铁齿铜牙纪晓岚[8]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601968" - ], - "number": "462", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "沈腾[9]", - "name": "沈腾[9]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15152155" - ], - "number": "463", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "科幻五分钟[10]", - "name": "科幻五分钟[10]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352944" - ], - "number": "464", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "新三国[11]", - "name": "新三国[11]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602082" - ], - "number": "465", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金庸经典剧[12]", - "name": "金庸经典剧[12]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352909" - ], - "number": "466", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "徐克[13]", - "name": "徐克[13]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352914" - ], - "number": "467", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "极限挑战[14]", - "name": "极限挑战[14]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352960" - ], - "number": "468", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "庆余年[15]", - "name": "庆余年[15]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11274154" - ], - "number": "469", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "陈翔六点半[16]", - "name": "陈翔六点半[16]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16028551" - ], - "number": "470", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "欧美电影5分钟[18]", - "name": "欧美电影5分钟[18]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342386" - ], - "number": "471", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "成龙[20]", - "name": "成龙[20]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342433" - ], - "number": "472", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "地下交通站[21]", - "name": "地下交通站[21]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11336726" - ], - "number": "473", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "爱情公寓[23]", - "name": "爱情公寓[23]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/618917" - ], - "number": "474", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "电影[24]", - "name": "电影[24]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342403" - ], - "number": "475", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "倚天屠龙记[25]", - "name": "倚天屠龙记[25]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/18632116" - ], - "number": "476", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "龙珠[27]", - "name": "龙珠[27]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11259843" - ], - "number": "477", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "让子弹飞[28]", - "name": "让子弹飞[28]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352935" - ], - "number": "478", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "甄子丹[31]", - "name": "甄子丹[31]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352872" - ], - "number": "479", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "家有儿女[32]", - "name": "家有儿女[32]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16913382" - ], - "number": "480", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "路飞[34]", - "name": "路飞[34]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342439" - ], - "number": "481", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "雍正王朝[36]", - "name": "雍正王朝[36]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352958" - ], - "number": "482", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "神探狄仁杰[39]", - "name": "神探狄仁杰[39]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23419131" - ], - "number": "483", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "恐怖电影找力哥[41]", - "name": "恐怖电影找力哥[41]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352871" - ], - "number": "484", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "秀cai遇着兵[42]", - "name": "秀cai遇着兵[42]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342384" - ], - "number": "485", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "新水浒[44]", - "name": "新水浒[44]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342430" - ], - "number": "486", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "士兵突击[45]", - "name": "士兵突击[45]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352874" - ], - "number": "487", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "龙门镖局[48]", - "name": "龙门镖局[48]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342424" - ], - "number": "488", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "刘德华[49]", - "name": "刘德华[49]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602086" - ], - "number": "489", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "官场大佬再创业[54]", - "name": "官场大佬再创业[54]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352882" - ], - "number": "490", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "网球王子[55]", - "name": "网球王子[55]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352940" - ], - "number": "491", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "康熙王朝[56]", - "name": "康熙王朝[56]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342418" - ], - "number": "492", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "康熙微服私访[58]", - "name": "康熙微服私访[58]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342426" - ], - "number": "493", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "极品新娘[60]", - "name": "极品新娘[60]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602081" - ], - "number": "494", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "三国演义[63]", - "name": "三国演义[63]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/19863777" - ], - "number": "495", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "止戈电影[64]", - "name": "止戈电影[64]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342390" - ], - "number": "496", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "李连杰[65]", - "name": "李连杰[65]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352880" - ], - "number": "497", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "欧美电影[67]", - "name": "欧美电影[67]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602034" - ], - "number": "498", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "科幻电影[68]", - "name": "科幻电影[68]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059588" - ], - "number": "499", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "杰森·斯坦森[69]", - "name": "杰森·斯坦森[69]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602071" - ], - "number": "500", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "父母爱情[71]", - "name": "父母爱情[71]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601986" - ], - "number": "501", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "红海行动[72]", - "name": "红海行动[72]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342417" - ], - "number": "502", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "生活大爆炸[73]", - "name": "生活大爆炸[73]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11282233" - ], - "number": "503", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "五福星[77]", - "name": "五福星[77]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352881" - ], - "number": "504", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "麻雀[79]", - "name": "麻雀[79]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/19524135" - ], - "number": "505", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "封神演义[80]", - "name": "封神演义[80]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352938" - ], - "number": "506", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "小品[81]", - "name": "小品[81]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342387" - ], - "number": "507", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "周润发[83]", - "name": "周润发[83]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342402" - ], - "number": "508", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "搞笑的一家人[84]", - "name": "搞笑的一家人[84]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352962" - ], - "number": "509", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典高智商犯罪片[86]", - "name": "经典高智商犯罪片[86]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601970" - ], - "number": "510", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "倩女幽魂[87]", - "name": "倩女幽魂[87]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/14363949" - ], - "number": "511", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "Yes小哥的美食[88]", - "name": "Yes小哥的美食[88]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352905" - ], - "number": "512", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "朱雀青龙[89]", - "name": "朱雀青龙[89]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352910" - ], - "number": "513", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "杨幂扮演王昭君出塞[90]", - "name": "杨幂扮演王昭君出塞[90]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352975" - ], - "number": "514", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "芈月传[91]", - "name": "芈月传[91]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352964" - ], - "number": "515", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "神貂侠侣[92]", - "name": "神貂侠侣[92]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/18441722" - ], - "number": "516", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "林正英[93]", - "name": "林正英[93]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601960" - ], - "number": "517", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "港产搞笑[94]", - "name": "港产搞笑[94]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342416" - ], - "number": "518", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "我de团长我的团[95]", - "name": "我de团长我的团[95]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352912" - ], - "number": "519", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "天龙八部[96]", - "name": "天龙八部[96]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601961" - ], - "number": "520", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "小鲤鱼[97]", - "name": "小鲤鱼[97]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342413" - ], - "number": "521", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中华小当家[98]", - "name": "中华小当家[98]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/17105786" - ], - "number": "522", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "7分钟看完科幻[99]", - "name": "7分钟看完科幻[99]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352886" - ], - "number": "523", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "警匪[100]", - "name": "警匪[100]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059565" - ], - "number": "524", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "虎牙[102]", - "name": "虎牙[102]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/17943364" - ], - "number": "525", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "权力的游戏[103]", - "name": "权力的游戏[103]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16424416" - ], - "number": "526", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "港式警匪片[104]", - "name": "港式警匪片[104]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15894162" - ], - "number": "527", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "百鸟朝凤[105]", - "name": "百鸟朝凤[105]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352879" - ], - "number": "528", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "猫和老鼠[106]", - "name": "猫和老鼠[106]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15981239" - ], - "number": "529", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "新乌龙院之笑闹江湖[109]", - "name": "新乌龙院之笑闹江湖[109]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342400" - ], - "number": "530", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "旋风球技[110]", - "name": "旋风球技[110]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/17941367" - ], - "number": "531", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "海贼王15[111]", - "name": "海贼王15[111]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11336725" - ], - "number": "532", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "RM 刘在石李光洙跑男[114]", - "name": "RM 刘在石李光洙跑男[114]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342422" - ], - "number": "533", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "吐槽大会[115]", - "name": "吐槽大会[115]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602074" - ], - "number": "534", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "大秦帝国[116]", - "name": "大秦帝国[116]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342419" - ], - "number": "535", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黑帮斗争[117]", - "name": "黑帮斗争[117]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21136378" - ], - "number": "536", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "周星驰[119]", - "name": "周星驰[119]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352908" - ], - "number": "537", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "笑傲帮[120]", - "name": "笑傲帮[120]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/20236200" - ], - "number": "538", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "火影忍者[121]", - "name": "火影忍者[121]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602072" - ], - "number": "539", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "葛二蛋[122]", - "name": "葛二蛋[122]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15824466" - ], - "number": "540", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "军事武器分析[123]", - "name": "军事武器分析[123]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/17445539" - ], - "number": "541", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "悬疑推理烧脑破案[126]", - "name": "悬疑推理烧脑破案[126]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601978" - ], - "number": "542", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "神医喜来乐[127]", - "name": "神医喜来乐[127]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15870999" - ], - "number": "543", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "小川电影解说[128]", - "name": "小川电影解说[128]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059587" - ], - "number": "544", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "好莱坞[130]", - "name": "好莱坞[130]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352891" - ], - "number": "545", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "医馆笑传[131]", - "name": "医馆笑传[131]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342427" - ], - "number": "546", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典好片[132]", - "name": "经典好片[132]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059556" - ], - "number": "547", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "史诗级战zheng电影[133]", - "name": "史诗级战zheng电影[133]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342388" - ], - "number": "548", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "开心快乐就完事了[134]", - "name": "开心快乐就完事了[134]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059562" - ], - "number": "549", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黄金配角廖启智[135]", - "name": "黄金配角廖启智[135]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352941" - ], - "number": "550", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国功夫[136]", - "name": "中国功夫[136]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352884" - ], - "number": "551", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "Han国高分动作片[137]", - "name": "Han国高分动作片[137]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602037" - ], - "number": "552", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "勇敢的心[138]", - "name": "勇敢的心[138]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602085" - ], - "number": "553", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典好剧[139]", - "name": "经典好剧[139]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/24396428" - ], - "number": "554", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精彩不断[140]", - "name": "精彩不断[140]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16615910" - ], - "number": "555", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "高分电影[141]", - "name": "高分电影[141]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352899" - ], - "number": "556", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "隋唐英雄[144]", - "name": "隋唐英雄[144]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352955" - ], - "number": "557", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "美食纪录片[148]", - "name": "美食纪录片[148]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16865726" - ], - "number": "558", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "张显宗[149]", - "name": "张显宗[149]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16144261" - ], - "number": "559", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "一口毒奶[150]", - "name": "一口毒奶[150]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11336592" - ], - "number": "560", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "邓超[151]", - "name": "邓超[151]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15267139" - ], - "number": "561", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典影片[152]", - "name": "经典影片[152]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352894" - ], - "number": "562", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典喜剧片[154]", - "name": "经典喜剧片[154]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/20045465" - ], - "number": "563", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "X档案[155]", - "name": "X档案[155]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059585" - ], - "number": "564", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "大片[156]", - "name": "大片[156]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/20695907" - ], - "number": "565", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "影片欣赏[160]", - "name": "影片欣赏[160]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602043" - ], - "number": "566", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "徐峥[161]", - "name": "徐峥[161]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16920222" - ], - "number": "567", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "电影笔记[162]", - "name": "电影笔记[162]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059577" - ], - "number": "568", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "异形世界[165]", - "name": "异形世界[165]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15494057" - ], - "number": "569", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "6分钟看惊悚恐怖片[168]", - "name": "6分钟看惊悚恐怖片[168]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352913" - ], - "number": "570", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "神hua[169]", - "name": "神hua[169]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16739452" - ], - "number": "571", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "海贼王[173]", - "name": "海贼王[173]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16868935" - ], - "number": "572", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "速看[174]", - "name": "速看[174]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/17904870" - ], - "number": "573", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "科幻片[176]", - "name": "科幻片[176]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/17204307" - ], - "number": "574", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "速看美剧[177]", - "name": "速看美剧[177]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21388479" - ], - "number": "575", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "林正英[178]", - "name": "林正英[178]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352937" - ], - "number": "576", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "笑傲江湖 喜剧脱口秀[179]", - "name": "笑傲江湖 喜剧脱口秀[179]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/17341907" - ], - "number": "577", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "大侦探皮卡丘[181]", - "name": "大侦探皮卡丘[181]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/15556391" - ], - "number": "578", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "沫漾电影[182]", - "name": "沫漾电影[182]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352961" - ], - "number": "579", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "今晚80后脱口秀[183]", - "name": "今晚80后脱口秀[183]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16149609" - ], - "number": "580", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "奇幻片[184]", - "name": "奇幻片[184]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/24376361" - ], - "number": "581", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "进来看看电影[186]", - "name": "进来看看电影[186]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/19450129" - ], - "number": "582", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "骆驼祥子[187]", - "name": "骆驼祥子[187]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352887" - ], - "number": "583", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "怀玉格格[191]", - "name": "怀玉格格[191]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16604522" - ], - "number": "584", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国最后一个太监[192]", - "name": "中国最后一个太监[192]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16914870" - ], - "number": "585", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "科幻动作电影[193]", - "name": "科幻动作电影[193]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16626185" - ], - "number": "586", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "母亲为爱展开复仇[195]", - "name": "母亲为爱展开复仇[195]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352903" - ], - "number": "587", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "电ju惊魂系列[196]", - "name": "电ju惊魂系列[196]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23017124" - ], - "number": "588", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "经典小影院[201]", - "name": "经典小影院[201]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/18964209" - ], - "number": "589", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "娘子陪你看[206]", - "name": "娘子陪你看[206]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342414" - ], - "number": "590", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "捉妖记[207]", - "name": "捉妖记[207]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059581" - ], - "number": "591", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "欧美电影[211]", - "name": "欧美电影[211]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/24614407" - ], - "number": "592", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "硬汉的直播间[212]", - "name": "硬汉的直播间[212]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352945" - ], - "number": "593", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "天雷滚滚[213]", - "name": "天雷滚滚[213]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352965" - ], - "number": "594", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "港剧经典[215]", - "name": "港剧经典[215]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11213191" - ], - "number": "595", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "茶啊二中[216]", - "name": "茶啊二中[216]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602044" - ], - "number": "596", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "喜剧专场[217]", - "name": "喜剧专场[217]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602065" - ], - "number": "597", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "浓浓当年情[218]", - "name": "浓浓当年情[218]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342437" - ], - "number": "598", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "搜神传[220]", - "name": "搜神传[220]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352885" - ], - "number": "599", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "情深深雨濛濛[221]", - "name": "情深深雨濛濛[221]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11336571" - ], - "number": "600", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "女神系列[222]", - "name": "女神系列[222]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342435" - ], - "number": "601", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金庸的武侠世界[223]", - "name": "金庸的武侠世界[223]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11336590" - ], - "number": "602", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "杨门女将电影系列[224]", - "name": "杨门女将电影系列[224]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342398" - ], - "number": "603", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "穿越千年之恋[225]", - "name": "穿越千年之恋[225]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602041" - ], - "number": "604", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "天龙八部[226]", - "name": "天龙八部[226]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059580" - ], - "number": "605", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "魔法世界[227]", - "name": "魔法世界[227]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352974" - ], - "number": "606", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "文成公主进藏[228]", - "name": "文成公主进藏[228]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352949" - ], - "number": "607", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "舒克和贝塔[229]", - "name": "舒克和贝塔[229]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352969" - ], - "number": "608", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "镖行天下[230]", - "name": "镖行天下[230]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602033" - ], - "number": "609", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "许氏三杰[232]", - "name": "许氏三杰[232]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11336578" - ], - "number": "610", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精忠岳飞南征北战[234]", - "name": "精忠岳飞南征北战[234]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342423" - ], - "number": "611", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "张卫健[235]", - "name": "张卫健[235]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601972" - ], - "number": "612", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国西部刑侦大案纪实[236]", - "name": "中国西部刑侦大案纪实[236]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352963" - ], - "number": "613", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "搞笑僵尸片[238]", - "name": "搞笑僵尸片[238]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602075" - ], - "number": "614", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "国产青春爱情[239]", - "name": "国产青春爱情[239]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342395" - ], - "number": "615", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "孙悟空[240]", - "name": "孙悟空[240]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059579" - ], - "number": "616", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "太空混战[241]", - "name": "太空混战[241]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602077" - ], - "number": "617", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "三国鼎立[242]", - "name": "三国鼎立[242]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11279251" - ], - "number": "618", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "da宋提刑官[243]", - "name": "da宋提刑官[243]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059564" - ], - "number": "619", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "赘婿[244]", - "name": "赘婿[244]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059552" - ], - "number": "620", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "歪果仁的动作片子[246]", - "name": "歪果仁的动作片子[246]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352906" - ], - "number": "621", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "冯小刚合集[247]", - "name": "冯小刚合集[247]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601981" - ], - "number": "622", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "命案十三宗[248]", - "name": "命案十三宗[248]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601962" - ], - "number": "623", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "令狐冲&东方不败[249]", - "name": "令狐冲&东方不败[249]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352922" - ], - "number": "624", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "四驱兄弟[250]", - "name": "四驱兄弟[250]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342397" - ], - "number": "625", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "最佳搭档[251]", - "name": "最佳搭档[251]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352973" - ], - "number": "626", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "利箭特战队出击![252]", - "name": "利箭特战队出击![252]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/16135863" - ], - "number": "627", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "关灯看大片[254]", - "name": "关灯看大片[254]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059568" - ], - "number": "628", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "婆媳[255]", - "name": "婆媳[255]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352876" - ], - "number": "629", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黄渤[256]", - "name": "黄渤[256]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601964" - ], - "number": "630", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "虎妈猫爸[257]", - "name": "虎妈猫爸[257]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/10871113" - ], - "number": "631", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "慈善超人合集[258]", - "name": "慈善超人合集[258]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352877" - ], - "number": "632", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "喜剧合家欢[259]", - "name": "喜剧合家欢[259]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11342436" - ], - "number": "633", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "谍战神剧[262]", - "name": "谍战神剧[262]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11601971" - ], - "number": "634", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "甄嬛传[265]", - "name": "甄嬛传[265]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602088" - ], - "number": "635", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "悬疑片[266]", - "name": "悬疑片[266]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/23652317" - ], - "number": "636", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "我是大哥大[267]", - "name": "我是大哥大[267]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352936" - ], - "number": "637", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "大宅men[270]", - "name": "大宅men[270]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059586" - ], - "number": "638", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "看救援电影[272]", - "name": "看救援电影[272]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11602067" - ], - "number": "639", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "贺岁合家欢剧场[273]", - "name": "贺岁合家欢剧场[273]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/21059558" - ], - "number": "640", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "篮qiu火[274]", - "name": "篮qiu火[274]" - }, - { - "urls": [ - "https://epg.112114.xyz/huya/11352897" - ], - "number": "641", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金庸作品电影[278]", - "name": "金庸作品电影[278]" - } - ], - "name": "🐯 虎牙" - }, - { - "channel": [ - { - "urls": [ - "http://epg.112114.xyz/douyu/7919720" - ], - "number": "642", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "粤语综艺", - "name": "粤语综艺" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/434971" - ], - "number": "643", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "华语经典", - "name": "华语经典" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/315457" - ], - "number": "644", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "吃米滴虫", - "name": "吃米滴虫" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/122402" - ], - "number": "645", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "神乐影片1", - "name": "神乐影片1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/85894" - ], - "number": "646", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "神乐影片2", - "name": "神乐影片2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3637778" - ], - "number": "647", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "特辑影院", - "name": "特辑影院" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4332" - ], - "number": "648", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "贝爷MAX厅", - "name": "贝爷MAX厅" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6140589" - ], - "number": "649", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "漫威影片", - "name": "漫威影片" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3990812" - ], - "number": "650", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "周星驰电影", - "name": "周星驰电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/2516864" - ], - "number": "651", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "刘德华电影1", - "name": "刘德华电影1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8985415" - ], - "number": "652", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "刘德华电影2", - "name": "刘德华电影2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9650887" - ], - "number": "653", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "喜剧经典", - "name": "喜剧经典" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8770422" - ], - "number": "654", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "豆瓣高分", - "name": "豆瓣高分" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/218859" - ], - "number": "655", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "林正英电影1", - "name": "林正英电影1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7356023" - ], - "number": "656", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "林正英电影2", - "name": "林正英电影2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/747764" - ], - "number": "657", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "女神金电影", - "name": "女神金电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/252802" - ], - "number": "658", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "贝爷影厅1", - "name": "贝爷影厅1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/36337" - ], - "number": "659", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "贝爷影厅2", - "name": "贝爷影厅2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8814650" - ], - "number": "660", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "霍格影片", - "name": "霍格影片" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/20415" - ], - "number": "661", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "可乐电影", - "name": "可乐电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/74374" - ], - "number": "662", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "冰冰经典电影", - "name": "冰冰经典电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/263824" - ], - "number": "663", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "奶虫恐怖电影", - "name": "奶虫恐怖电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6655271" - ], - "number": "664", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "奶瓶科幻片", - "name": "奶瓶科幻片" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9826611" - ], - "number": "665", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "避风港影院", - "name": "避风港影院" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9652323" - ], - "number": "666", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "林林影院", - "name": "林林影院" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4282654" - ], - "number": "667", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "漫威电影", - "name": "漫威电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/1165374" - ], - "number": "668", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "恐怖经典", - "name": "恐怖经典" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9651304" - ], - "number": "669", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "变种人电影", - "name": "变种人电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3928" - ], - "number": "670", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "华语电影", - "name": "华语电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/1504768" - ], - "number": "671", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "华语动作电影", - "name": "华语动作电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9275635" - ], - "number": "672", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "怀旧90", - "name": "怀旧90" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/5423" - ], - "number": "673", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "国产影片", - "name": "国产影片" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4505431" - ], - "number": "674", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "麓山迷踪", - "name": "麓山迷踪" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6763930" - ], - "number": "675", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "高帧影片", - "name": "高帧影片" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6537888" - ], - "number": "676", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "米娅电影", - "name": "米娅电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7136517" - ], - "number": "677", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "小九电影", - "name": "小九电影" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4549169" - ], - "number": "678", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "连续剧1", - "name": "连续剧1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7623292" - ], - "number": "679", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "连续剧2", - "name": "连续剧2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/5689514" - ], - "number": "680", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "连续剧3", - "name": "连续剧3" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7476264" - ], - "number": "681", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "连续剧4", - "name": "连续剧4" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4396972" - ], - "number": "682", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "连续剧5", - "name": "连续剧5" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/805235" - ], - "number": "683", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "游戏解说", - "name": "游戏解说" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3980787" - ], - "number": "684", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼小品", - "name": "斗鱼小品" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3485629" - ], - "number": "685", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼探险", - "name": "斗鱼探险" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7528160" - ], - "number": "686", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼动画", - "name": "斗鱼动画" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/2935323" - ], - "number": "687", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影1", - "name": "斗鱼电影1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7459925" - ], - "number": "688", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影2", - "name": "斗鱼电影2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/431460" - ], - "number": "689", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影3", - "name": "斗鱼电影3" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4246519" - ], - "number": "690", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影4", - "name": "斗鱼电影4" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7116591" - ], - "number": "691", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影5", - "name": "斗鱼电影5" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6776615" - ], - "number": "692", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影6", - "name": "斗鱼电影6" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7655471" - ], - "number": "693", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影7", - "name": "斗鱼电影7" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4290711" - ], - "number": "694", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影8", - "name": "斗鱼电影8" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6566671" - ], - "number": "695", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影9", - "name": "斗鱼电影9" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8475821" - ], - "number": "696", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影10", - "name": "斗鱼电影10" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/338759" - ], - "number": "697", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影11", - "name": "斗鱼电影11" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/2793084" - ], - "number": "698", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影12", - "name": "斗鱼电影12" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/5067952" - ], - "number": "699", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影13", - "name": "斗鱼电影13" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/413573" - ], - "number": "700", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影14", - "name": "斗鱼电影14" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/5033502" - ], - "number": "701", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影15", - "name": "斗鱼电影15" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/426517" - ], - "number": "702", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影16", - "name": "斗鱼电影16" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/1274132" - ], - "number": "703", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影17", - "name": "斗鱼电影17" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/7314294" - ], - "number": "704", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影18", - "name": "斗鱼电影18" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6582435" - ], - "number": "705", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影19", - "name": "斗鱼电影19" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/323876" - ], - "number": "706", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影20", - "name": "斗鱼电影20" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9249162" - ], - "number": "707", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼4K", - "name": "斗鱼4K" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/20415" - ], - "number": "708", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD1", - "name": "斗鱼电影HD1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/10240553" - ], - "number": "709", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD2", - "name": "斗鱼电影HD2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/122402" - ], - "number": "710", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD3", - "name": "斗鱼电影HD3" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/85894" - ], - "number": "711", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD4", - "name": "斗鱼电影HD4" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/263824" - ], - "number": "712", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD5", - "name": "斗鱼电影HD5" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/747764" - ], - "number": "713", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD6", - "name": "斗鱼电影HD6" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/20415" - ], - "number": "714", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD7", - "name": "斗鱼电影HD7" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8663752" - ], - "number": "715", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD8", - "name": "斗鱼电影HD8" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/323876" - ], - "number": "716", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD9", - "name": "斗鱼电影HD9" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6140589" - ], - "number": "717", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD10", - "name": "斗鱼电影HD10" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8770422" - ], - "number": "718", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD11", - "name": "斗鱼电影HD11" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/2436390" - ], - "number": "719", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD12", - "name": "斗鱼电影HD12" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/218859" - ], - "number": "720", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD13", - "name": "斗鱼电影HD13" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/36337" - ], - "number": "721", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD14", - "name": "斗鱼电影HD14" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/413573" - ], - "number": "722", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD15", - "name": "斗鱼电影HD15" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/1504768" - ], - "number": "723", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD16", - "name": "斗鱼电影HD16" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3637726" - ], - "number": "724", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD17", - "name": "斗鱼电影HD17" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9292492" - ], - "number": "725", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD18", - "name": "斗鱼电影HD18" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/3637765rrt97" - ], - "number": "726", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD19", - "name": "斗鱼电影HD19" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/10395991" - ], - "number": "727", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD20", - "name": "斗鱼电影HD20" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/10395986" - ], - "number": "728", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD21", - "name": "斗鱼电影HD21" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/252802" - ], - "number": "729", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD22", - "name": "斗鱼电影HD22" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/ 6079455" - ], - "number": "730", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD23", - "name": "斗鱼电影HD23" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/315131" - ], - "number": "731", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD24", - "name": "斗鱼电影HD24" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8945323" - ], - "number": "732", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD25", - "name": "斗鱼电影HD25" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/2516864" - ], - "number": "733", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD26", - "name": "斗鱼电影HD26" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/248753" - ], - "number": "734", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD27", - "name": "斗鱼电影HD27" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/4332" - ], - "number": "735", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD28", - "name": "斗鱼电影HD28" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9651304" - ], - "number": "736", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD29", - "name": "斗鱼电影HD29" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9650887" - ], - "number": "737", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD30", - "name": "斗鱼电影HD30" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8814650" - ], - "number": "738", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD31", - "name": "斗鱼电影HD31" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/10240510" - ], - "number": "739", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD32", - "name": "斗鱼电影HD32" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/52787" - ], - "number": "740", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD33", - "name": "斗鱼电影HD33" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8985415" - ], - "number": "741", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD34", - "name": "斗鱼电影HD34" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/1165374" - ], - "number": "742", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD35", - "name": "斗鱼电影HD35" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/1735337" - ], - "number": "743", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD36", - "name": "斗鱼电影HD36" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6537888" - ], - "number": "744", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD37", - "name": "斗鱼电影HD37" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/6003761" - ], - "number": "745", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD38", - "name": "斗鱼电影HD38" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9683979" - ], - "number": "746", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD39", - "name": "斗鱼电影HD39" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/1226741" - ], - "number": "747", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD40", - "name": "斗鱼电影HD40" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/59612" - ], - "number": "748", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD41", - "name": "斗鱼电影HD41" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/925724" - ], - "number": "749", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼电影HD42", - "name": "斗鱼电影HD42" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9220456" - ], - "number": "750", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼搞笑HD1", - "name": "斗鱼搞笑HD1" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9770949" - ], - "number": "751", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼搞笑HD2", - "name": "斗鱼搞笑HD2" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9067836" - ], - "number": "752", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼搞笑HD3", - "name": "斗鱼搞笑HD3" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/9817729" - ], - "number": "753", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼搞笑HD4", - "name": "斗鱼搞笑HD4" - }, - { - "urls": [ - "http://epg.112114.xyz/douyu/8737695" - ], - "number": "754", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "斗鱼搞笑HD5", - "name": "斗鱼搞笑HD5" - } - ], - "name": "🐠 斗鱼" - }, - { - "channel": [ - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221225766/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225623/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225766/index.m3u8" - ], - "number": "755", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级电影", - "name": "超级电影" - }, - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221225765/index.m3u8", - "http://39.134.115.163:8080/PLTV/88888910/224/3221225625/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225625/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225765/index.m3u8" - ], - "number": "756", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级电视剧", - "name": "超级电视剧" - }, - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221225622/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225767/index.m3u8" - ], - "number": "757", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级体育", - "name": "超级体育" - }, - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221225620/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225768/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225620/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225768/index.m3u8" - ], - "number": "758", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "超级综艺", - "name": "超级综艺" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225708/index.m3u8" - ], - "number": "759", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "潮妈辣婆", - "name": "潮妈辣婆" - }, - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221226202/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226202/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221226202/index.m3u8" - ], - "number": "760", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "东北热剧", - "name": "东北热剧" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225678/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225678/index.m3u8" - ], - "number": "761", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "古装剧场", - "name": "古装剧场" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225712/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225712/index.m3u8" - ], - "number": "762", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "海外剧场", - "name": "海外剧场" - }, - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221226210/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221226210/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221226210/index.m3u8" - ], - "number": "763", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "欢乐剧场", - "name": "欢乐剧场" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225713/index.m3u8" - ], - "number": "764", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "家庭剧场", - "name": "家庭剧场" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225711/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225711/index.m3u8" - ], - "number": "765", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "金牌综艺", - "name": "金牌综艺" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225714/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225714/index.m3u8" - ], - "number": "766", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品大剧", - "name": "精品大剧" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225710/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225710/index.m3u8" - ], - "number": "767", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品纪录", - "name": "精品纪录" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225669/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225669/index.m3u8" - ], - "number": "768", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "军旅剧场", - "name": "军旅剧场" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225757/index.m3u8" - ], - "number": "769", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "军事评论", - "name": "军事评论" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225716/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225716/index.m3u8" - ], - "number": "770", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "明星大片", - "name": "明星大片" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225670/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225670/index.m3u8" - ], - "number": "771", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "农业致富", - "name": "农业致富" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225656/index.m3u8" - ], - "number": "772", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "武搏世界", - "name": "武搏世界" - }, - { - "urls": [ - "http://39.135.138.58:18890/PLTV/88888888/224/3221225707/index.m3u8", - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225707/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225707/index.m3u8" - ], - "number": "773", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "炫舞未来", - "name": "炫舞未来" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225666/index.m3u8" - ], - "number": "774", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "怡伴健康", - "name": "怡伴健康" - }, - { - "urls": [ - "http://hwrr.jx.chinamobile.com:8080/PLTV/88888888/224/3221225660/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225660/index.m3u8" - ], - "number": "775", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "中国功夫", - "name": "中国功夫" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225653/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225749/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225750/index.m3u8" - ], - "number": "776", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "哒啵赛事", - "name": "哒啵赛事" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225648/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225709/index.m3u8" - ], - "number": "777", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "精品体育", - "name": "精品体育" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225716/index.m3u8" - ], - "number": "778", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "明星剧场", - "name": "明星剧场" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225672/index.m3u8" - ], - "number": "779", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黑莓动画", - "name": "黑莓动画" - }, - { - "urls": [ - "http://117.169.121.162:6610/PLTV/88888910/224/3221225718/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225764/index.m3u8", - "http://117.169.121.162:6610/PLTV/88888910/224/3221225769/index.m3u8" - ], - "number": "780", - "logo": "https://ghproxy.com/https://raw.githubusercontent.com/FongMi/TV/release/app/src/main/res/drawable-xxhdpi/ic_img_empty.png", - "epg": "黑莓电影", - "name": "黑莓电影" - } - ], - "name": "🎣 NewTV" - } -] diff --git a/tools/src/main/resources/live.txt b/tools/src/main/resources/live.txt index fb15fe91..d18695b2 100644 --- a/tools/src/main/resources/live.txt +++ b/tools/src/main/resources/live.txt @@ -1,8 +1,6 @@ 香港,#genre# 001,凤凰中文,tb1/gt/fenghuangzhongwen.png,鳳凰中文,http://play-live.ifeng.com/live/06OLEGEGM4G.m3u8 002,凤凰资讯,tb1/gt/fenghuangzixun.png,鳳凰資訊,http://play-live.ifeng.com/live/06OLEEWQKN4.m3u8 -台灣,#genre# -003,星卫HD电影,tb1/gt/starmov.png,星衛電影,http://198.16.64.10:8278/xingwei_movie/playlist.m3u8?tid=MBDB4578128345781283&ct=19225&tsum=f2041ec954c95b4a5fe29d7ccbfe5b60 歐美_1234,#genre# 1001,,,Three,http://live.redtraffic.xyz/threesome.m3u8 1002,,,BlowJob,http://live.redtraffic.xyz/blowjob.m3u8 \ No newline at end of file