4k69.com (~65k scenes): same PlayTube CMS as hqfap - common logic moved to _playtube.py (sitemap catalog, JSON-LD, pills). Studio classified by matching category pills against the studios index page. Streams are get_file (fullmovies family) returned unresolved with mobile_direct, 2160p skipped. neporn.com: KVS engine, latest-updates listing, JSON-LD + video:duration meta, performers from models links with flashvars video_tags fallback for fresh uploads. Resolve via _kvs; final URL portable cross-IP. superporn.com rejected: Cloudflare 403 from VPS on all TLS impersonations. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
787 B
Python
19 lines
787 B
Python
"""neporn.com — KVS (kt_player) direct stream extractor. Patrz app/extractors/tubes/_kvs.py.
|
|
|
|
Flashvars `video_url` = `function/0/...get_file/...` + `license_code` (silnik jak
|
|
freshporno/porn00/yespornvip). Resolve server-side: decode + follow 302 →
|
|
`data001.neporn.com/remote_control.php?time=&cv=...`.
|
|
|
|
Cross-IP test 2026-06-10: finalny URL portable (token time-bound, NIE IP-bound —
|
|
VPS resolve → lokalny ISP 206 video/mp4). Mobile gra direct, zero proxy/WebView.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from app.extractors._models import StreamSource
|
|
from app.extractors.tubes import _kvs
|
|
|
|
_BASE = "https://neporn.com"
|
|
|
|
|
|
def extract(page_url: str, *, timeout: float = 60.0) -> list[StreamSource] | None:
|
|
return _kvs.resolve_kvs(page_url, base_url=_BASE, timeout=timeout)
|