Files
tvboxzt/spider_validation.html
T
2026-08-08 14:11:20 +08:00

565 lines
133 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Spider 校验 HTML 报告</title>
<style>
:root {
color-scheme: light;
--bg: #eef3f1;
--panel: #ffffff;
--text: #102027;
--muted: #57707d;
--accent: #0f766e;
--accent-soft: #d7f3ee;
--danger: #b42318;
--danger-soft: #fde7e4;
--border: #d8e3df;
--shadow: 0 16px 40px rgba(16, 32, 39, 0.08);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Segoe UI", "PingFang SC", "Noto Sans SC", sans-serif;
background:
radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
linear-gradient(180deg, #f7faf9 0%, var(--bg) 100%);
color: var(--text);
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.page {
width: min(1600px, calc(100vw - 32px));
margin: 0 auto;
padding: 24px 0 40px;
}
.hero {
display: grid;
gap: 18px;
margin-bottom: 18px;
padding: 24px;
border: 1px solid rgba(15, 118, 110, 0.16);
border-radius: 20px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 245, 241, 0.96));
box-shadow: var(--shadow);
}
.hero h1 {
margin: 0;
font-size: clamp(30px, 5vw, 42px);
line-height: 1.05;
letter-spacing: -0.03em;
}
.hero p {
margin: 0;
color: var(--muted);
font-size: 15px;
}
.summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px;
}
.summary-card {
padding: 14px 16px;
border: 1px solid var(--border);
border-radius: 16px;
background: rgba(255, 255, 255, 0.84);
}
.summary-card span {
display: block;
font-size: 12px;
color: var(--muted);
margin-bottom: 6px;
}
.summary-card strong {
font-size: 24px;
letter-spacing: -0.03em;
}
.panel {
margin-top: 18px;
padding: 20px;
border: 1px solid var(--border);
border-radius: 20px;
background: var(--panel);
box-shadow: var(--shadow);
}
.panel h2 {
margin: 0 0 12px;
font-size: 18px;
}
.filters {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 12px;
align-items: end;
}
.filter {
display: grid;
gap: 6px;
}
.filter label {
font-size: 12px;
font-weight: 600;
color: var(--muted);
}
.filter input,
.filter select,
.filter button {
width: 100%;
min-height: 42px;
padding: 10px 12px;
border: 1px solid var(--border);
border-radius: 12px;
background: #fff;
color: var(--text);
font: inherit;
}
.filter button {
background: var(--accent);
color: #fff;
border-color: var(--accent);
cursor: pointer;
font-weight: 600;
}
.filter button:hover {
filter: brightness(0.97);
}
#summary-line {
margin: 14px 0 0;
color: var(--muted);
font-size: 14px;
}
.table-wrap {
overflow: auto;
border: 1px solid var(--border);
border-radius: 16px;
}
table {
width: 100%;
min-width: 1300px;
border-collapse: collapse;
background: #fff;
}
thead {
background: #f4faf8;
}
th,
td {
padding: 12px 14px;
border-bottom: 1px solid var(--border);
vertical-align: top;
text-align: left;
font-size: 13px;
}
td {
line-height: 1.45;
word-break: break-word;
}
th button {
all: unset;
display: inline-flex;
align-items: center;
gap: 6px;
cursor: pointer;
font-weight: 700;
color: var(--text);
}
th button .sort-indicator {
color: var(--muted);
font-size: 11px;
}
.status {
display: inline-flex;
align-items: center;
padding: 4px 10px;
border-radius: 999px;
font-weight: 700;
font-size: 12px;
white-space: nowrap;
}
.status.success {
color: var(--accent);
background: var(--accent-soft);
}
.status.failed {
color: var(--danger);
background: var(--danger-soft);
}
.empty {
padding: 28px 14px;
text-align: center;
color: var(--muted);
}
@media (max-width: 768px) {
.page {
width: min(100vw - 20px, 1600px);
padding-top: 16px;
}
.hero,
.panel {
padding: 16px;
border-radius: 16px;
}
}
</style>
</head>
<body>
<div class="page">
<section class="hero">
<div>
<h1>Spider 校验 HTML 报告</h1>
<p>本地静态报告,支持前端即时筛选与表头排序。 <a href="spiders_v2.json" target="_blank">spiders_v2.json</a></p>
<p><a href="https://github.com/har01d5/tvbox" target="_blank">GitHub仓库地址</a></p>
</div>
<div class="summary-grid">
<div class="summary-card"><span>生成时间</span><strong id="generated-at"></strong></div>
<div class="summary-card"><span>并发线程</span><strong id="max-workers"></strong></div>
<div class="summary-card"><span>总数</span><strong id="total-count"></strong></div>
<div class="summary-card"><span>成功</span><strong id="success-count"></strong></div>
<div class="summary-card"><span>失败</span><strong id="failed-count"></strong></div>
<div class="summary-card"><span>总耗时</span><strong id="total-duration"></strong></div>
</div>
</section>
<section class="panel">
<h2>筛选</h2>
<div class="filters">
<div class="filter">
<label for="status-filter">状态</label>
<select id="status-filter"></select>
</div>
<div class="filter">
<label for="stage-filter">失败阶段</label>
<select id="stage-filter"></select>
</div>
<div class="filter">
<label for="keyword-filter">爬虫名 / 文件名关键字</label>
<input id="keyword-filter" type="search" placeholder="例如 alpha / 4K指南" />
</div>
<div class="filter">
<label for="duration-min-filter">最小耗时(ms)</label>
<input id="duration-min-filter" type="number" min="0" />
</div>
<div class="filter">
<label for="duration-max-filter">最大耗时(ms)</label>
<input id="duration-max-filter" type="number" min="0" />
</div>
<div class="filter">
<label for="reset-filters">操作</label>
<button id="reset-filters" type="button">重置筛选</button>
</div>
</div>
<p id="summary-line">当前显示 0 / 0 条</p>
</section>
<section class="panel">
<h2>明细结果</h2>
<div class="table-wrap">
<table>
<thead>
<tr>
<th><button type="button" data-sort-key="spider">爬虫 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="status">状态 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="failed_stage">失败阶段 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="total">总耗时 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="module_load">模块加载 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="init">初始化 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="home">首页分类 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="category">分类列表 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="detail">视频详情 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="player">播放地址 <span class="sort-indicator"></span></button></th>
<th><button type="button" data-sort-key="url_check">地址校验 <span class="sort-indicator"></span></button></th>
<th>返回地址</th>
<th>错误信息</th>
</tr>
</thead>
<tbody id="results-body"></tbody>
</table>
</div>
</section>
</div>
<script>
const report = {"generated_at": "2026-08-08T14:10:03+08:00", "max_workers": 16, "total_duration_ms": 73343.834, "summary": {"total": 125, "success": 93, "failed": 32, "success_rate": 0.744, "stage_failures": {"module_load": 0, "init": 0, "home": 6, "category": 15, "detail": 2, "player": 2, "url_check": 2, "unexpected": 5}}, "results": [{"spider": "123社区", "file": "123社区.txt", "success": false, "failed_stage": "category", "error": "分类视频缺少 vod_id", "traceback": null, "timings_ms": {"module_load": 290.161, "init": 833.2, "home": 0.002, "category": 447.24, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 1996.984}, "counts": {"classes": 5, "category_videos": 1, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "48", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "123臻藏", "file": "123臻藏.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 288.901, "init": 0.12, "home": 0.034, "category": 2386.465, "detail": 687.435, "player": 0.319, "url_check": 604.154, "total": 3976.078}, "counts": {"classes": 6, "category_videos": 10, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "film", "vod_id": "4008", "flag": "提示", "play_id": "https://123.qsxy.top/4008.html"}, "player": {"parse": 1, "url": "https://123.qsxy.top/4008.html", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://123.qsxy.top/4008.html", "reason": null}}, {"spider": "275听书", "file": "275听书.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 286.034, "init": 0.001, "home": 0.008, "category": 1869.404, "detail": 530.353, "player": 726.213, "url_check": 49.504, "total": 3475.607}, "counts": {"classes": 20, "category_videos": 12, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "latest", "vod_id": "39441", "flag": "275听书", "play_id": "/play/39441/23497761.html"}, "player": {"parse": 0, "url": "https://audiopay.cos.tx.xmcdn.com/download/1.0.0/storages/8478-audiopay/BB/AD/GKwRIUEOLL7CABrUHAS20I5t.m4a?sign=55bc36b7ff10294106066dcc5555d27f&buy_key=FM&token=4582&timestamp=1786169385&duration=216", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://audiopay.cos.tx.xmcdn.com/download/1.0.0/storages/8478-audiopay/BB/AD/GKwRIUEOLL7CABrUHAS20I5t.m4a?sign=55bc36b7ff10294106066dcc5555d27f&buy_key=FM&token=4582&timestamp=1786169385&duration=216", "reason": null}}, {"spider": "4KVM", "file": "4KVM.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 286.156, "init": 0.001, "home": 1472.603, "category": 0.043, "detail": 708.566, "player": 702.833, "url_check": 475.556, "total": 3655.849}, "counts": {"classes": 6, "category_videos": 24, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "-1", "vod_id": "ch4ft0x09", "flag": "alists", "play_id": "37309|ch4ft0x09"}, "player": {"parse": 0, "url": "https://oss.douyinbit.com/m3u8/cf385153ba146627da1a7e22e7ae264d.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://oss.douyinbit.com/m3u8/cf385153ba146627da1a7e22e7ae264d.m3u8", "reason": null}}, {"spider": "4K指南", "file": "4K指南.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 283.657, "init": 0.006, "home": 0.004, "category": 2855.623, "detail": 1990.417, "player": 0.004, "url_check": 167.349, "total": 5308.957}, "counts": {"classes": 5, "category_videos": 50, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "zuixin", "vod_id": "20640", "flag": "夸克网盘", "play_id": "push://https://pan.quark.cn/s/eaed7eb30c3c"}, "player": {"parse": 0, "url": "https://pan.quark.cn/s/eaed7eb30c3c", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.quark.cn/s/eaed7eb30c3c", "reason": null}}, {"spider": "55短剧", "file": "55短剧.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 283.096, "init": 0.002, "home": 0.002, "category": 1889.154, "detail": 404.401, "player": 467.579, "url_check": 779.58, "total": 3837.689}, "counts": {"classes": 1, "category_videos": 24, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "26926", "flag": "55短剧", "play_id": "26926~2~1"}, "player": {"parse": 0, "url": "https://tyyszywvod2.com/videos/202606/28/6a413d12df0906c5d56b7f69/7d5306/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://tyyszywvod2.com/videos/202606/28/6a413d12df0906c5d56b7f69/7d5306/index.m3u8", "reason": null}}, {"spider": "6V磁力", "file": "6V磁力.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 285.972, "init": 0.006, "home": 0.002, "category": 865.713, "detail": 800.496, "player": 0.003, "url_check": 0.076, "total": 1963.627}, "counts": {"classes": 12, "category_videos": 18, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "dianshiju/guoju", "vod_id": "/dianshiju/guoju/29263.html", "flag": "01-04.1080p.HD国语中字无水印.mkv", "play_id": "magnet:?xt=urn:btih:a21240d7d789ebc0510102a47d01f99c785a7275&dn=%E5%BE%A1%E5%BB%B7%E8%B0%A301-04"}, "player": {"parse": 0, "url": "magnet:?xt=urn:btih:a21240d7d789ebc0510102a47d01f99c785a7275&dn=%E5%BE%A1%E5%BB%B7%E8%B0%A301-04", "valid": true, "reachable": null, "status_code": null, "final_url": "magnet:?xt=urn:btih:a21240d7d789ebc0510102a47d01f99c785a7275&dn=%E5%BE%A1%E5%BB%B7%E8%B0%A301-04", "reason": "非 HTTP 地址,按协议格式通过"}}, {"spider": "AAZ音乐", "file": "AAZ音乐.txt", "success": false, "failed_stage": "unexpected", "error": "('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))", "traceback": "Traceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 787, in urlopen\n response = self._make_request(\n conn,\n ...<10 lines>...\n **response_kw,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 534, in _make_request\n response = conn.getresponse()\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connection.py\", line 571, in getresponse\n httplib_response = super().getresponse()\n File \"/home/harold/.local/share/uv/python/cpython-3.14.3-linux-x86_64-gnu/lib/python3.14/http/client.py\", line 1450, in getresponse\n response.begin()\n ~~~~~~~~~~~~~~^^\n File \"/home/harold/.local/share/uv/python/cpython-3.14.3-linux-x86_64-gnu/lib/python3.14/http/client.py\", line 336, in begin\n version, status, reason = self._read_status()\n ~~~~~~~~~~~~~~~~~^^\nhttp.client.RemoteDisconnected: Remote end closed connection without response\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/requests/adapters.py\", line 645, in send\n resp = conn.urlopen(\n method=request.method,\n ...<9 lines>...\n chunked=chunked,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 841, in urlopen\n retries = retries.increment(\n method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2]\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/retry.py\", line 490, in increment\n raise reraise(type(error), error, _stacktrace)\n ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/util.py\", line 38, in reraise\n raise value.with_traceback(tb)\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 787, in urlopen\n response = self._make_request(\n conn,\n ...<10 lines>...\n **response_kw,\n )\nurllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 756, in validate_spider_file\n home_result = _run_timed(result[\"timings_ms\"], \"home\", spider.homeContent, clock, False)\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 318, in _run_timed\n return func(*args, **kwargs)\n File \"/home/harold/workspace/tvbox-resources/py/AAZ音乐.txt\", line 220, in homeContent\n File \"/home/harold/workspace/tvbox-resources/py/AAZ音乐.txt\", line 57, in _fetch_html\n File \"/home/harold/workspace/atv-spiders/py/base/spider.py\", line 145, in fetch\n rsp = requests.get(url, params=params, cookies=cookies, headers=headers, timeout=timeout, verify=verify,\n stream=stream, allow_redirects=allow_redirects)\nrequests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))\n", "timings_ms": {"module_load": 280.061, "init": 0.002, "home": 472.14, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 756.988}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "APP影院", "file": "APP影院.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 282.32, "init": 0.002, "home": 0.001, "category": 787.194, "detail": 271.082, "player": 1387.886, "url_check": 1026.285, "total": 3760.223}, "counts": {"classes": 8, "category_videos": 36, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "595748", "flag": "心浪云播", "play_id": "595748~1~1"}, "player": {"parse": 0, "url": "https://play.xluuss.com/play/b2k85Rzd/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://play.xluuss.com/play/b2k85Rzd/index.m3u8", "reason": null}}, {"spider": "BT影视", "file": "BT影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 282.354, "init": 0.048, "home": 0.003, "category": 525.856, "detail": 284.885, "player": 386.528, "url_check": 0.071, "total": 1492.761}, "counts": {"classes": 2, "category_videos": 32, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "movies", "vod_id": "46840300", "flag": "狄仁杰之彼岸奇花[国语配音+中文字幕].Detective.Dee.The.Other.Shore.Flower.2025.1080p.WEB-DL.H264.AAC-QuickIO 4.87GB", "play_id": "848900354"}, "player": {"parse": 0, "url": "magnet:?xt=urn:btih:075de6e14fb3b518d5e2be55e269c096c9b052d8", "valid": true, "reachable": null, "status_code": null, "final_url": "magnet:?xt=urn:btih:075de6e14fb3b518d5e2be55e269c096c9b052d8", "reason": "非 HTTP 地址,按协议格式通过"}}, {"spider": "PPnix", "file": "PPnix.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 280.705, "init": 0.001, "home": 0.005, "category": 1643.296, "detail": 553.166, "player": 0.013, "url_check": 202.259, "total": 2692.72}, "counts": {"classes": 2, "category_videos": 24, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "movie/8391.html", "flag": "PPnix", "play_id": "8391|1080P"}, "player": {"parse": 0, "url": "https://www.ppnix.com/info/m3u8/8391/1080P.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://www.ppnix.com/info/m3u8/8391/1080P.m3u8", "reason": null}}, {"spider": "Pomo", "file": "Pomo.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 280.074, "init": 0.001, "home": 0.002, "category": 1310.12, "detail": 196.686, "player": 0.004, "url_check": 149.603, "total": 1948.62}, "counts": {"classes": 8, "category_videos": 16, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "zuixin", "vod_id": "1735", "flag": "夸克", "play_id": "https://pan.quark.cn/s/cf237eb67916"}, "player": {"parse": 0, "url": "https://pan.quark.cn/s/cf237eb67916", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.quark.cn/s/cf237eb67916", "reason": null}}, {"spider": "QQ音乐", "file": "QQ音乐.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 278.597, "init": 0.019, "home": 0.007, "category": 1375.624, "detail": 277.98, "player": 350.481, "url_check": 93.901, "total": 2386.99}, "counts": {"classes": 6, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "playlist", "vod_id": "playlist:2671455045", "flag": "QQ音乐", "play_id": "qqmusic:0039MnYb0qxYhV:97773|晴天 - 周杰伦"}, "player": {"parse": 0, "url": "https://isure.stream.qqmusic.qq.com/F000003Qui1q2u1Zho.flac?guid=a4e8971e7dcf4ba990e25429981441f6&vkey=1CDFD90F7D9368AA36AF5F7E62C2CD16AE7EE90D503551D30E8D7E5F71416E00FA4EF9A8CB79E905935628A18A266FF0685C5F4EE6881C6F__v2b9ab84a&uin=1152921504846230218&fromtag=119114&redirect=1", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://isure.stream.qqmusic.qq.com/F000003Qui1q2u1Zho.flac?guid=a4e8971e7dcf4ba990e25429981441f6&vkey=1CDFD90F7D9368AA36AF5F7E62C2CD16AE7EE90D503551D30E8D7E5F71416E00FA4EF9A8CB79E905935628A18A266FF0685C5F4EE6881C6F__v2b9ab84a&uin=1152921504846230218&fromtag=119114&redirect=1", "reason": null}}, {"spider": "YouTube", "file": "YouTube.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 271.007, "init": 0.007, "home": 0.081, "category": 713.611, "detail": 2312.87, "player": 0.006, "url_check": 1183.105, "total": 4496.714}, "counts": {"classes": 29, "category_videos": 17, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "cat_recommend", "vod_id": "yt:playlist:PLvOO0btloRntAi-VnV06M1Bu0X1xljUUP", "flag": "YouTube", "play_id": "yt:entry:PLvOO0btloRntAi-VnV06M1Bu0X1xljUUP:5dTOPen28ts"}, "player": {"parse": 0, "url": "https://www.youtube.com/watch?v=5dTOPen28ts&list=PLvOO0btloRntAi-VnV06M1Bu0X1xljUUP", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://www.youtube.com/watch?v=5dTOPen28ts&list=PLvOO0btloRntAi-VnV06M1Bu0X1xljUUP", "reason": null}}, {"spider": "libvio", "file": "libvio.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 278.818, "init": 0.001, "home": 0.001, "category": 231.551, "detail": 299.476, "player": 0.009, "url_check": 155.956, "total": 971.436}, "counts": {"classes": 6, "category_videos": 48, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "index", "vod_id": "714893611", "flag": "夸克", "play_id": "https://pan.quark.cn/s/344cca2b4f40"}, "player": {"parse": 0, "url": "https://pan.quark.cn/s/344cca2b4f40", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.quark.cn/s/344cca2b4f40", "reason": null}}, {"spider": "mifun", "file": "mifun.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 275.803, "init": 0.003, "home": 1753.132, "category": 1156.468, "detail": 1105.073, "player": 1701.67, "url_check": 45.694, "total": 7411.47}, "counts": {"classes": 5, "category_videos": 30, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "19782", "flag": "无限云", "play_id": "无限云@@direct@@ba11073ae57ba0eede130eeda148f635,tos-cn-i-ik7evvg4ik/3a0b8b4c24fd423b9418c414a19ecb9d.mp4,token+,1,1"}, "player": {"parse": 0, "url": "https://p3-flow-sign.byteimg.com/tos-cn-i-ik7evvg4ik/3a0b8b4c24fd423b9418c414a19ecb9d.mp4?lk3s=8e244e95&rcl=20260808140949415B0059104B8BF71BBE&rrcfp=1860f75c&x-expires=1786774189&x-signature=bOedYbRzUtJNacVYO2%2BWameSZZI%3D", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://p3-flow-sign.byteimg.com/tos-cn-i-ik7evvg4ik/3a0b8b4c24fd423b9418c414a19ecb9d.mp4?lk3s=8e244e95&rcl=20260808140949415B0059104B8BF71BBE&rrcfp=1860f75c&x-expires=1786774189&x-signature=bOedYbRzUtJNacVYO2%2BWameSZZI%3D", "reason": null}}, {"spider": "youknow", "file": "youknow.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.715, "init": 0.001, "home": 0.001, "category": 1409.302, "detail": 1212.242, "player": 1197.181, "url_check": 1171.469, "total": 4997.878}, "counts": {"classes": 7, "category_videos": 228, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "index", "vod_id": "135964", "flag": "YouKnowTV", "play_id": "eyJ2b2RfaWQiOiIxMzU5NjQiLCJlcGlzb2RlX2luZGV4IjoxLCJ0aXRsZSI6IuesrDcw6ZuGIiwiY2FuZGlkYXRlcyI6W3sic291cmNlIjoi57q_6LevMSIsInNvdXJjZV9pZCI6IjIiLCJlcGlzb2RlX3VybCI6Imh0dHBzOi8vd3d3LnlvdWtub3cudHYvcC8xMzU5NjQtMi0xLyJ9LHsic291cmNlIjoi57q_6LevMyIsInNvdXJjZV9pZCI6IjIiLCJlcGlzb2RlX3VybCI6Imh0dHBzOi8vd3d3LnlvdWtub3cudHYvcC8xMzU5NjQtMi0xLyJ9LHsic291cmNlIjoi57q_6LevMzIyIiwic291cmNlX2lkIjoiMSIsImVwaXNvZGVfdXJsIjoiaHR0cHM6Ly93d3cueW91a25vdy50di9wLzEzNTk2NC0xLTEvIn0seyJzb3VyY2UiOiLnur_ot68zMjMiLCJzb3VyY2VfaWQiOiIxIiwiZXBpc29kZV91cmwiOiJodHRwczovL3d3dy55b3Vrbm93LnR2L3AvMTM1OTY0LTEtMS8ifV19"}, "player": {"parse": 0, "url": "https://vip.dytt-cinema.com/20250224/11555_ad6fff7b/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vip.dytt-cinema.com/20250224/11555_ad6fff7b/index.m3u8", "reason": null}}, {"spider": "七味", "file": "七味.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 12.434, "init": 0.004, "home": 0.001, "category": 729.49, "detail": 742.645, "player": 0.008, "url_check": 1127.529, "total": 2613.636}, "counts": {"classes": 5, "category_videos": 42, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "511864", "flag": "百度1", "play_id": "https://pan.baidu.com/s/1yo8luGOvDkgg3atKnv_FEA?pwd=7brq"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1yo8luGOvDkgg3atKnv_FEA?pwd=7brq", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=yo8luGOvDkgg3atKnv_FEA&pwd=7brq", "reason": null}}, {"spider": "不太灵", "file": "不太灵.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.012, "init": 0.001, "home": 344.972, "category": 446.573, "detail": 454.803, "player": 0.006, "url_check": 160.803, "total": 1413.589}, "counts": {"classes": 5, "category_videos": 25, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "36117834", "flag": "夸克", "play_id": "https://pan.quark.cn/s/dcb1fa12d96f"}, "player": {"parse": 0, "url": "https://pan.quark.cn/s/dcb1fa12d96f", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.quark.cn/s/dcb1fa12d96f", "reason": null}}, {"spider": "世纪音乐", "file": "世纪音乐.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 5.758, "init": 0.001, "home": 122.174, "category": 123.635, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 381.895}, "counts": {"classes": 5, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "rank_list", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "两个BT", "file": "两个BT.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 8.396, "init": 0.001, "home": 0.001, "category": 415.638, "detail": 373.264, "player": 986.117, "url_check": 459.26, "total": 2243.301}, "counts": {"classes": 14, "category_videos": 24, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "zgjun", "vod_id": "ch4frryu2", "flag": "两个BT", "play_id": "eyJwaWQiOiIvcGxheS9jaDRmcnJ5dTIiLCJzaWQiOiJjaDRmcnJ5dTIiLCJuYW1lIjoiMSJ9"}, "player": {"parse": 0, "url": "https://zijieapi.douyinbyte.com/m3u8/784199f158a25a4c76840a3f97f6afb9.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://zijieapi.douyinbyte.com/m3u8/784199f158a25a4c76840a3f97f6afb9.m3u8", "reason": null}}, {"spider": "乌云影视", "file": "乌云影视.txt", "success": false, "failed_stage": "url_check", "error": "HTTP 404", "traceback": null, "timings_ms": {"module_load": 6.925, "init": 0.001, "home": 331.037, "category": 270.488, "detail": 854.061, "player": 0.027, "url_check": 8942.59, "total": 15500.502}, "counts": {"classes": 7, "category_videos": 24, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "tv_series", "vod_id": "62169", "flag": "乌云影视", "play_id": "eyJtZWRpYUlkIjogIjYyMTY5IiwgInNlYXNvbk5vIjogMSwgImVwTm8iOiAxLCAidmlkZW9JZCI6IDk0NjY0OTc0LCAicGxheVVybCI6ICJodHRwczovL3dvb3l1bi50di9nZW5fb3ZlcnNlYXMvaHR0cHM6Ly92Lmx6Y2RuMzEuY29tLzIwMjUxMjAxLzkwXzVlMjhmOGJkL2luZGV4Lm0zdTgiLCAibmFtZSI6ICLnrKwx6ZuGIOesrDAx6ZuGIn0"}, "player": {"parse": 0, "url": "https://wooyun.tv/gen_overseas/https://v.lzcdn31.com/20251201/90_5e28f8bd/index.m3u8", "valid": false, "reachable": false, "status_code": 404, "final_url": "https://vod-cdn.wooyun.tv/v2/hls_fresh/2607291/6fe8fd54ffccf806538332876c925c1daeac4e6e.m3u8", "reason": "HTTP 404"}}, {"spider": "乐兔", "file": "乐兔.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 6.464, "init": 0.001, "home": 0.001, "category": 575.827, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 1260.199}, "counts": {"classes": 5, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "2", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "二小", "file": "二小.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 9.163, "init": 0.007, "home": 0.001, "category": 1561.767, "detail": 880.122, "player": 0.011, "url_check": 1029.827, "total": 3481.649}, "counts": {"classes": 4, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "12979", "flag": "百度#二小", "play_id": "https://pan.baidu.com/s/1O0RJ5o3zTMEOwF7MGLEhIw?pwd=zhqr"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1O0RJ5o3zTMEOwF7MGLEhIw?pwd=zhqr", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=O0RJ5o3zTMEOwF7MGLEhIw&pwd=zhqr", "reason": null}}, {"spider": "云朵", "file": "云朵.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 9.573, "init": 0.001, "home": 1691.199, "category": 5808.368, "detail": 664.644, "player": 738.129, "url_check": 1386.874, "total": 10300.516}, "counts": {"classes": 4, "category_videos": 20, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "69353", "flag": "vwnet", "play_id": "vwnet-e32cce374db795d5b77dd658a435827f"}, "player": {"parse": 0, "url": "https://yun.jiexicn.top/api/banyun/e32cce374db795d5b77dd658a435827f.m3u8?YWYxYzJrV0QydFEwc1pFNDVOeStOZkdOdWJYOTlBWncyVitKSW13bE9DeDJsdU1yOWNmTVdpc2F5dGF6RzRrM3IzM0ZMZk5YVVdkdzBzcGY5NVBMWStoTitnK1hKNUNsVHZBcUtvSm5OdlZhMFpkVVA2MFVrSC9VTXlWbnlNQVZ5OFlSS1UyYmY3R2x3WkFZRG1rSGVqL0FFV1h4M0xZ", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://yun.jiexicn.top/api/banyun/e32cce374db795d5b77dd658a435827f.m3u8?YWYxYzJrV0QydFEwc1pFNDVOeStOZkdOdWJYOTlBWncyVitKSW13bE9DeDJsdU1yOWNmTVdpc2F5dGF6RzRrM3IzM0ZMZk5YVVdkdzBzcGY5NVBMWStoTitnK1hKNUNsVHZBcUtvSm5OdlZhMFpkVVA2MFVrSC9VTXlWbnlNQVZ5OFlSS1UyYmY3R2x3WkFZRG1rSGVqL0FFV1h4M0xZ", "reason": null}}, {"spider": "人人电影", "file": "人人电影.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.188, "init": 0.001, "home": 0.001, "category": 682.813, "detail": 1426.401, "player": 0.01, "url_check": 1395.916, "total": 3511.836}, "counts": {"classes": 4, "category_videos": 10, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "movie/list_2", "vod_id": "/movie/2026/0807/60733.html", "flag": "baidu", "play_id": "https://pan.baidu.com/s/1JyWYqRQZQZxz8-3v6LUDdQ?pwd=n1f4"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1JyWYqRQZQZxz8-3v6LUDdQ?pwd=n1f4", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=JyWYqRQZQZxz8-3v6LUDdQ&pwd=n1f4", "reason": null}}, {"spider": "人人视频", "file": "人人视频.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.305, "init": 0.001, "home": 239.012, "category": 320.685, "detail": 299.336, "player": 417.62, "url_check": 175.602, "total": 2825.902}, "counts": {"classes": 4, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "MOVIE", "vod_id": "58573", "flag": "人人专线", "play_id": "58573@390446"}, "player": {"parse": 0, "url": "https://a3flo8s42jkc7i5.302.fledgecloud.com:56782/zj-302-cdn.bwcgee.cn/10beb4e08b1d71f181315017e1e90402/0da4b4c2f1e94bc1aaf917d1df2dc06b-f2988a7de73606c91fe62e335add886e-ld.mp4?auth_key=1786183788-b571b97940044c65384eac5dfbb7b1f7-0-a94475dc38c545608765e5fd53ca863b&clientType=web_pc&clientVersion=1.0.0&parseUsage=PLAY&uid=0&rk=98e3617105674f0487df0a82f41846ef&hevc=false&seasonId=58573", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://a3flo8s42jkc7i5.302.fledgecloud.com:56782/zj-302-cdn.bwcgee.cn/10beb4e08b1d71f181315017e1e90402/0da4b4c2f1e94bc1aaf917d1df2dc06b-f2988a7de73606c91fe62e335add886e-ld.mp4?auth_key=1786183788-b571b97940044c65384eac5dfbb7b1f7-0-a94475dc38c545608765e5fd53ca863b&clientType=web_pc&clientVersion=1.0.0&parseUsage=PLAY&uid=0&rk=98e3617105674f0487df0a82f41846ef&hevc=false&seasonId=58573", "reason": null}}, {"spider": "优酷", "file": "优酷.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 18.3, "init": 0.001, "home": 0.001, "category": 330.154, "detail": 687.232, "player": 0.006, "url_check": 282.773, "total": 1320.126}, "counts": {"classes": 6, "category_videos": 23, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "电视剧", "vod_id": "show:dafb6cc804ca4fedb40b", "flag": "优酷", "play_id": "https://v.youku.com/v_show/id_XNjU0MjIxOTc4NA==.html"}, "player": {"parse": 1, "url": "https://v.youku.com/v_show/id_XNjU0MjIxOTc4NA==.html", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://v.youku.com/v_show/id_XNjU0MjIxOTc4NA==.html", "reason": null}}, {"spider": "低端影视", "file": "低端影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 20.858, "init": 0.001, "home": 0.001, "category": 815.902, "detail": 1341.154, "player": 0.012, "url_check": 480.834, "total": 2659.351}, "counts": {"classes": 4, "category_videos": 24, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "series", "vod_id": "movie/vivant-season-2", "flag": "备胎1号 (1080P)", "play_id": "https://v.lfthirtytwo.com/20260727/9033_6941fddc/index.m3u8"}, "player": {"parse": 0, "url": "https://v.lfthirtytwo.com/20260727/9033_6941fddc/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://v.lfthirtytwo.com/20260727/9033_6941fddc/index.m3u8", "reason": null}}, {"spider": "修罗", "file": "修罗.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 9.579, "init": 0.001, "home": 0.001, "category": 1155.423, "detail": 345.745, "player": 1602.055, "url_check": 1055.216, "total": 4169.192}, "counts": {"classes": 4, "category_videos": 24, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "movie", "vod_id": "kehuan/27043", "flag": "修罗直连", "play_id": "play/27043-0"}, "player": {"parse": 0, "url": "https://v.xl01.eu.cc/obj/D0703799DAD505A01678E32CFE3CD284329CD6C6E18A4EB796617CE29261A393", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://lf26-imcloud-file-sign.bytetos.com/tos-cn-o-0000c2428/oEqdhGgbfCIJfoDcADxqPECq9EACFXAV2vAAV7?x-expires=1786171825&x-signature=nJT2Jm2oL9LDnhkgXgi0nABdLBM%3D", "reason": null}}, {"spider": "免费短剧", "file": "免费短剧.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.549, "init": 0.016, "home": 0.001, "category": 477.532, "detail": 531.095, "player": 0.002, "url_check": 1329.714, "total": 2343.462}, "counts": {"classes": 4, "category_videos": 20, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "2", "vod_id": "https://20.90kan.cc/?id=69956", "flag": "百度", "play_id": "https://pan.baidu.com/s/1cpU2d6gIDo1Vqol86Y6VFQ?pwd=6666"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1cpU2d6gIDo1Vqol86Y6VFQ?pwd=6666", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=cpU2d6gIDo1Vqol86Y6VFQ&pwd=6666", "reason": null}}, {"spider": "农民", "file": "农民.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 8.737, "init": 0.001, "home": 333.66, "category": 199.122, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 745.166}, "counts": {"classes": 5, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "juji", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "凡客TV", "file": "凡客TV.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 6.077, "init": 0.001, "home": 0.001, "category": 370.95, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 723.22}, "counts": {"classes": 8, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "2", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "剧圈圈", "file": "剧圈圈.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 7.694, "init": 0.001, "home": 0.001, "category": 632.881, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 1430.054}, "counts": {"classes": 5, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "juji", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "剧看", "file": "剧看.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.98, "init": 163.404, "home": 0.167, "category": 119.519, "detail": 1059.603, "player": 452.494, "url_check": 69.147, "total": 1871.243}, "counts": {"classes": 5, "category_videos": 21, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "2", "vod_id": "188925", "flag": "蓝光B线-在线看", "play_id": "BBA@FYNB-353864636661643935653263333537357a8e49239ef0fe17238d56f9a9e07af4f15ce2424dd8c1cee99fd9354a703820d17321242e6b028ca5bd43a81139703632aef85a24fc2e5177d1a341152f7f8d3dcd86d8b6014a4ebeea9b2679f5cd28c39f57873fca12a297cba14d3202649096bbc844568b988b1c7add6cd8ed3be29af96a84c2ca49c34f869b068eee4c36e9e176bdb348060f2f00a10a930f99f5c4c0523471cc3f20b36cdac16eef9817d42e67d446f0c1ad37b0d92ad263d8928338bcc0bcdd94fc78baa0ebb333bfbd"}, "player": {"parse": 0, "url": "https://lf6-imcloud-video-sign.bytetos.com/tos-cn-v-ecaa22/ocfaM1WZeQM7z5kLfsTA8UQMpkRLGKPCMFfBHE?x-tos-signature=T8HMucL5OEJZbUiXKcUtk8PToRuUZlIl9TneU5MA&a=1434&ch=2&x-tos-expires=1786429255&cr=2&dr=2&er=0&lr=test&cd=4%7C4%7C0%7C3&br=1970&x-signature=s7ZJ%2B4w6S8%2BnBnZ%2BLk5%2FSTIiFXA%3D&bt=1476&x-tos-authkey=97a83553ad235975a81ea3aa2ff24ac8&cs=8&ds=6&ft=goiXEJM1YShjBkGKqGQx&x-expires=1786426000&mime_type=video_mp4&qs=13&rc=ekMs8irDnYBXdkb0yzXDgyxXfYSuSuM4EQ2oHGXv0dLGEQ97zo%3D%3D&btag=a0000e129390000&dy_q=1778037994&l=2026052164976520bd138268e05dbf729&filename=BBA.mp4", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://lf6-imcloud-video-sign.bytetos.com/tos-cn-v-ecaa22/ocfaM1WZeQM7z5kLfsTA8UQMpkRLGKPCMFfBHE?x-tos-signature=T8HMucL5OEJZbUiXKcUtk8PToRuUZlIl9TneU5MA&a=1434&ch=2&x-tos-expires=1786429255&cr=2&dr=2&er=0&lr=test&cd=4%7C4%7C0%7C3&br=1970&x-signature=s7ZJ%2B4w6S8%2BnBnZ%2BLk5%2FSTIiFXA%3D&bt=1476&x-tos-authkey=97a83553ad235975a81ea3aa2ff24ac8&cs=8&ds=6&ft=goiXEJM1YShjBkGKqGQx&x-expires=1786426000&mime_type=video_mp4&qs=13&rc=ekMs8irDnYBXdkb0yzXDgyxXfYSuSuM4EQ2oHGXv0dLGEQ97zo%3D%3D&btag=a0000e129390000&dy_q=1778037994&l=2026052164976520bd138268e05dbf729&filename=BBA.mp4", "reason": null}}, {"spider": "剧迷", "file": "剧迷.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.315, "init": 0.001, "home": 0.001, "category": 1210.536, "detail": 264.946, "player": 496.387, "url_check": 1002.351, "total": 2982.504}, "counts": {"classes": 6, "category_videos": 60, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "480105", "flag": "gimy", "play_id": "480105-5-1"}, "player": {"parse": 0, "url": "https://vip.dytt-network.com/20260801/36961_a0a6d7cc/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vip.dytt-network.com/20260801/36961_a0a6d7cc/index.m3u8", "reason": null}}, {"spider": "华数影视", "file": "华数影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.501, "init": 0.001, "home": 0.001, "category": 669.893, "detail": 289.251, "player": 243.196, "url_check": 76.481, "total": 1285.166}, "counts": {"classes": 5, "category_videos": 40, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "961", "vod_id": "961@177761", "flag": "华数专线", "play_id": "aHR0cHM6Ly92aWRlby41Zy53YXN1LnR2L3Bjc2FuMjQvcGMvbW92aWUvMjAyNi0wOC8wMy8yMDI2MDgwMzA5Mjc0MTA1NzNqTGlFV05sLm1wNA"}, "player": {"parse": 0, "url": "https://pcvideo.5g.wasu.tv/pcsan24/pc/movie/2026-08/03/202608030927410573jLiEWNl/playlist.m3u8?auth_key=1786169388-0-0-1a302c37e78d587de8b54cd364a030e4", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pcvideo.5g.wasu.tv/pcsan24/pc/movie/2026-08/03/202608030927410573jLiEWNl/playlist.m3u8?auth_key=1786169388-0-0-1a302c37e78d587de8b54cd364a030e4", "reason": null}}, {"spider": "博看听书", "file": "博看听书.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.6, "init": 0.001, "home": 2859.521, "category": 240.636, "detail": 713.969, "player": 0.003, "url_check": 61.779, "total": 3881.98}, "counts": {"classes": 11, "category_videos": 24, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1319", "vod_id": "902849", "flag": "博看听书", "play_id": "http://audio.bookan.com.cn/video1/audio/20200706001/aache64_133068a2.m4a"}, "player": {"parse": 0, "url": "http://audio.bookan.com.cn/video1/audio/20200706001/aache64_133068a2.m4a", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://audio.bookan.com.cn/video1/audio/20200706001/aache64_133068a2.m4a", "reason": null}}, {"spider": "双子星", "file": "双子星.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 8.19, "init": 0.011, "home": 1483.113, "category": 90.797, "detail": 83.738, "player": 0.002, "url_check": 285.286, "total": 1951.782}, "counts": {"classes": 6, "category_videos": 21, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "12180", "flag": "线路P", "play_id": "http://103.97.176.23/m3u8/m3u811/1785598614.m3u8"}, "player": {"parse": 0, "url": "http://103.97.176.23/m3u8/m3u811/1785598614.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://103.97.176.23/m3u8/m3u811/1785598614.m3u8", "reason": null}}, {"spider": "双星", "file": "双星.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.209, "init": 350.282, "home": 0.005, "category": 169.242, "detail": 198.819, "player": 0.004, "url_check": 148.21, "total": 874.886}, "counts": {"classes": 7, "category_videos": 15, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "ju", "vod_id": "/ju/11107.html", "flag": "夸克", "play_id": "https://pan.quark.cn/s/420f5e44d99e"}, "player": {"parse": 0, "url": "https://pan.quark.cn/s/420f5e44d99e", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.quark.cn/s/420f5e44d99e", "reason": null}}, {"spider": "听书", "file": "听书.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.322, "init": 82.743, "home": 0.002, "category": 130.049, "detail": 385.235, "player": 479.876, "url_check": 62.612, "total": 1148.007}, "counts": {"classes": 11, "category_videos": 10, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "6", "vod_id": "63", "flag": "直链", "play_id": "2926931|||63"}, "player": {"parse": 0, "url": "http://audiopay.cos.tx.xmcdn.com/download/1.0.0/storages/b817-audiopay/16/AA/GKwRIaIGGaRGADgE-gEx_hMS-aacv2-48K.m4a?sign=658c109b50250789f1201ffa6142d850&buy_key=FM&token=1539&timestamp=1786169389&duration=453", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://audiopay.cos.tx.xmcdn.com/download/1.0.0/storages/b817-audiopay/16/AA/GKwRIaIGGaRGADgE-gEx_hMS-aacv2-48K.m4a?sign=658c109b50250789f1201ffa6142d850&buy_key=FM&token=1539&timestamp=1786169389&duration=453", "reason": null}}, {"spider": "听友FM", "file": "听友FM.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 9.093, "init": 0.001, "home": 609.098, "category": 535.988, "detail": 1023.165, "player": 315.001, "url_check": 206.221, "total": 2699.856}, "counts": {"classes": 8, "category_videos": 20, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "46", "vod_id": "9783312385", "flag": "听友FM", "play_id": "9783312385|1"}, "player": {"parse": 0, "url": "https://file.hgeuz.cn/stream/eJwANwDI_wJVZgVKIIrU0ECux-GJ1PSt38ahythCqsH-r9TAQ4rj5F94rOjbQKjk063xyIX2z3hfeGcIHF4BAAD__5DtISY.?ts=1786168262&sign=2042d1672193e77edd51b8a47fd7429d", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://file.hgeuz.cn/stream/eJwANwDI_wJVZgVKIIrU0ECux-GJ1PSt38ahythCqsH-r9TAQ4rj5F94rOjbQKjk063xyIX2z3hfeGcIHF4BAAD__5DtISY.?ts=1786168262&sign=2042d1672193e77edd51b8a47fd7429d", "reason": null}}, {"spider": "咕咕动漫", "file": "咕咕动漫.txt", "success": false, "failed_stage": "url_check", "error": "不支持的地址协议: empty", "traceback": null, "timings_ms": {"module_load": 7.411, "init": 0.007, "home": 815.422, "category": 804.912, "detail": 413.731, "player": 1962.374, "url_check": 0.105, "total": 8446.127}, "counts": {"classes": 3, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "21", "vod_id": "5083", "flag": "咕咕新线(国内高速)", "play_id": "parse_api=a2796a09189261bcaf3cc4542d7c5ac2&url=L5qxaG2Fo2lMBTzslGJc3ejY2pnokP6qOIZDRkD0EucUj5bI3LWtGrn8Z2wYKSXy&token=|靠死亡游戏混饭吃。 44:CLOUDY BEACH|1"}, "player": {"parse": 1, "url": "parse_api=a2796a09189261bcaf3cc4542d7c5ac2&url=L5qxaG2Fo2lMBTzslGJc3ejY2pnokP6qOIZDRkD0EucUj5bI3LWtGrn8Z2wYKSXy&token=", "valid": false, "reachable": false, "status_code": null, "final_url": "parse_api=a2796a09189261bcaf3cc4542d7c5ac2&url=L5qxaG2Fo2lMBTzslGJc3ejY2pnokP6qOIZDRkD0EucUj5bI3LWtGrn8Z2wYKSXy&token=", "reason": "不支持的地址协议: empty"}}, {"spider": "四万影视", "file": "四万影视.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 4.837, "init": 0.001, "home": 0.001, "category": 654.747, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 1797.623}, "counts": {"classes": 5, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "30", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "在线之家", "file": "在线之家.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 8.071, "init": 0.001, "home": 0.001, "category": 724.642, "detail": 1200.838, "player": 945.993, "url_check": 334.984, "total": 3984.598}, "counts": {"classes": 6, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "2", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "多多", "file": "多多.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 14.459, "init": 0.004, "home": 0.001, "category": 1481.435, "detail": 348.429, "player": 0.006, "url_check": 1055.967, "total": 2901.209}, "counts": {"classes": 6, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "9628", "flag": "百度#多多", "play_id": "https://pan.baidu.com/s/1C2akm1U8xz_uAX-1pjsCrQ?pwd=9527"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1C2akm1U8xz_uAX-1pjsCrQ?pwd=9527", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=C2akm1U8xz_uAX-1pjsCrQ&pwd=9527", "reason": null}}, {"spider": "多瑙影视", "file": "多瑙影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.928, "init": 0.002, "home": 0.001, "category": 582.182, "detail": 1130.712, "player": 1194.594, "url_check": 296.957, "total": 3213.109}, "counts": {"classes": 5, "category_videos": 36, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "368456", "flag": "蓝光", "play_id": "368456-4-1"}, "player": {"parse": 0, "url": "https://vip.dytt-tvs.com/20260520/20754_0727459d/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://cnvod.jimxtc.com/20260520/20754_0727459d/index.m3u8", "reason": null}}, {"spider": "如意资源", "file": "如意资源.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.303, "init": 0.001, "home": 0.01, "category": 923.058, "detail": 367.111, "player": 0.007, "url_check": 1928.031, "total": 3225.628}, "counts": {"classes": 6, "category_videos": 20, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "83533", "flag": "rym3u8", "play_id": "https://svip.ryplay14.com/20260807/17915_8288317c/index.m3u8"}, "player": {"parse": 0, "url": "https://svip.ryplay14.com/20260807/17915_8288317c/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://svip.ryplay14.com/20260807/17915_8288317c/index.m3u8", "reason": null}}, {"spider": "寻川4K", "file": "寻川4K.txt", "success": false, "failed_stage": "home", "error": "分类列表为空", "traceback": null, "timings_ms": {"module_load": 10.803, "init": 437.474, "home": 456.376, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 906.185}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "小宝影院", "file": "小宝影院.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 10.317, "init": 0.001, "home": 0.001, "category": 337.486, "detail": 315.8, "player": 190.586, "url_check": 1829.905, "total": 2684.721}, "counts": {"classes": 6, "category_videos": 48, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "7", "vod_id": "254815", "flag": "小宝影院", "play_id": "254815/2/1"}, "player": {"parse": 0, "url": "https://svip.ryplay14.com/20260807/17918_f70d3661/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://svip.ryplay14.com/20260807/17918_f70d3661/index.m3u8", "reason": null}}, {"spider": "山楂影视", "file": "山楂影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.789, "init": 231.601, "home": 109.47, "category": 268.007, "detail": 377.514, "player": 734.263, "url_check": 230.306, "total": 1959.785}, "counts": {"classes": 8, "category_videos": 40, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "M16", "vod_id": "1319015", "flag": "蓝光4K", "play_id": "1319015@57@28381355@episode"}, "player": {"parse": "0", "url": "https://eos-huhehaote-1.cmecloud.cn/dsp-ecpan-zone3/b6b8bd8e58084ced8cfa29268acc42bb?response-content-disposition=attachment%3Bfilename%3D%221080P.mp4%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260808T033730Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Credential=R2V91UGDM1447A0VTB86%2F20260808%2Fdefault%2Fs3%2Faws4_request&X-Amz-Signature=d19c5412a99e22b4caeb1b1ff3f2c880374b82c727f1b694727a8a5d4d171b70", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://eos-huhehaote-1.cmecloud.cn/dsp-ecpan-zone3/b6b8bd8e58084ced8cfa29268acc42bb?response-content-disposition=attachment%3Bfilename%3D%221080P.mp4%22&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260808T033730Z&X-Amz-SignedHeaders=host&X-Amz-Expires=86400&X-Amz-Credential=R2V91UGDM1447A0VTB86%2F20260808%2Fdefault%2Fs3%2Faws4_request&X-Amz-Signature=d19c5412a99e22b4caeb1b1ff3f2c880374b82c727f1b694727a8a5d4d171b70", "reason": null}}, {"spider": "布布影视", "file": "布布影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 21.147, "init": 0.002, "home": 0.002, "category": 863.829, "detail": 677.317, "player": 1416.028, "url_check": 204.073, "total": 3184.066}, "counts": {"classes": 4, "category_videos": 24, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "86421", "flag": "CO蓝光(2)", "play_id": "co@1@co_uzc2tzd6xi4age5ryd43dxouwpop5mo776z4twdexhvn5m6yzgz7lzvr37plt2w7"}, "player": {"parse": 0, "url": "https://cibn-edge-5g.1ljx.com/cloud/flv/c5c6f486a6a3aeb64dbb719924883eb0/410b10f26cda18ad8c1b691dcb4a60b8/6a76c830a3ba4.m3u8?auth_key=1786169392.6705-1-834766841.info-internet-2-llq-059c720a5ddee843a37953abf0740c21", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://cibn-edge-4g.1ljx.com/vod-rose/9ecb05a0a6bb3d8d87db40f2d4081a35d613ef83bca9348245f79e192b68f4b4ccb6e17d403decf82065616ac46fa9c8ca0659c2afe7d1358a26c0b5356a4070539f3651fd69a7b193ce5e720a3bb53546c788242a930cffc522f9d86c2ce2e7/playwm.m3u8?e=&sig=&tg@lirose_tv", "reason": null}}, {"spider": "微观短剧", "file": "微观短剧.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 14.011, "init": 0.042, "home": 177.716, "category": 252.349, "detail": 209.47, "player": 410.537, "url_check": 222.023, "total": 1293.016}, "counts": {"classes": 30, "category_videos": 30, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "逆袭", "vod_id": "110000046951321516", "flag": "超清", "play_id": "110000046951321516:1"}, "player": {"parse": 0, "url": "https://tv-video.cdn.drama.9ddm.com/C1/F6/C1F63C79CBF09E493F99B1E0824CEAB2.mp4?timestamp=1786169390&sign=9bf2c891487a82336c53b4f6d0aadc4e", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://tv-video.cdn.drama.9ddm.com/C1/F6/C1F63C79CBF09E493F99B1E0824CEAB2.mp4?timestamp=1786169390&sign=9bf2c891487a82336c53b4f6d0aadc4e", "reason": null}}, {"spider": "怀桑", "file": "怀桑.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 10.774, "init": 0.02, "home": 477.104, "category": 186.968, "detail": 181.772, "player": 235.681, "url_check": 76.192, "total": 1169.81}, "counts": {"classes": 8, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "70263", "flag": "线·壹", "play_id": "parse_api=4a720977ebfe3f13296b548e51cc3355&url=JC1FN8KqanZHfnu79+QTJM+mvGOTpVN9GnfdbZm4+asKxhkjlpRoL45p8gRmcGP/4kvxCcB3LM/+YpIU3Um2gIo7EwDQccwGemPy6K5HO5SnqTACxDNW1T5XWrNz74Dp2cSgIwq7B+6NZvyn1mrLzmm1BRBdOMLHvunW27VLC9+YaDyU6yGdiAqDREKaKztO&token=|鬼玩人6炼狱|1"}, "player": {"parse": 0, "url": "https://pcdn-qn-new.samtory.cn/10049748920e71f1a89c5017e1f80402/deaff66aac674aac9a331d0f0a831dfd-276b1ce82e947560f56778102e4904c0-LD.mp4?auth_key=1786183385-c8bc43a0b25ee8f9d1d19ef966154f01-0-f47015d57cd1998efa29a47c7bad5879&clientType=android_rrsp_xb_TFTJ&clientVersion=10.10.2&parseUsage=PLAY_NEW&uid=0&rk=3c3cc6c70199481882452892e401ed40&hevc=true&seasonId=58631&currentQuality=SD", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pcdn-qn-new.samtory.cn/10049748920e71f1a89c5017e1f80402/deaff66aac674aac9a331d0f0a831dfd-276b1ce82e947560f56778102e4904c0-LD.mp4?auth_key=1786183385-c8bc43a0b25ee8f9d1d19ef966154f01-0-f47015d57cd1998efa29a47c7bad5879&clientType=android_rrsp_xb_TFTJ&clientVersion=10.10.2&parseUsage=PLAY_NEW&uid=0&rk=3c3cc6c70199481882452892e401ed40&hevc=true&seasonId=58631&currentQuality=SD", "reason": null}}, {"spider": "悯善", "file": "悯善.txt", "success": false, "failed_stage": "unexpected", "error": "HTTPConnectionPool(host='113.31.180.218', port=19987): Max retries exceeded with url: /app/bn/app/systemInit (Caused by ConnectTimeoutError(<HTTPConnection(host='113.31.180.218', port=19987) at 0x774ff33e0490>, 'Connection to 113.31.180.218 timed out. (connect timeout=10)'))", "traceback": "Traceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connection.py\", line 204, in _new_conn\n sock = connection.create_connection(\n (self._dns_host, self.port),\n ...<2 lines>...\n socket_options=self.socket_options,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/connection.py\", line 85, in create_connection\n raise err\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/connection.py\", line 73, in create_connection\n sock.connect(sa)\n ~~~~~~~~~~~~^^^^\nTimeoutError: timed out\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 787, in urlopen\n response = self._make_request(\n conn,\n ...<10 lines>...\n **response_kw,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 493, in _make_request\n conn.request(\n ~~~~~~~~~~~~^\n method,\n ^^^^^^^\n ...<6 lines>...\n enforce_content_length=enforce_content_length,\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n )\n ^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connection.py\", line 500, in request\n self.endheaders()\n ~~~~~~~~~~~~~~~^^\n File \"/home/harold/.local/share/uv/python/cpython-3.14.3-linux-x86_64-gnu/lib/python3.14/http/client.py\", line 1353, in endheaders\n self._send_output(message_body, encode_chunked=encode_chunked)\n ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/harold/.local/share/uv/python/cpython-3.14.3-linux-x86_64-gnu/lib/python3.14/http/client.py\", line 1113, in _send_output\n self.send(msg)\n ~~~~~~~~~^^^^^\nurllib3.exceptions.ConnectTimeoutError: (<HTTPConnection(host='113.31.180.218', port=19987) at 0x774ff33e0490>, 'Connection to 113.31.180.218 timed out. (connect timeout=10)')\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/requests/adapters.py\", line 645, in send\n resp = conn.urlopen(\n method=request.method,\n ...<9 lines>...\n chunked=chunked,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 841, in urlopen\n retries = retries.increment(\n method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2]\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/retry.py\", line 535, in increment\n raise MaxRetryError(_pool, url, reason) from reason # type: ignore[arg-type]\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nurllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='113.31.180.218', port=19987): Max retries exceeded with url: /app/bn/app/systemInit (Caused by ConnectTimeoutError(<HTTPConnection(host='113.31.180.218', port=19987) at 0x774ff33e0490>, 'Connection to 113.31.180.218 timed out. (connect timeout=10)'))\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 756, in validate_spider_file\n home_result = _run_timed(result[\"timings_ms\"], \"home\", spider.homeContent, clock, False)\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 318, in _run_timed\n return func(*args, **kwargs)\n File \"/home/harold/workspace/tvbox-resources/py/悯善.txt\", line 145, in homeContent\n File \"/home/harold/workspace/tvbox-resources/py/悯善.txt\", line 263, in _ensure_system_init\n File \"/home/harold/workspace/tvbox-resources/py/悯善.txt\", line 292, in _post_api\nrequests.exceptions.ConnectTimeout: HTTPConnectionPool(host='113.31.180.218', port=19987): Max retries exceeded with url: /app/bn/app/systemInit (Caused by ConnectTimeoutError(<HTTPConnection(host='113.31.180.218', port=19987) at 0x774ff33e0490>, 'Connection to 113.31.180.218 timed out. (connect timeout=10)'))\n", "timings_ms": {"module_load": 9.254, "init": 0.013, "home": 10010.52, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 10022.464}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "新片预告", "file": "新片预告.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.416, "init": 0.001, "home": 190.755, "category": 290.473, "detail": 316.806, "player": 506.897, "url_check": 55.178, "total": 1366.385}, "counts": {"classes": 1, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "movlist/", "vod_id": "/movie/85472", "flag": "预告片", "play_id": "/show/195685"}, "player": {"parse": 0, "url": "https://vfx.mtime.cn/Video/2026/07/25/mp4/260725232238067105.mp4", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vfx.mtime.cn/Video/2026/07/25/mp4/260725232238067105.mp4", "reason": null}}, {"spider": "新韩剧网", "file": "新韩剧网.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.2, "init": 0.001, "home": 0.001, "category": 532.05, "detail": 626.28, "player": 572.241, "url_check": 1867.162, "total": 5925.434}, "counts": {"classes": 5, "category_videos": 16, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "3", "vod_id": "3742", "flag": "在线云播", "play_id": "3742_1_1"}, "player": {"parse": 0, "url": "https://yzzy.play-cdn3.com/20220506/17184_55de12b0/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://yzzy.play-cdn3.com/20220506/17184_55de12b0/index.m3u8", "reason": null}}, {"spider": "星星短剧", "file": "星星短剧.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.446, "init": 0.001, "home": 0.001, "category": 444.556, "detail": 427.274, "player": 0.025, "url_check": 103.524, "total": 982.718}, "counts": {"classes": 5, "category_videos": 10, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1287", "vod_id": "437823882657793@@千金驾到@@向往自由的首富千金唐灵自普林斯顿商学院毕业后,非但没有听从爷爷唐天的安排进公司做总裁,反而去荣盛集团那样的小公司实习,唐天拗不过唐灵,只能答应后安排人暗中照顾,却不料,在荣盛集团,唐灵的千金身份被自己的同班同学唐星月所冒用,在唐灵这位正主面前,唐星月不知悔改,一步步迈入贪婪的深渊无法回头。", "flag": "星星短剧", "play_id": "https://img.novel.wsljf.xyz/shortPlay-mp4/437424643637249/GZRfB1754881124538/2a2bf885-69ea-4aa9-80a4-1ebb782af11f/540x960/output.m3u8"}, "player": {"parse": 0, "url": "https://img.novel.wsljf.xyz/shortPlay-mp4/437424643637249/GZRfB1754881124538/2a2bf885-69ea-4aa9-80a4-1ebb782af11f/540x960/output.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://img.novel.wsljf.xyz/shortPlay-mp4/437424643637249/GZRfB1754881124538/2a2bf885-69ea-4aa9-80a4-1ebb782af11f/540x960/output.m3u8", "reason": null}}, {"spider": "木偶", "file": "木偶.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 11.565, "init": 0.009, "home": 0.001, "category": 986.645, "detail": 293.453, "player": 0.014, "url_check": 245.987, "total": 1538.507}, "counts": {"classes": 7, "category_videos": 72, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "25", "vod_id": "8411", "flag": "115#木偶", "play_id": "https://115cdn.com/s/sws43qp36dh?password=b0b6"}, "player": {"parse": 0, "url": "https://115cdn.com/s/sws43qp36dh?password=b0b6", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://115cdn.com/s/sws43qp36dh?password=b0b6", "reason": null}}, {"spider": "樱花动漫", "file": "樱花动漫.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.742, "init": 0.001, "home": 0.001, "category": 877.691, "detail": 658.25, "player": 665.445, "url_check": 453.586, "total": 2662.573}, "counts": {"classes": 4, "category_videos": 36, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "guoman", "vod_id": "19885", "flag": "高清", "play_id": "/play/19885-1-1/"}, "player": {"parse": 0, "url": "https://vip.dytt-tvs.com/20260721/29092_2ad36b66/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://cnvod.jimxtc.com/20260721/29092_2ad36b66/index.m3u8", "reason": null}}, {"spider": "橘子TV", "file": "橘子TV.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.839, "init": 322.486, "home": 389.282, "category": 342.099, "detail": 379.227, "player": 1179.355, "url_check": 1034.479, "total": 3652.677}, "counts": {"classes": 8, "category_videos": 18, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "50", "vod_id": "434999", "flag": "一起看APP", "play_id": "26505151"}, "player": {"parse": 0, "url": "https://usaydd.5gwcft9h.com/m3u87/share/8623435/8818929/20260804/102945/1080/index.m3u8?sign=fefde5db41cf8b92be51bb2aa509186e&t=1786169393", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://usaydd.5gwcft9h.com/m3u87/share/8623435/8818929/20260804/102945/1080/index.m3u8?sign=fefde5db41cf8b92be51bb2aa509186e&t=1786169393", "reason": null}}, {"spider": "橘汁", "file": "橘汁.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.435, "init": 365.693, "home": 501.885, "category": 236.917, "detail": 153.575, "player": 402.939, "url_check": 1005.18, "total": 2674.732}, "counts": {"classes": 7, "category_videos": 21, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "20", "vod_id": "125592", "flag": "神话蓝光", "play_id": "eyJ2b2RQbGF5RnJvbSI6ICJxc3ZpcCIsICJwbGF5VXJsIjogInFzdmlwLXpWdndVX214Nnd3eFJ2aXNuem5VeWFqMDJqRlNwNGdpbnVXU0NLZHdoci1FdGlGc0ZYVmlhc1lRQ1hjWVVCZUw3MWNsNERpNHdXbThOUGZSZHZNelF2eElUaGxxQkdxaDhfNF90Y21adVhWYkowQlU2V0NPVnZXSVdiel84c3RoVkl4NVEwSEwyYUJHOGVBNFVvcUxRdyJ9"}, "player": {"parse": 0, "url": "https://hxx2026.bbroot.com/data/telegram/2026-08-07/200378340_1c219d81.m3u8?verify=1786169393-%2F%2BhGRnwNkQUeBpjaNlAI%2Bz5q9B4vOAu0t3n%2FKSWWPMM%3D", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://hxx2026.bbroot.com/data/telegram/2026-08-07/200378340_1c219d81.m3u8?verify=1786169393-%2F%2BhGRnwNkQUeBpjaNlAI%2Bz5q9B4vOAu0t3n%2FKSWWPMM%3D", "reason": null}}, {"spider": "次元城", "file": "次元城.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 7.3, "init": 0.002, "home": 357.897, "category": 250.072, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 818.933}, "counts": {"classes": 2, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "21", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "欧歌", "file": "欧歌.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 21.48, "init": 0.005, "home": 0.001, "category": 516.999, "detail": 221.088, "player": 0.007, "url_check": 966.451, "total": 1726.671}, "counts": {"classes": 6, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "32379", "flag": "百度", "play_id": "https://pan.baidu.com/s/1UkMTNtCshINyqHq5AK-0QQ?pwd=8888"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1UkMTNtCshINyqHq5AK-0QQ?pwd=8888", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=UkMTNtCshINyqHq5AK-0QQ&pwd=8888", "reason": null}}, {"spider": "毒蛇", "file": "毒蛇.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 28.435, "init": 0.003, "home": 0.001, "category": 489.034, "detail": 218.319, "player": 211.878, "url_check": 1224.86, "total": 2173.381}, "counts": {"classes": 5, "category_videos": 18, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "336972", "flag": "FF线路", "play_id": "336972-4-2098039"}, "player": {"parse": 0, "url": "https://vip.ffzy-play9.com/20260801/46848_66a18289/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vip.ffzy-play9.com/20260801/46848_66a18289/index.m3u8", "reason": null}}, {"spider": "沐辞4K", "file": "沐辞4K.txt", "success": false, "failed_stage": "home", "error": "分类列表为空", "traceback": null, "timings_ms": {"module_load": 8.664, "init": 120.696, "home": 89.329, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 219.816}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "河马短剧", "file": "河马短剧.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.713, "init": 0.001, "home": 339.341, "category": 360.516, "detail": 425.403, "player": 196.484, "url_check": 120.144, "total": 1447.801}, "counts": {"classes": 8, "category_videos": 18, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "65", "vod_id": "41000254353", "flag": "河马剧场", "play_id": "41000254353@614683599"}, "player": {"parse": 0, "url": "https://mfvideo.cbread.cn/3c3d66578e7075930bfaa56bb751679a/6a781760/99/3x5/35x3/353x4/35345200014/614683599_1/614683599.720p.wzh26506V2.mp4", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://mfvideo.cbread.cn/3c3d66578e7075930bfaa56bb751679a/6a781760/99/3x5/35x3/353x4/35345200014/614683599_1/614683599.720p.wzh26506V2.mp4", "reason": null}}, {"spider": "泥视频", "file": "泥视频.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.007, "init": 0.001, "home": 0.001, "category": 590.762, "detail": 657.81, "player": 644.88, "url_check": 313.256, "total": 2214.025}, "counts": {"classes": 6, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "125695", "flag": "自营1线", "play_id": "125695-1-1"}, "player": {"parse": 0, "url": "https://y6fb.vhmzy.com/videos/202608/07/6a75c0062f546fadf00e5ac1/a98e8e/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://y6fb.vhmzy.com/videos/202608/07/6a75c0062f546fadf00e5ac1/a98e8e/index.m3u8", "reason": null}}, {"spider": "海纳TV", "file": "海纳TV.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 23.952, "init": 0.001, "home": 10018.787, "category": 10019.247, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 30079.57}, "counts": {"classes": 4, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "3", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "清沅4K", "file": "清沅4K.txt", "success": false, "failed_stage": "home", "error": "分类列表为空", "traceback": null, "timings_ms": {"module_load": 10.077, "init": 236.806, "home": 251.13, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 498.237}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "滴答影视", "file": "滴答影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.534, "init": 0.001, "home": 0.001, "category": 440.674, "detail": 392.605, "player": 0.006, "url_check": 950.274, "total": 1790.848}, "counts": {"classes": 5, "category_videos": 48, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "3638", "flag": "百度", "play_id": "https://pan.baidu.com/s/1GE6bGuHNSiMGCIf0wK-lDA?pwd=j3fc"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1GE6bGuHNSiMGCIf0wK-lDA?pwd=j3fc", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=GE6bGuHNSiMGCIf0wK-lDA&pwd=j3fc", "reason": null}}, {"spider": "潮流APP", "file": "潮流APP.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.225, "init": 0.003, "home": 80.585, "category": 98.782, "detail": 160.977, "player": 287.521, "url_check": 96.865, "total": 730.442}, "counts": {"classes": 10, "category_videos": 12, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "10", "vod_id": "75852", "flag": "线路二 (点击换线)", "play_id": "75852@@0@@0"}, "player": {"parse": 0, "url": "http://43.248.96.62:9090/nby/m3u8/getM3u8?name=jx.91by.top&time=1786169393678&url=NBY-c6d046002ed1d767bee10e93ee7f1ff8.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://43.248.96.62:9090/nby/m3u8/getM3u8?name=jx.91by.top&time=1786169393678&url=NBY-c6d046002ed1d767bee10e93ee7f1ff8.m3u8", "reason": null}}, {"spider": "灯泡影视", "file": "灯泡影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.765, "init": 0.0, "home": 0.001, "category": 1429.77, "detail": 1436.088, "player": 0.01, "url_check": 538.892, "total": 3410.35}, "counts": {"classes": 4, "category_videos": 98, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "", "vod_id": "7932", "flag": "百度", "play_id": "push://https://pan.baidu.com/s/1Lc37qEn__n4rPbFlttjBtg?pwd=a85n"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1Lc37qEn__n4rPbFlttjBtg?pwd=a85n", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/s/1Lc37qEn__n4rPbFlttjBtg?pwd=a85n", "reason": null}}, {"spider": "热播之家", "file": "热播之家.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 8.293, "init": 0.001, "home": 361.23, "category": 183.232, "detail": 190.77, "player": 228.631, "url_check": 151.155, "total": 1124.177}, "counts": {"classes": 5, "category_videos": 12, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "3638", "flag": "UC网盘", "play_id": "/play/3638-3-1.html"}, "player": {"parse": 0, "url": "https://drive.uc.cn/s/0682ae9691dc4", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://drive.uc.cn/s/0682ae9691dc4", "reason": null}}, {"spider": "爱壹帆", "file": "爱壹帆.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.138, "init": 0.001, "home": 0.001, "category": 1297.213, "detail": 1422.684, "player": 1421.634, "url_check": 189.083, "total": 4336.632}, "counts": {"classes": 4, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "125695", "flag": "自营1线", "play_id": "125695-1-1"}, "player": {"parse": 0, "url": "https://y6fb.vhmzy.com/videos/202608/07/6a75c0062f546fadf00e5ac1/a98e8e/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://y6fb.vhmzy.com/videos/202608/07/6a75c0062f546fadf00e5ac1/a98e8e/index.m3u8", "reason": null}}, {"spider": "爱奇艺", "file": "爱奇艺.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 18.152, "init": 0.022, "home": 3977.326, "category": 547.858, "detail": 187.272, "player": 0.002, "url_check": 84.166, "total": 4815.696}, "counts": {"classes": 11, "category_videos": 60, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "pcw:1", "vod_id": "pcw:1$1847889304158300", "flag": "爱奇艺", "play_id": "http://www.iqiyi.com/v_j481drl44w.html"}, "player": {"parse": 1, "url": "http://www.iqiyi.com/v_j481drl44w.html", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://www.iqiyi.com/v_j481drl44w.html", "reason": null}}, {"spider": "片库", "file": "片库.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 11.158, "init": 0.145, "home": 0.002, "category": 1215.951, "detail": 0.004, "player": 0.002, "url_check": 135.737, "total": 1363.952}, "counts": {"classes": 7, "category_videos": 20, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "genre", "vod_id": "msearch:movie-969681", "flag": "Test", "play_id": "Test"}, "player": {"parse": 0, "url": "https://v.qq.com/", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://v.qq.com/", "reason": null}}, {"spider": "独播库", "file": "独播库.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.49, "init": 0.001, "home": 0.001, "category": 430.976, "detail": 354.814, "player": 319.418, "url_check": 221.163, "total": 1334.955}, "counts": {"classes": 6, "category_videos": 48, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "index", "vod_id": "148867", "flag": "独播库", "play_id": "148867-1-1"}, "player": {"parse": 0, "url": "https://vid.dbokutv.com/20260803/ppotb62-S71lT2yliZApDBSvkYzBsrmD3fpCJ4nBsPsRsGlR7XgBMvuBJ0nBJ0pGKGvGZX3DYvjS34/chunklist.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vid.dbokutv.com/20260803/ppotb62-S71lT2yliZApDBSvkYzBsrmD3fpCJ4nBsPsRsGlR7XgBMvuBJ0nBJ0pGKGvGZX3DYvjS34/chunklist.m3u8", "reason": null}}, {"spider": "猫猫4K", "file": "猫猫4K.txt", "success": false, "failed_stage": "player", "error": "playerContent 未返回播放地址", "traceback": null, "timings_ms": {"module_load": 8.459, "init": 146.091, "home": 317.521, "category": 156.08, "detail": 152.371, "player": 451.238, "url_check": 0.0, "total": 2959.996}, "counts": {"classes": 5, "category_videos": 20, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "2", "vod_id": "199167", "flag": "火猫极速A", "play_id": "https://www.iqiyi.com/v_23wm96kvzp8.html@@@qiyi"}, "player": {"parse": 0, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "王子4K", "file": "王子4K.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 12.303, "init": 0.004, "home": 912.031, "category": 523.568, "detail": 404.987, "player": 0.013, "url_check": 862.302, "total": 2717.246}, "counts": {"classes": 5, "category_videos": 30, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "415645", "flag": "RY线路", "play_id": "RY线路@@direct@@,https://svip.ryplay14.com/20260807/17913_29276f9c/index.m3u8,token+,1,0"}, "player": {"parse": 0, "url": "https://svip.ryplay14.com/20260807/17913_29276f9c/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://svip.ryplay14.com/20260807/17913_29276f9c/index.m3u8", "reason": null}}, {"spider": "玩偶哥哥", "file": "玩偶哥哥.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 10.125, "init": 0.006, "home": 0.001, "category": 588.695, "detail": 207.821, "player": 0.014, "url_check": 957.39, "total": 1764.914}, "counts": {"classes": 8, "category_videos": 70, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "44", "vod_id": "129233", "flag": "百度#玩偶哥哥", "play_id": "https://pan.baidu.com/s/1PqNRMrc-ZL3RLzu5yG2MXg?pwd=wogg"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1PqNRMrc-ZL3RLzu5yG2MXg?pwd=wogg", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=PqNRMrc-ZL3RLzu5yG2MXg&pwd=wogg", "reason": null}}, {"spider": "玩偶聚合", "file": "玩偶聚合.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 54.917, "init": 0.006, "home": 4.506, "category": 1221.713, "detail": 912.331, "player": 0.002, "url_check": 1075.138, "total": 4449.521}, "counts": {"classes": 11, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "site_duoduo", "vod_id": "site:duoduo:/index.php/vod/detail/id/9628.html", "flag": "百度#多多", "play_id": "https://pan.baidu.com/s/1C2akm1U8xz_uAX-1pjsCrQ?pwd=9527"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1C2akm1U8xz_uAX-1pjsCrQ?pwd=9527", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=C2akm1U8xz_uAX-1pjsCrQ&pwd=9527", "reason": null}}, {"spider": "瓜子", "file": "瓜子.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.257, "init": 0.003, "home": 0.044, "category": 695.964, "detail": 732.201, "player": 378.409, "url_check": 540.695, "total": 2356.375}, "counts": {"classes": 5, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "146684", "flag": "1080", "play_id": "vod_d_id=146684&vurl_id=4255536&domain_type=8&resolution=1080&type=play"}, "player": {"parse": 0, "url": "https://app.wanglaoshi.xn--fiqs8s/hls/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://app.wanglaoshi.xn--fiqs8s/hls/index.m3u8", "reason": null}}, {"spider": "甜圈漫剧", "file": "甜圈漫剧.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 6.412, "init": 92.39, "home": 0.01, "category": 615.815, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 7790.673}, "counts": {"classes": 67, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "热剧榜", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "电影人生", "file": "电影人生.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.323, "init": 0.004, "home": 0.001, "category": 56995.906, "detail": 1695.472, "player": 932.593, "url_check": 712.038, "total": 60342.921}, "counts": {"classes": 5, "category_videos": 24, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "dianying", "vod_id": "movie/6a3fc1f28d23fb278b72f0fb-15633.html", "flag": "jsm3u8", "play_id": "{\"title\":\"第1集\",\"origin\":\"jsm3u8\",\"page\":\"https://dyrsvip.cc/movie/6a3fc1f28d23fb278b72f0fb/15633.html?origin=jsm3u8&p=0\",\"vodName\":\"生活拉里与不快乐的追求 一部美国史\",\"pic\":\"https://dyrsvip.cc/img/id/6a3fc1f28d23fb278b72f0fb.jpg\"}"}, "player": {"parse": 0, "url": "https://vv.jisuzyv.com/play/e5y7598e/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vv.jisuzyv.com/play/e5y7598e/index.m3u8", "reason": null}}, {"spider": "电影天堂", "file": "电影天堂.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.642, "init": 172.682, "home": 362.116, "category": 135.188, "detail": 115.134, "player": 165.643, "url_check": 59.313, "total": 1016.76}, "counts": {"classes": 9, "category_videos": 21, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "2", "vod_id": "14370", "flag": "超级无敌4K", "play_id": "eyJ2b2RQbGF5RnJvbSI6ICJLc3ZpZGVvIiwgInBsYXlVcmwiOiAiS3N2aWRlby1hZWQ0NjNmYTc2ZmZiODM0ZjFhYTMzODE0ZjIzMGY1MDFmOWVkZTIxMThkZGE3MDQyMjBkMDkyM2ZkM2M2NDcxMDEwZjQ4ZThlMTFkYjllMjNhMGQ1Yzc0ZDgyZTE5ZTIxYzQzY2VmODMyZWZhZjlkMzA3NjgzMTFhY2IyNmNiMjRiYjk0ZDNjZWQ4MzJlMzYzMzYwNDQwY2M3YTcyMTMwODA2YzE1NThhM2VlNzUyYjM2MzY2MzA4MjgzNmQzOTAyMWZiNmRmYTliYzlmYjc0NTQyOGJlYTNmNTY4YmRjODIzN2Y0ZWM3MmE5ZTBmMzY1NWQ2YTc3ZTA4ZjM0NGJiMTQwMTZiNjE1ZDFlY2I2YjFkNTc1NWRiMDM0ZWQ1OTEifQ=="}, "player": {"parse": 0, "url": "https://onvideo-safety.ssscdn.com/ksc2/sH0R8XxgpAIspEg_3gD6lVu-caIJ3UUH85ol8buoFWUXhLWIOEU4RBLUS13b8-TVhAfpWvFsK6GlZVB2nqLL--k2sNPU1_ApjAbhwEbw_R_IuHyj0ETsVEN7JglhQE20NSpmqkN4bLYOkhQvNxsFjDLwgabsokcG-qQMD9LWI0fBgV80m-4sVYNqwKwmloBO.m3u8?pkey=AAUjcQuhKn3xJNr0TgMZhhUPGyoqIo8MKbKYqKQw04uzNhS1yrOG1u_UsiMDTVJhKW0TwVWEhVFhal_9LG7u1Dg85Stu-VhuHsszn6XtQlw4VQUv-hGevzoZk4WNBnRWHn8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://onvideo-safety.ssscdn.com/ksc2/sH0R8XxgpAIspEg_3gD6lVu-caIJ3UUH85ol8buoFWUXhLWIOEU4RBLUS13b8-TVhAfpWvFsK6GlZVB2nqLL--k2sNPU1_ApjAbhwEbw_R_IuHyj0ETsVEN7JglhQE20NSpmqkN4bLYOkhQvNxsFjDLwgabsokcG-qQMD9LWI0fBgV80m-4sVYNqwKwmloBO.m3u8?pkey=AAUjcQuhKn3xJNr0TgMZhhUPGyoqIo8MKbKYqKQw04uzNhS1yrOG1u_UsiMDTVJhKW0TwVWEhVFhal_9LG7u1Dg85Stu-VhuHsszn6XtQlw4VQUv-hGevzoZk4WNBnRWHn8", "reason": null}}, {"spider": "百度短剧", "file": "百度短剧.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.865, "init": 0.001, "home": 469.936, "category": 230.674, "detail": 625.458, "player": 303.198, "url_check": 46.183, "total": 1682.175}, "counts": {"classes": 29, "category_videos": 9, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "3", "vod_id": "10284595040762396431", "flag": "百度短剧[短]", "play_id": "4723147730512611191|||10284595040762396431"}, "player": {"parse": 0, "url": "http://vd3.bdstatic.com/mda-rgu31fx13xnschwc/1080p/mv_cae264_backtrack_1080p_normal/1753858859061604699/mda-rgu31fx13xnschwc.mp4?v_from_s=haokan-ui-video-hnb", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://vd3.bdstatic.com/mda-rgu31fx13xnschwc/1080p/mv_cae264_backtrack_1080p_normal/1753858859061604699/mda-rgu31fx13xnschwc.mp4?v_from_s=haokan-ui-video-hnb", "reason": null}}, {"spider": "盘Ta", "file": "盘Ta.txt", "success": false, "failed_stage": "unexpected", "error": "('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))", "traceback": "Traceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 787, in urlopen\n response = self._make_request(\n conn,\n ...<10 lines>...\n **response_kw,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 488, in _make_request\n raise new_e\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 464, in _make_request\n self._validate_conn(conn)\n ~~~~~~~~~~~~~~~~~~~^^^^^^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 1093, in _validate_conn\n conn.connect()\n ~~~~~~~~~~~~^^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connection.py\", line 796, in connect\n sock_and_verified = _ssl_wrap_socket_and_match_hostname(\n sock=sock,\n ...<14 lines>...\n assert_fingerprint=self.assert_fingerprint,\n )\nConnectionResetError: [Errno 104] Connection reset by peer\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/requests/adapters.py\", line 645, in send\n resp = conn.urlopen(\n method=request.method,\n ...<9 lines>...\n chunked=chunked,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 841, in urlopen\n retries = retries.increment(\n method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2]\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/retry.py\", line 490, in increment\n raise reraise(type(error), error, _stacktrace)\n ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/util.py\", line 38, in reraise\n raise value.with_traceback(tb)\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 787, in urlopen\n response = self._make_request(\n conn,\n ...<10 lines>...\n **response_kw,\n )\nurllib3.exceptions.ProtocolError: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 756, in validate_spider_file\n home_result = _run_timed(result[\"timings_ms\"], \"home\", spider.homeContent, clock, False)\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 318, in _run_timed\n return func(*args, **kwargs)\n File \"/home/harold/workspace/tvbox-resources/py/盘Ta.txt\", line 230, in homeContent\n File \"/home/harold/workspace/tvbox-resources/py/盘Ta.txt\", line 70, in _request_html\n File \"/home/harold/workspace/atv-spiders/py/base/spider.py\", line 145, in fetch\n rsp = requests.get(url, params=params, cookies=cookies, headers=headers, timeout=timeout, verify=verify,\n stream=stream, allow_redirects=allow_redirects)\nrequests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))\n", "timings_ms": {"module_load": 5.759, "init": 0.001, "home": 3013.775, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 3021.329}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "盘聚", "file": "盘聚.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.117, "init": 0.001, "home": 0.0, "category": 225.701, "detail": 291.541, "player": 184.687, "url_check": 1106.074, "total": 1815.874}, "counts": {"classes": 4, "category_videos": 20, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "/", "vod_id": "135386", "flag": "百度1", "play_id": "push://https://www.seedhub.cc/link_start/?redirect_to=pan_id_738247&movie_title=【寒战1994】【4K 1080P】【中字】流媒体正式版 今天"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1H19VWwii51b2s0KWJiadFg?pwd=mezd", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=H19VWwii51b2s0KWJiadFg&pwd=mezd", "reason": null}}, {"spider": "盘链", "file": "盘链.txt", "success": false, "failed_stage": "detail", "error": "详情缺少播放源或播放列表", "traceback": null, "timings_ms": {"module_load": 11.34, "init": 0.095, "home": 0.001, "category": 826.616, "detail": 353.932, "player": 0.0, "url_check": 0.0, "total": 2960.778}, "counts": {"classes": 5, "category_videos": 30, "detail_videos": 1, "episodes": 0}, "samples": {"tid": "1", "vod_id": "-76535", "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "短剧优选", "file": "短剧优选.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 33.55, "init": 468.375, "home": 428.966, "category": 316.998, "detail": 313.308, "player": 0.005, "url_check": 147.043, "total": 1709.796}, "counts": {"classes": 16, "category_videos": 20, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "免费", "vod_id": "免费@https://20.90kan.cc/?id=69956", "flag": "夸克", "play_id": "https://pan.quark.cn/s/c4a9db188d38"}, "player": {"parse": 0, "url": "https://pan.quark.cn/s/c4a9db188d38", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.quark.cn/s/c4a9db188d38", "reason": null}}, {"spider": "短剧网", "file": "短剧网.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.399, "init": 0.001, "home": 0.001, "category": 379.659, "detail": 339.615, "player": 0.008, "url_check": 1171.812, "total": 1896.124}, "counts": {"classes": 2, "category_videos": 20, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "https://sm3.cc/?id=69966", "flag": "百度", "play_id": "https://pan.baidu.com/s/1qqlrhkIP8tiUWc2kv0WaEg?pwd=6666"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1qqlrhkIP8tiUWc2kv0WaEg?pwd=6666", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=qqlrhkIP8tiUWc2kv0WaEg&pwd=6666", "reason": null}}, {"spider": "磁力熊", "file": "磁力熊.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 8.984, "init": 0.003, "home": 0.004, "category": 589.686, "detail": 653.372, "player": 0.005, "url_check": 0.062, "total": 1252.612}, "counts": {"classes": 24, "category_videos": 16, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "movie", "vod_id": "movie/4736", "flag": "磁力·1080P", "play_id": "magnet:?xt=urn:btih:8E4925B11CCD05AB7BF230E5CDEF5D1424DA44FB"}, "player": {"parse": 0, "url": "magnet:?xt=urn:btih:8E4925B11CCD05AB7BF230E5CDEF5D1424DA44FB", "valid": true, "reachable": null, "status_code": null, "final_url": "magnet:?xt=urn:btih:8E4925B11CCD05AB7BF230E5CDEF5D1424DA44FB", "reason": "非 HTTP 地址,按协议格式通过"}}, {"spider": "移动4K", "file": "移动4K.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 7.639, "init": 0.014, "home": 0.001, "category": 240.083, "detail": 582.647, "player": 0.002, "url_check": 218.625, "total": 1051.134}, "counts": {"classes": 3, "category_videos": 9, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "562", "flag": "移动云盘", "play_id": "https://yun.139.com/shareweb/%23/w/i/2wFGtFpN8a064"}, "player": {"parse": 0, "url": "https://yun.139.com/shareweb/#/w/i/2wFGtFpN8a064", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://yun.139.com/shareweb/#/w/i/2wFGtFpN8a064", "reason": null}}, {"spider": "糯米", "file": "糯米.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 7.406, "init": 0.001, "home": 289.353, "category": 187.742, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 671.957}, "counts": {"classes": 5, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "juji", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "网易云音乐", "file": "网易云音乐.txt", "success": false, "failed_stage": "player", "error": "playerContent 未返回播放地址", "traceback": null, "timings_ms": {"module_load": 3.563, "init": 0.001, "home": 447.374, "category": 531.816, "detail": 0.006, "player": 950.533, "url_check": 0.0, "total": 3586.95}, "counts": {"classes": 63, "category_videos": 100, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "/discover/toplist?id=3779629", "vod_id": "3404238777@周旋@王以太👉MP3", "flag": "网易云音乐", "play_id": "3404238777"}, "player": {"parse": 0, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "耐视点播", "file": "耐视点播.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 5.672, "init": 0.001, "home": 0.001, "category": 1754.494, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 3411.461}, "counts": {"classes": 6, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "2", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "腾讯视频", "file": "腾讯视频.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 9.658, "init": 0.001, "home": 100.99, "category": 268.039, "detail": 883.17, "player": 0.003, "url_check": 259.44, "total": 1522.377}, "counts": {"classes": 7, "category_videos": 12, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "choice", "vod_id": "choice$mzc00200y5rv6us", "flag": "腾讯视频", "play_id": "https://v.qq.com/x/cover/mzc00200y5rv6us/n41020xj34a.html"}, "player": {"parse": 1, "url": "https://v.qq.com/x/cover/mzc00200y5rv6us/n41020xj34a.html", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://v.qq.com/x/cover/mzc00200y5rv6us/n41020xj34a.html", "reason": null}}, {"spider": "至臻", "file": "至臻.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 8.999, "init": 0.004, "home": 0.001, "category": 2114.518, "detail": 1052.309, "player": 0.004, "url_check": 1229.085, "total": 4405.501}, "counts": {"classes": 7, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "26", "vod_id": "15847", "flag": "百度#至臻", "play_id": "https://pan.baidu.com/s/17mhQiaIM3kf1JTpn9B4-wQ?pwd=dbti"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/17mhQiaIM3kf1JTpn9B4-wQ?pwd=dbti", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=7mhQiaIM3kf1JTpn9B4-wQ&pwd=dbti", "reason": null}}, {"spider": "苹果", "file": "苹果.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.47, "init": 188.901, "home": 324.57, "category": 140.078, "detail": 104.44, "player": 164.645, "url_check": 50.72, "total": 979.911}, "counts": {"classes": 9, "category_videos": 21, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "2", "vod_id": "14370", "flag": "超级无敌4K", "play_id": "eyJ2b2RQbGF5RnJvbSI6ICJLc3ZpZGVvIiwgInBsYXlVcmwiOiAiS3N2aWRlby1hZWQ0NjNmYTc2ZmZiODM0ZjFhYTMzODE0ZjIzMGY1MDFmOWVkZTIxMThkZGE3MDQyMjBkMDkyM2ZkM2M2NDcxMDEwZjQ4ZThlMTFkYjllMjNhMGQ1Yzc0ZDgyZTE5ZTIxYzQzY2VmODMyZWZhZjlkMzA3NjgzMTFhY2IyNmNiMjRiYjk0ZDNjZWQ4MzJlMzYzMzYwNDQwY2M3YTcyMTMwODA2YzE1NThhM2VlNzUyYjM2MzY2MzA4MjgzNmQzOTAyMWZiNmRmYTliYzlmYjc0NTQyOGJlYTNmNTY4YmRjODIzN2Y0ZWM3MmE5ZTBmMzY1NWQ2YTc3ZTA4ZjM0NGJiMTQwMTZiNjE1ZDFlY2I2YjFkNTc1NWRiMDM0ZWQ1OTEifQ=="}, "player": {"parse": 0, "url": "https://onvideo-safety.ssscdn.com/ksc2/sH0R8XxgpAIspEg_3gD6lVu-caIJ3UUH85ol8buoFWUXhLWIOEU4RBLUS13b8-TVhAfpWvFsK6GlZVB2nqLL--k2sNPU1_ApjAbhwEbw_R_IuHyj0ETsVEN7JglhQE20NSpmqkN4bLYOkhQvNxsFjDLwgabsokcG-qQMD9LWI0fBgV80m-4sVYNqwKwmloBO.m3u8?pkey=AAUjcQuhKn3xJNr0TgMZhhUPGyoqIo8MKbKYqKQw04uzNhS1yrOG1u_UsiMDTVJhKW0TwVWEhVFhal_9LG7u1Dg85Stu-VhuHsszn6XtQlw4VQUv-hGevzoZk4WNBnRWHn8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://onvideo-safety.ssscdn.com/ksc2/sH0R8XxgpAIspEg_3gD6lVu-caIJ3UUH85ol8buoFWUXhLWIOEU4RBLUS13b8-TVhAfpWvFsK6GlZVB2nqLL--k2sNPU1_ApjAbhwEbw_R_IuHyj0ETsVEN7JglhQE20NSpmqkN4bLYOkhQvNxsFjDLwgabsokcG-qQMD9LWI0fBgV80m-4sVYNqwKwmloBO.m3u8?pkey=AAUjcQuhKn3xJNr0TgMZhhUPGyoqIo8MKbKYqKQw04uzNhS1yrOG1u_UsiMDTVJhKW0TwVWEhVFhal_9LG7u1Dg85Stu-VhuHsszn6XtQlw4VQUv-hGevzoZk4WNBnRWHn8", "reason": null}}, {"spider": "茶杯狐", "file": "茶杯狐.txt", "success": false, "failed_stage": "home", "error": "分类列表为空", "traceback": null, "timings_ms": {"module_load": 7.838, "init": 0.001, "home": 585.858, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 594.196}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "薯条", "file": "薯条.txt", "success": false, "failed_stage": "unexpected", "error": "Invalid URL '/api/v3/drama/getCategory?orderBy=type_id': No scheme supplied. Perhaps you meant https:///api/v3/drama/getCategory?orderBy=type_id?", "traceback": "Traceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 756, in validate_spider_file\n home_result = _run_timed(result[\"timings_ms\"], \"home\", spider.homeContent, clock, False)\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 318, in _run_timed\n return func(*args, **kwargs)\n File \"/home/harold/workspace/tvbox-resources/py/薯条.txt\", line 277, in homeContent\n File \"/home/harold/workspace/tvbox-resources/py/薯条.txt\", line 249, in _get_json\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/requests/api.py\", line 73, in get\n return request(\"get\", url, params=params, **kwargs)\nrequests.exceptions.MissingSchema: Invalid URL '/api/v3/drama/getCategory?orderBy=type_id': No scheme supplied. Perhaps you meant https:///api/v3/drama/getCategory?orderBy=type_id?\n", "timings_ms": {"module_load": 5.909, "init": 15017.935, "home": 0.297, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 15024.787}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "虎斑", "file": "虎斑.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 8.402, "init": 0.008, "home": 0.001, "category": 395.061, "detail": 719.079, "player": 0.011, "url_check": 4887.05, "total": 6010.207}, "counts": {"classes": 7, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "461766", "flag": "百度#虎斑", "play_id": "https://pan.baidu.com/s/1PMLjGVqd59cuaID1O02zHA?pwd=v8z4"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1PMLjGVqd59cuaID1O02zHA?pwd=v8z4", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/s/1PMLjGVqd59cuaID1O02zHA?pwd=v8z4", "reason": null}}, {"spider": "蜗牛", "file": "蜗牛.txt", "success": false, "failed_stage": "detail", "error": "详情缺少播放源或播放列表", "traceback": null, "timings_ms": {"module_load": 11.08, "init": 491.965, "home": 0.003, "category": 429.455, "detail": 307.551, "player": 0.0, "url_check": 0.0, "total": 1977.914}, "counts": {"classes": 4, "category_videos": 36, "detail_videos": 1, "episodes": 0}, "samples": {"tid": "2", "vod_id": "34989", "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "蜡笔", "file": "蜡笔.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 9.97, "init": 0.008, "home": 0.001, "category": 1945.099, "detail": 669.283, "player": 0.005, "url_check": 2973.614, "total": 5598.706}, "counts": {"classes": 7, "category_videos": 72, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "29", "vod_id": "10585", "flag": "百度#蜡笔", "play_id": "https://pan.baidu.com/s/1FQuKNxcryYV_-a_VY43GPw?pwd=gbpz"}, "player": {"parse": 0, "url": "https://pan.baidu.com/s/1FQuKNxcryYV_-a_VY43GPw?pwd=gbpz", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.baidu.com/share/init?surl=FQuKNxcryYV_-a_VY43GPw&pwd=gbpz", "reason": null}}, {"spider": "蜻蜓FM", "file": "蜻蜓FM.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 3.531, "init": 0.001, "home": 501.824, "category": 501.366, "detail": 0.029, "player": 0.006, "url_check": 435.931, "total": 1443.328}, "counts": {"classes": 44, "category_videos": 12, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "217", "vod_id": "1259@@广东珠江经济电台@@https://pic.qtfm.cn/2015/0209/20150209212831195.jpg@@正在直播: 乡村振兴看广东", "flag": "蜻蜓FM", "play_id": "1259"}, "player": {"parse": 0, "url": "http://lhttp.qtfm.cn/live/1259/64k.mp3", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://lhttp.qtfm.cn/live/1259/64k.mp3", "reason": null}}, {"spider": "袋鼠影视", "file": "袋鼠影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.674, "init": 0.001, "home": 0.001, "category": 1405.544, "detail": 406.615, "player": 821.121, "url_check": 1166.493, "total": 3806.184}, "counts": {"classes": 4, "category_videos": 36, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "216945", "flag": "蓝光专线4", "play_id": "play/216945-0-0"}, "player": {"parse": 0, "url": "https://vip.dytt-kan.com/20250615/741_2e65f2f2/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vip.dytt-kan.com/20250615/741_2e65f2f2/index.m3u8", "reason": null}}, {"spider": "观影", "file": "观影.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 11.418, "init": 0.442, "home": 0.005, "category": 0.005, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 13.242}, "counts": {"classes": 6, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "tv", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "视界", "file": "视界.txt", "success": false, "failed_stage": "unexpected", "error": "HTTPSConnectionPool(host='cms140.yhg.one', port=443): Read timed out. (read timeout=10)", "traceback": "Traceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 464, in _make_request\n self._validate_conn(conn)\n ~~~~~~~~~~~~~~~~~~~^^^^^^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 1093, in _validate_conn\n conn.connect()\n ~~~~~~~~~~~~^^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connection.py\", line 796, in connect\n sock_and_verified = _ssl_wrap_socket_and_match_hostname(\n sock=sock,\n ...<14 lines>...\n assert_fingerprint=self.assert_fingerprint,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connection.py\", line 975, in _ssl_wrap_socket_and_match_hostname\n ssl_sock = ssl_wrap_socket(\n sock=sock,\n ...<8 lines>...\n tls_in_tls=tls_in_tls,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/ssl_.py\", line 483, in ssl_wrap_socket\n ssl_sock = _ssl_wrap_socket_impl(sock, context, tls_in_tls, server_hostname)\nTimeoutError: _ssl.c:1063: The handshake operation timed out\n\nThe above exception was the direct cause of the following exception:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/requests/adapters.py\", line 645, in send\n resp = conn.urlopen(\n method=request.method,\n ...<9 lines>...\n chunked=chunked,\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 841, in urlopen\n retries = retries.increment(\n method, url, error=new_e, _pool=self, _stacktrace=sys.exc_info()[2]\n )\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/retry.py\", line 490, in increment\n raise reraise(type(error), error, _stacktrace)\n ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/util/util.py\", line 39, in reraise\n raise value\n File \"/home/harold/workspace/atv-spiders/py/.venv/lib/python3.14/site-packages/urllib3/connectionpool.py\", line 787, in urlopen\n response = self._make_request(\n conn,\n ...<10 lines>...\n **response_kw,\n )\nurllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='cms140.yhg.one', port=443): Read timed out. (read timeout=10)\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 756, in validate_spider_file\n home_result = _run_timed(result[\"timings_ms\"], \"home\", spider.homeContent, clock, False)\n File \"/home/harold/workspace/atv-spiders/py/validate_spiders.py\", line 318, in _run_timed\n return func(*args, **kwargs)\n File \"/home/harold/workspace/tvbox-resources/py/视界.txt\", line 72, in homeContent\n File \"/home/harold/workspace/tvbox-resources/py/视界.txt\", line 400, in _ensure_init_payload\n File \"/home/harold/workspace/tvbox-resources/py/视界.txt\", line 199, in _post_api\nrequests.exceptions.ReadTimeout: HTTPSConnectionPool(host='cms140.yhg.one', port=443): Read timed out. (read timeout=10)\n", "timings_ms": {"module_load": 9.723, "init": 0.001, "home": 10015.232, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 10026.772}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "资源聚合", "file": "资源聚合.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 13.36, "init": 0.075, "home": 393.804, "category": 622.282, "detail": 290.941, "player": 0.004, "url_check": 1874.285, "total": 3195.873}, "counts": {"classes": 4, "category_videos": 20, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "cms:feifan:98946", "flag": "非凡资源", "play_id": "https://super.ffzy-online6.com/20260807/38311_c5f5688a/index.m3u8"}, "player": {"parse": 0, "url": "https://super.ffzy-online6.com/20260807/38311_c5f5688a/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://super.ffzy-online6.com/20260807/38311_c5f5688a/index.m3u8", "reason": null}}, {"spider": "路漫漫", "file": "路漫漫.txt", "success": false, "failed_stage": "category", "error": "分类视频列表为空", "traceback": null, "timings_ms": {"module_load": 5.647, "init": 0.001, "home": 0.0, "category": 269.673, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 543.82}, "counts": {"classes": 6, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": "7", "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "路飞影视", "file": "路飞影视.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.624, "init": 0.001, "home": 0.001, "category": 199.492, "detail": 589.739, "player": 1919.525, "url_check": 874.115, "total": 3589.43}, "counts": {"classes": 7, "category_videos": 16, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "movie", "vod_id": "39037476", "flag": "【无广②】", "play_id": "39037476-1-1"}, "player": {"parse": 0, "url": "https://player.yzzyvip-35.com/20260807/12972_c1f22f4c/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://player.yzzyvip-35.com/20260807/12972_c1f22f4c/index.m3u8", "reason": null}}, {"spider": "酷我听书", "file": "酷我听书.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.393, "init": 0.001, "home": 376.499, "category": 103.557, "detail": 3390.715, "player": 172.125, "url_check": 41.208, "total": 4091.819}, "counts": {"classes": 4, "category_videos": 21, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "2", "vod_id": "13492273", "flag": "酷我听书", "play_id": "free|94448942"}, "player": {"parse": 0, "url": "http://car-lv.kuwo.cn/60326ab0fb7e2b37ee1364b1e61a634c/6a76c83c/resource/30106/trackmedia/long/M500002ZiI9a1sctnS.mp3?bitrate$128&format$mp3&source$kwplayerhd_ar_4.3.0.8_tianbao_T1A_qirui.apk&type$convert_url_with_sign&user$&loginUid$", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://car-lv.kuwo.cn/60326ab0fb7e2b37ee1364b1e61a634c/6a76c83c/resource/30106/trackmedia/long/M500002ZiI9a1sctnS.mp3?bitrate$128&format$mp3&source$kwplayerhd_ar_4.3.0.8_tianbao_T1A_qirui.apk&type$convert_url_with_sign&user$&loginUid$", "reason": null}}, {"spider": "酷狗音乐", "file": "酷狗音乐.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 9.793, "init": 442.18, "home": 261.753, "category": 247.991, "detail": 473.697, "player": 287.996, "url_check": 112.734, "total": 1838.592}, "counts": {"classes": 12, "category_videos": 15, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "recommend", "vod_id": "630243343", "flag": "酷狗音乐", "play_id": "630243343"}, "player": {"parse": 0, "url": "http://fsdg360.tx.kugou.com/202608081410/5fd07a8719cbaec98fadc17c583436b0/v3/67d1280a29f7ded6449387e003153020/yp/p_0_960555/ap1013_us0_mic85f71c379c462618de1399950957c33_pi6101_mx630243343_qu128_s2724962378.mp3?ft=car_203559_10049&fts=b05bb02d44717442054bac7624ed9a29&ext=.mp3", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://fsdg360.tx.kugou.com/202608081410/5fd07a8719cbaec98fadc17c583436b0/v3/67d1280a29f7ded6449387e003153020/yp/p_0_960555/ap1013_us0_mic85f71c379c462618de1399950957c33_pi6101_mx630243343_qu128_s2724962378.mp3?ft=car_203559_10049&fts=b05bb02d44717442054bac7624ed9a29&ext=.mp3", "reason": null}}, {"spider": "金牌", "file": "金牌.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.396, "init": 0.001, "home": 1898.462, "category": 1244.677, "detail": 555.158, "player": 211.108, "url_check": 600.059, "total": 4515.948}, "counts": {"classes": 5, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "145512", "flag": "金牌线路", "play_id": "145512@1298790"}, "player": {"parse": 0, "url": "https://ppvod011.blbtgg.com/splitOut/20260705/1342569/V20260705110331438911342569/index.m3u8?auth_key=1786169405-3e4a7f3863754ffbb1aad7d8a2e450fa-0-2de10fca89bd49f71ba132ffa1ff5243", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://ppvod011.blbtgg.com/splitOut/20260705/1342569/V20260705110331438911342569/index.m3u8?auth_key=1786169405-3e4a7f3863754ffbb1aad7d8a2e450fa-0-2de10fca89bd49f71ba132ffa1ff5243", "reason": null}}, {"spider": "长泽", "file": "长泽.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.647, "init": 0.027, "home": 145.872, "category": 414.789, "detail": 81.845, "player": 0.019, "url_check": 1807.865, "total": 2457.761}, "counts": {"classes": 18, "category_videos": 21, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "20", "vod_id": "93281", "flag": "FF有广", "play_id": "app88:WyJodHRwczovL3ZpcC5mZnp5LXBsYXlzLmNvbS8yMDI2MDgwNi81NjcyNl80YjVkM2EyOC9pbmRleC5tM3U4IiwiZmZtM3U4Iiwi55y855y4IiwiMSJd"}, "player": {"parse": 0, "url": "https://vip.ffzy-plays.com/20260806/56726_4b5d3a28/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vip.ffzy-plays.com/20260806/56726_4b5d3a28/index.m3u8", "reason": null}}, {"spider": "闪电", "file": "闪电.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 10.59, "init": 0.005, "home": 0.001, "category": 11727.611, "detail": 274.491, "player": 0.01, "url_check": 165.156, "total": 12178.39}, "counts": {"classes": 5, "category_videos": 72, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "186133", "flag": "夸克#闪电", "play_id": "https://pan.quark.cn/s/0e802ce6be5a"}, "player": {"parse": 0, "url": "https://pan.quark.cn/s/0e802ce6be5a", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.quark.cn/s/0e802ce6be5a", "reason": null}}, {"spider": "雷鲸", "file": "雷鲸.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.723, "init": 0.002, "home": 0.002, "category": 2029.736, "detail": 878.766, "player": 0.005, "url_check": 222.444, "total": 3137.343}, "counts": {"classes": 7, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "42204681950354", "vod_id": "66466", "flag": "迅雷", "play_id": "https://pan.xunlei.com/s/VOxGjKrL2zREw7pkB8aXhCvqA1"}, "player": {"parse": 0, "url": "https://pan.xunlei.com/s/VOxGjKrL2zREw7pkB8aXhCvqA1", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://pan.xunlei.com/s/VOxGjKrL2zREw7pkB8aXhCvqA1", "reason": null}}, {"spider": "韩圈", "file": "韩圈.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 5.685, "init": 0.004, "home": 798.971, "category": 696.618, "detail": 2118.326, "player": 503.431, "url_check": 132.236, "total": 4256.21}, "counts": {"classes": 18, "category_videos": 24, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "RWA1fjPgWNm7zDXWIV56", "flag": "蓝光HDR", "play_id": "RWA1fjPgWNm7zDXWIV56|||6ELTVL1fVx13oPB0teZtP|||sc_TnymrI9lPH6g6Ba2RnXE|||11"}, "player": {"parse": 0, "url": "http://piccc.cdn.51touxiang.com/m3u8/2ePd4TGLqoackYBGnFxo66tx694g29pLJY5pkDQc.m3u8?pid=%2BibJyq87ptZYRmRqhIP%2FvdPpS8IkFbC44G%2FR8jMO89c%3D&utk=u_bYstpjDewEfNg7Qfvwx1&uk=f0vRs0mWZ8Q4NeOaqnzptBzBCFA8hAHZaPEf9u6Y3cw%3D&spl=213&t=1786169406&sign=48d1ad8cc6d3bcb4c84cd493cce4922f&ip=222.210.194.251", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://piccc.cdn.51touxiang.com/m3u8/2ePd4TGLqoackYBGnFxo66tx694g29pLJY5pkDQc.m3u8?pid=%2BibJyq87ptZYRmRqhIP%2FvdPpS8IkFbC44G%2FR8jMO89c%3D&utk=u_bYstpjDewEfNg7Qfvwx1&uk=f0vRs0mWZ8Q4NeOaqnzptBzBCFA8hAHZaPEf9u6Y3cw%3D&spl=213&t=1786169406&sign=48d1ad8cc6d3bcb4c84cd493cce4922f&ip=222.210.194.251", "reason": null}}, {"spider": "韩小圈", "file": "韩小圈.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 6.889, "init": 0.001, "home": 0.001, "category": 910.369, "detail": 803.435, "player": 0.004, "url_check": 1835.907, "total": 3557.275}, "counts": {"classes": 5, "category_videos": 20, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "0", "vod_id": "98458", "flag": "默认线路", "play_id": "https://vvip.high26-playback.com/20260711/24705_7ffc2fa4/index.m3u8"}, "player": {"parse": 0, "url": "https://vvip.high26-playback.com/20260711/24705_7ffc2fa4/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://vvip.high26-playback.com/20260711/24705_7ffc2fa4/index.m3u8", "reason": null}}, {"spider": "飞卢听书", "file": "飞卢听书.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.085, "init": 0.001, "home": 0.0, "category": 281.228, "detail": 322.127, "player": 0.003, "url_check": 97.985, "total": 705.919}, "counts": {"classes": 12, "category_videos": 30, "detail_videos": 1, "episodes": 1}, "samples": {"tid": "1", "vod_id": "765", "flag": "飞卢听书", "play_id": "http://tss.faloo.com/ListenNode/0/765/1.mp3"}, "player": {"parse": 0, "url": "http://tss.faloo.com/ListenNode/0/765/1.mp3", "valid": true, "reachable": true, "status_code": 200, "final_url": "http://tss.faloo.com/ListenNode/0/765/1.mp3", "reason": null}}, {"spider": "飞快TV", "file": "飞快TV.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.593, "init": 0.001, "home": 0.001, "category": 1066.025, "detail": 971.439, "player": 936.375, "url_check": 840.759, "total": 3819.785}, "counts": {"classes": 4, "category_videos": 40, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "252407", "flag": "无广告31", "play_id": "/vodplay/252407-1-1.html"}, "player": {"parse": 0, "url": "https://player.yzzyvip-35.com/20260808/13035_1c39c39d/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://player.yzzyvip-35.com/20260808/13035_1c39c39d/index.m3u8", "reason": null}}, {"spider": "魔方APP", "file": "魔方APP.txt", "success": false, "failed_stage": "home", "error": "分类列表为空", "traceback": null, "timings_ms": {"module_load": 5.619, "init": 0.001, "home": 350.909, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 356.698}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}, {"spider": "麦田影院", "file": "麦田影院.txt", "success": true, "failed_stage": null, "error": null, "traceback": null, "timings_ms": {"module_load": 4.964, "init": 0.001, "home": 0.001, "category": 161.033, "detail": 175.768, "player": 0.027, "url_check": 458.084, "total": 800.858}, "counts": {"classes": 6, "category_videos": 20, "detail_videos": 1, "episodes": 2}, "samples": {"tid": "1", "vod_id": "171427", "flag": "LZ源", "play_id": "eyJ1cmwiOiJodHRwczovL3YubHpjZG4yNy5jb20vMjAyNTA3MzEvNjc5XzUwYTJiMDQ3L2luZGV4Lm0zdTgiLCJwYXJzZV9hcGkiOiJodHRwczovL2RlbC5tdDMyMC5jb20vbHpmZi5waHA_dXJsPSIsImhlYWRlcnMiOnt9LCJ1c2VyX2FnZW50IjoiIn0="}, "player": {"parse": 0, "url": "https://v.lzcdn27.com/20250731/679_50a2b047/index.m3u8", "valid": true, "reachable": true, "status_code": 200, "final_url": "https://v.lzcdn27.com/20250731/679_50a2b047/index.m3u8", "reason": null}}, {"spider": "黑猫APP", "file": "黑猫APP.txt", "success": false, "failed_stage": "home", "error": "分类列表为空", "traceback": null, "timings_ms": {"module_load": 6.85, "init": 0.001, "home": 374.8, "category": 0.0, "detail": 0.0, "player": 0.0, "url_check": 0.0, "total": 381.971}, "counts": {"classes": 0, "category_videos": 0, "detail_videos": 0, "episodes": 0}, "samples": {"tid": null, "vod_id": null, "flag": null, "play_id": null}, "player": {"parse": null, "url": "", "valid": false, "reachable": null, "status_code": null, "final_url": "", "reason": null}}]};
const STAGE_LABELS = {"module_load": "模块加载", "init": "初始化", "home": "首页分类", "category": "分类列表", "detail": "视频详情", "player": "播放地址", "url_check": "地址校验", "unexpected": "未预期异常", "total": "总耗时"};
const RAW_SPIDER_BASE_URL = "https://github.com/har01d5/tvbox/raw/refs/heads/master/py/";
const SPIDER_RELATIVE_PREFIX = "py/";
const state = {
status: "all",
failedStage: "all",
keyword: "",
minDuration: "",
maxDuration: "",
sortKey: "spider",
sortDirection: "asc",
};
function escapeHtml(value) {
return String(value ?? "")
.replace(/&/g, "&amp;")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;");
}
function formatDuration(value) {
const numeric = Number(value ?? 0);
if (Number.isNaN(numeric)) {
return String(value ?? "");
}
if (numeric >= 1000) {
return `${Math.round((numeric / 1000) * 1000) / 1000}秒`;
}
return `${numeric}ms`;
}
function stageLabel(stage) {
return stage ? (STAGE_LABELS[stage] || stage) : "";
}
function spiderUrl(fileName) {
return SPIDER_RELATIVE_PREFIX + encodeURIComponent(String(fileName || ""));
}
function uniqueFailedStages(items) {
const values = new Set();
items.forEach((item) => {
if (item.failed_stage) {
values.add(item.failed_stage);
}
});
return [...values].sort((left, right) => stageLabel(left).localeCompare(stageLabel(right), "zh-Hans-CN"));
}
function sortValue(item, key) {
if (key === "status") {
return item.success ? 0 : 1;
}
if (key === "failed_stage") {
return stageLabel(item.failed_stage);
}
if (key === "spider") {
return item.spider || "";
}
return Number(item.timings_ms?.[key] ?? 0);
}
function applyFilters(items) {
return items.filter((item) => {
if (state.status === "success" && !item.success) {
return false;
}
if (state.status === "failed" && item.success) {
return false;
}
if (state.failedStage !== "all" && (item.failed_stage || "") !== state.failedStage) {
return false;
}
const haystack = `${item.spider || ""} ${item.file || ""}`.toLowerCase();
if (state.keyword && !haystack.includes(state.keyword.toLowerCase())) {
return false;
}
const total = Number(item.timings_ms?.total ?? 0);
if (state.minDuration !== "" && total < Number(state.minDuration)) {
return false;
}
if (state.maxDuration !== "" && total > Number(state.maxDuration)) {
return false;
}
return true;
});
}
function applySort(items) {
return [...items].sort((left, right) => {
const a = sortValue(left, state.sortKey);
const b = sortValue(right, state.sortKey);
const comparison = typeof a === "number" && typeof b === "number"
? a - b
: String(a).localeCompare(String(b), "zh-Hans-CN");
return state.sortDirection === "asc" ? comparison : -comparison;
});
}
function renderSummary(items) {
const success = items.filter((item) => item.success).length;
const failed = items.length - success;
document.getElementById("summary-line").textContent =
`当前显示 ${items.length} / ${report.results.length} 条,成功 ${success},失败 ${failed}`;
}
function renderRows(items) {
const tbody = document.getElementById("results-body");
if (!items.length) {
tbody.innerHTML = '<tr><td class="empty" colspan="13">当前筛选条件下没有结果</td></tr>';
return;
}
tbody.innerHTML = items.map((item) => {
const statusClass = item.success ? "success" : "failed";
const statusText = item.success ? "成功" : "失败";
return `
<tr>
<td><a href="${spiderUrl(item.file)}" target="_blank" rel="noreferrer">${escapeHtml(item.spider)}</a></td>
<td><span class="status ${statusClass}">${statusText}</span></td>
<td>${escapeHtml(stageLabel(item.failed_stage))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.total ?? 0))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.module_load ?? 0))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.init ?? 0))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.home ?? 0))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.category ?? 0))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.detail ?? 0))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.player ?? 0))}</td>
<td>${escapeHtml(formatDuration(item.timings_ms?.url_check ?? 0))}</td>
<td>${escapeHtml(item.player?.url ?? "")}</td>
<td>${escapeHtml(item.error ?? "")}</td>
</tr>
`;
}).join("");
}
function updateSortIndicators() {
document.querySelectorAll("[data-sort-key]").forEach((button) => {
const indicator = button.querySelector(".sort-indicator");
if (!indicator) {
return;
}
if (button.dataset.sortKey !== state.sortKey) {
indicator.textContent = "";
return;
}
indicator.textContent = state.sortDirection === "asc" ? "▲" : "▼";
});
}
function rerender() {
const filtered = applyFilters(report.results);
const sorted = applySort(filtered);
renderSummary(sorted);
renderRows(sorted);
updateSortIndicators();
}
function initializeFilters() {
const statusFilter = document.getElementById("status-filter");
const stageFilter = document.getElementById("stage-filter");
const keywordFilter = document.getElementById("keyword-filter");
const minFilter = document.getElementById("duration-min-filter");
const maxFilter = document.getElementById("duration-max-filter");
const resetButton = document.getElementById("reset-filters");
statusFilter.innerHTML = [
'<option value="all">全部状态</option>',
'<option value="success">成功</option>',
'<option value="failed">失败</option>',
].join("");
stageFilter.innerHTML = ['<option value="all">全部阶段</option>']
.concat(uniqueFailedStages(report.results).map((stage) => `<option value="${escapeHtml(stage)}">${escapeHtml(stageLabel(stage))}</option>`))
.join("");
statusFilter.addEventListener("change", (event) => {
state.status = event.target.value;
rerender();
});
stageFilter.addEventListener("change", (event) => {
state.failedStage = event.target.value;
rerender();
});
keywordFilter.addEventListener("input", (event) => {
state.keyword = event.target.value.trim();
rerender();
});
minFilter.addEventListener("input", (event) => {
state.minDuration = event.target.value;
rerender();
});
maxFilter.addEventListener("input", (event) => {
state.maxDuration = event.target.value;
rerender();
});
resetButton.addEventListener("click", () => {
state.status = "all";
state.failedStage = "all";
state.keyword = "";
state.minDuration = "";
state.maxDuration = "";
statusFilter.value = "all";
stageFilter.value = "all";
keywordFilter.value = "";
minFilter.value = "";
maxFilter.value = "";
rerender();
});
document.querySelectorAll("[data-sort-key]").forEach((button) => {
button.addEventListener("click", () => {
const key = button.dataset.sortKey;
if (state.sortKey === key) {
state.sortDirection = state.sortDirection === "asc" ? "desc" : "asc";
} else {
state.sortKey = key;
state.sortDirection = "asc";
}
rerender();
});
});
}
function initializeSummaryCards() {
document.getElementById("generated-at").textContent = report.generated_at || "";
document.getElementById("max-workers").textContent = String(report.max_workers ?? "");
document.getElementById("total-count").textContent = String(report.summary?.total ?? 0);
document.getElementById("success-count").textContent = String(report.summary?.success ?? 0);
document.getElementById("failed-count").textContent = String(report.summary?.failed ?? 0);
document.getElementById("total-duration").textContent = formatDuration(report.total_duration_ms ?? 0);
}
initializeSummaryCards();
initializeFilters();
rerender();
</script>
</body>
</html>