The seek-preview API is the product you can use this afternoon. The Android TV player below is the reference client we're building on top of it — still in development.
NuvioTV is an open-source, Stremio-style app for Android TV by NuvioMedia. We forked it, wired the Seekr SDK into its scrubber and published a build, so once you've claimed a key you can sideload it and feel the 320×180 thumbnails on a real device. The HUD below is our own reference design for that surface, not a screenshot of the fork.
Pass a title's IMDB or TMDB ID and its video duration. Get back a WebVTT file and 320×180 sprite sheets, served from Cloudflare's edge cache. Your player maps any timecode to a tile using the VTT.
// GET /sprites?imdb_id=tt1234567&duration_ms=7200000// 200 OK · application/json { "media_type": "movie", "tmdb_id": 12345, "title": "Example Movie", "vtt_url": "/sprites/12345/7200000/thumbnails.vtt", "source_duration_ms": 7200000, "scale": 1.000123}// GET /sprites?show_imdb_id=tt7654321&season=2&episode=1&duration_ms=2880000// 200 OK · application/json { "media_type": "series", "show_tmdb_id": 67890, "title": "Nightglass — s02e01", "season": 2, "episode": 1, "episode_title": "Pilot", "vtt_url": "/sprites/series/67890/s02e01/2880000/thumbnails.vtt", "source_duration_ms": 2880000, "scale": 1.0}We're opening the seek-preview API to 200 developers, free for the duration of the preview. One project per key. Confirm your email to claim your slot.