| name | ghost-decode |
| description | Decode videos that hide text in moving dots or noise using dense optical flow and optional OCR. Use for ghost-font clips, motion-defined text, random-dot kinematograms, TV-static videos with secret messages, text visible only during playback, or requests asking what a ghost-font video says. |
Ghost-Font Video Decoder
Ghost-font videos hide a message as a random-dot field: every frame is uniform
noise, but the dots inside the letter shapes move against the background dots.
This skill accumulates that motion into two images where the letters appear,
then reads the message from them.
Hard rules — ONE run producing TWO images
The #1 failure of this skill is over-processing: an agent that doesn't trust the
output spawns many diagnostic images, invents new algorithms, and hallucinates a
message out of noise. Do not do that.
- Run the decoder exactly once. The algorithm below is correct and complete.
Do not write a second decoder, try another method (temporal variance, phase
correlation, sub-pixel warping, weighted accumulation, per-line crops…), or
"improve" the pipeline.
- Produce exactly two images:
revealed.png and revealed_heatmap.png.
Create NO other images — no diagnostic maps, crops, or re-thresholded variants.
- Never OCR a raw frame. Every frame is pure noise; the message exists only in
accumulated motion.
- Read the two images, then stop. Soft, rounded, blobby letters are the
normal, correct output. If you can read the word, report it.
Workflow
-
Resolve the video from the user's request, or the most recently modified
.mp4/.mov/.avi/.webm in the working directory. Ask only if several
candidates are plausible.
-
Check the runtime: python -c "import cv2, numpy". If imports fail, install
opencv-python-headless and numpy (from <plugin-root>/requirements.txt when
present), asking first only if the environment requires approval.
-
Decode — run once. Pick ONE:
- If
<plugin-root>/decode.py exists:
python "<plugin-root>/decode.py" "<video>" -o "<out-dir>"
- Otherwise (plugin files not present in this environment): write the
Decoder program at the bottom of this file verbatim to a scratch
decode.py, then python decode.py "<video>" "<out-dir>".
Either path writes exactly revealed.png and revealed_heatmap.png.
Determine <plugin-root> from this skill's installed location
(<plugin-root>/codex-skills/ghost-decode/SKILL.md), not the working directory.
-
Read the message from revealed.png (black background, white letters); use
revealed_heatmap.png to confirm a faint or merged glyph. The printed OCR hint
is only a rough hint — trust your own reading of the image. Mark any single
ambiguous glyph (unclear: X).
Required chat response
Render both images, then state the text — nothing else:


Text in the video: **<RECOVERED TEXT>**
Use absolute local paths so Codex renders the images in chat. Do not claim success
if the program did not run or you did not inspect revealed.png. If the mask has
no letter shapes (just specks / a uniformly dark heatmap), say no text was
recovered — still show the two images.
Troubleshooting (still one run, still two images)
- Weak or empty mask: rerun the SAME decoder once with
--method farneback,
and for high-fps clips add --stride 2. That is the only permitted retry.
- Long video: add
--max-frames 200; a few seconds is enough.
- No Tesseract: fine — read the text from
revealed.png yourself.
Decoder (write to a scratch decode.py only if the bundled one is absent)
import sys, os, shutil
import cv2, numpy as np
VIDEO = sys.argv[1] if len(sys.argv) > 1 else "video.mp4"
OUT = sys.argv[2] if len(sys.argv) > 2 else "out"
os.makedirs(OUT, exist_ok=True)
def frames(path):
cap = cv2.VideoCapture(path)
if not cap.isOpened():
sys.exit(f"cannot open video: {path}")
while True:
ok, f = cap.read()
if not ok:
break
yield cv2.cvtColor(f, cv2.COLOR_BGR2GRAY)
cap.release()
def frame_to_text(mask, heat, pad_frac=0.08):
ys, xs = np.where(mask > 127)
if ys.size == 0:
return mask, heat
y0, y1, x0, x1 = int(ys.min()), int(ys.max()), int(xs.min()), int(xs.max())
hh, ww = mask.shape
pad = int(pad_frac * max(x1 - x0, y1 - y0)) + 8
y0, y1 = max(0, y0 - pad), min(hh, y1 + pad + 1)
x0, x1 = max(0, x0 - pad), min(ww, x1 + pad + 1)
mask, heat = mask[y0:y1, x0:x1], heat[y0:y1, x0:x1]
long_side = max(mask.shape[:2])
if long_side < 1000:
f = min(4.0, 1000.0 / long_side)
size = (int(mask.shape[1] * f), int(mask.shape[0] * f))
mask = cv2.resize(mask, size, interpolation=cv2.INTER_NEAREST)
heat = cv2.resize(heat, size, interpolation=cv2.INTER_CUBIC)
return mask, heat
dis = cv2.DISOpticalFlow_create(cv2.DISOPTICAL_FLOW_PRESET_MEDIUM)
score = prev = prev_smooth = None
drift = np.zeros(2)
for gray in frames(VIDEO):
if prev is not None:
flow = dis.calc(prev, gray, None)
bg = np.median(flow.reshape(-1, 2), axis=0)
residual = flow - bg
mag = float(np.hypot(*bg))
ps = (residual @ (-bg / mag)) if mag > 0.15 else np.hypot(residual[..., 0], residual[..., 1])
ps = np.clip(ps, 0, None).astype(np.float32)
smooth = cv2.GaussianBlur(ps, (31, 31), 0)
if prev_smooth is not None:
(dx, dy), r = cv2.phaseCorrelate(prev_smooth, smooth)
if r > 0.05 and np.hypot(dx, dy) < 30:
drift += (dx, dy)
prev_smooth = smooth
h, w = ps.shape
M = np.float32([[1, 0, -drift[0]], [0, 1, -drift[1]]])
reg = cv2.warpAffine(ps, M, (w, h))
score = reg if score is None else score + reg
prev = gray
if score is None:
sys.exit("fewer than 2 usable frames")
score = np.clip(score, 0, None)
hi = np.percentile(score, 99.5)
norm = np.clip(score / hi * 255, 0, 255).astype(np.uint8) if hi > 0 else score.astype(np.uint8)
norm = cv2.GaussianBlur(norm, (5, 5), 0)
_, mask = cv2.threshold(norm, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)
k = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (7, 7))
mask = cv2.morphologyEx(mask, cv2.MORPH_CLOSE, k)
mask = cv2.morphologyEx(mask, cv2.MORPH_OPEN, k)
h_img, w_img = mask.shape
n, lab, st, _ = cv2.connectedComponentsWithStats(mask)
for i in range(1, n):
x, y, w, h, area = st[i]
band = w >= 5 * h and h <= h_img // 18
at_edge = x <= 2 or x + w >= w_img - 2
if area < mask.size // 20000 or (band and (at_edge or w >= w_img // 3)):
mask[lab == i] = 0
try:
import pytesseract
exe = shutil.which("tesseract")
if exe:
pytesseract.pytesseract.tesseract_cmd = exe
t = pytesseract.image_to_string(cv2.bitwise_not(mask), config="--psm 6").strip()
print("OCR hint (unreliable):", " ".join(t.split()) if t else "(none)")
except Exception:
pass
mask, norm = frame_to_text(mask, norm)
cv2.imwrite(os.path.join(OUT, "revealed_heatmap.png"), norm)
cv2.imwrite(os.path.join(OUT, "revealed.png"), mask)
print("done — wrote revealed.png and revealed_heatmap.png (the only two outputs)")