wow.xxx Grabber

v1.0.0 · updated May 14, 2026

$5 Buy Now

How it works

Drop the grabber file into KVS Plugins → Grabbers, point it at a wow.xxx page or category listing, and KVS does the rest: parses metadata, downloads source files through yt-dlp, generates thumbs and previews.

Built on the standard KvsGrabberVideoYDL base class — works exactly like the official xhamster, xvideos, pornhub grabbers shipped by KVS. No core modifications.

URL with language prefix (/uk/videos/, /es/videos/) and pagination (URL|1000) supported out of the box.

# /admin/include/setup.php
$config['allow_custom_grabbers'] = 'true';
# import list
https://www.wow.xxx/videos/<slug>/
https://www.wow.xxx/latest-updates/|1000
https://www.wow.xxx/categories/<slug>/|500
wow.xxx grabber result
Title · from og:title
Description · from og:description
Categories · 20-30 per video
Models · mapped to KVS models
Studio · mapped to content source
Duration, date, views, rating
Embed iframe · from JSON-LD
Video files · 480p / 720p / 2160p

Full metadata

Every wow.xxx page exposes structured metadata — OpenGraph tags, JSON-LD VideoObject, semantic HTML for tags and models. The grabber reads all of it and maps cleanly to KVS fields.

Three quality tiers are detected automatically — the grabber picks the best available per video, or you can force a fixed quality in the settings.

If you prefer mirroring metadata without downloading files, switch the grabber to Embed mode and KVS will save a thumbnail + iframe pointer to the original player.

Fast downloads

wow.xxx serves videos through a CDN that rate-limits every TCP connection to about 75 KB/s. A single 4K file would take hours on a vanilla yt-dlp setup.

One line in setup.php routes yt-dlp downloads through aria2c with 16 parallel connections. Effective speed jumps to 2-6 MB/s — the same 4K file finishes in minutes instead of hours.

The aria2c boost applies to all KVS grabbers on the site, not only wow.xxx.

yt-dlp (default)75 KB/s
+ aria2c ×163 MB/s
~40× speed boost on the same IP

What's included

  • KVS grabber driver (custom_videos_wowxxx.php)
  • README with step-by-step setup
  • Full documentation page
  • Lifetime free updates

REQUIREMENTS

  • KVS 6.0 or newer
  • yt-dlp installed on the server
  • aria2 (optional, for fast downloads — apt install aria2)
# /admin/include/setup.php
$config['ydl_path'] =
'/usr/local/bin/yt-dlp
--downloader aria2c
--downloader-args
aria2c:-x__SPACE__16
__SPACE__-s__SPACE__16
__SPACE__-k__SPACE__1M';
# then upload .php via KVS admin

Changelog

v1.0.0 — Initial release. Full metadata parsing, listing pagination, aria2c integration for fast downloads.