NuvioTV can connect to several third-party services to enrich metadata, surface ratings, scrobble watch progress, and detect content segments automatically. All four integrations are configured from Settings → Integration in Advanced mode. TMDB, MDBList, and Anime-Skip are hidden in Essential mode; Trakt has limited visibility in Essential.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/NuvioMedia/NuvioTV/llms.txt
Use this file to discover all available pages before exploring further.
TMDB, MDBList, and Anime-Skip settings are only accessible in Advanced mode. Their defaults remain active in Essential mode — TMDB metadata and images continue to be fetched, but you cannot override the API key or tune behavior until you switch to Advanced.
Trakt
Scrobble watch progress, sync history, and import Trakt lists into your Library.
TMDB
Poster and backdrop images, metadata enrichment, and cast info. Override the API key for higher rate limits.
MDBList
Overlay additional ratings from IMDb, Trakt, Letterboxd, Rotten Tomatoes, and more on detail pages.
Anime-Skip
Automatic intro and outro skip detection for anime content using content fingerprinting.
Trakt
Trakt is a watch-tracking service. When connected, NuvioTV scrobbles playback progress to your Trakt account, syncs watched history bidirectionally, and can use your Trakt lists as a Library source.What Trakt Enables
- Progress scrobbling: playback position and completion events are sent to Trakt automatically.
- Watch history sync: items marked watched on Trakt appear as watched in NuvioTV’s Continue Watching.
- Library source: your Trakt history, watchlist, and public lists can be imported as Library rows (
LibrarySourceMode.TRAKT). - Comment reviews (
TraktCommentReview): user comments and reviews from Trakt are shown on detail pages. - Public list import (
TraktPublicListSourceResolver): any public Trakt list URL can be added as a catalog source. - More Like This source: Trakt or TMDB can be used as the recommendation engine on detail pages (
MoreLikeThisSourcePreference).
Connecting via OAuth Device Flow
Trakt uses the OAuth device code flow. NuvioTV generates a device code and polls the Trakt API until you authorize the code in a browser. The QR code forhttps://trakt.tv/activate/{code} is generated via QrCodeGenerator and displayed on-screen alongside the user code.
Initiate the Device Flow
The Trakt screen starts in the disconnected state. Select Connect to generate a device code. A QR code and a short alphanumeric user code appear on screen.
Authorize on a Phone or Computer
On any device, open
https://trakt.tv/activate and enter the user code shown on your TV, or scan the QR code directly. Sign in with your Trakt account if needed.Wait for Approval
NuvioTV polls the Trakt API in the background. A countdown timer shows when the code expires. The screen transitions to the connected state automatically once authorization succeeds.
Advanced Trakt Settings
These options are Advanced mode only and appear after a successful connection:| Setting | Description |
|---|---|
Watch progress source (WatchProgressSource) | Use TRAKT progress or NUVIO_SYNC local progress for Continue Watching |
Library source (LibrarySourceMode) | Use Trakt history as the Library source (TRAKT) or local-only (LOCAL) |
| Continue Watching window | Cap the history window to 14, 30, 60, 90, 180, or 365 days, or show all history |
| Comments enabled | Toggle whether Trakt comment reviews appear on detail pages |
More Like This source (MoreLikeThisSourcePreference) | TRAKT or TMDB for the recommendation engine |
TMDB
The Movie Database (TMDB) is NuvioTV’s primary source for poster images, backdrop art, metadata enrichment, and cast information.What TMDB Provides
- Poster and backdrop images for movies and TV shows.
- Metadata: titles, overviews, genres, release dates, runtime.
- Cast and crew credits.
- Modern Home row artwork enrichment.
- Continue Watching card enrichment.
Configuration
TmdbSettingsScreen exposes the following settings in Advanced mode:
| Setting | Description |
|---|---|
enabled | Master toggle; disabling stops all TMDB fetches |
modernHomeEnabled | Use TMDB artwork in the Modern home layout |
enrichContinueWatching | Fetch TMDB metadata for Continue Watching cards |
language | Preferred metadata language from AVAILABLE_TMDB_LANGUAGES |
useArtwork | Fetch poster/backdrop images from TMDB |
useBasicInfo (description, genres, rating), useDetails (runtime, status, country), useReleaseDates, useCredits (cast and crew), useProductions (production companies), useNetworks (network logos), useEpisodes (episode titles and thumbnails), useTrailers (when trailer playback is enabled by build policy), useMoreLikeThis (recommendations), and useCollections (movie collection groupings).
Default API access: NuvioTV includes built-in TMDB API access. You can override this with a personal TMDB API key for higher rate limits. Enter your key in Settings → Integration → TMDB → API Key. Personal keys are subject to TMDB’s standard rate limits per their developer agreement.
MDBList
MDBList is a third-party aggregator that provides additional ratings from multiple sources in a single API call. NuvioTV uses MDBList to display a ratings overlay on detail pages.What MDBList Provides
MDBList overlays individual score rows sourced from:| Source | Toggle |
|---|---|
| IMDb | showImdb |
| Trakt | showTrakt |
| TMDB | showTmdb |
| Letterboxd | showLetterboxd |
| Rotten Tomatoes | showTomatoes |
| Audience Score | showAudience |
| Metacritic | showMetacritic |
MDBListRatings domain model.
Configuration
MDBList requires a personal API key from mdblist.com. NuvioTV does not bundle a shared MDBList key.- Create a free account at mdblist.com and copy your API key from the account dashboard.
- In NuvioTV, navigate to Settings → Integration → MDBList (Advanced mode only).
- Enable MDBList (
mdblist_enabledtoggle). - Enter your API key. The key is masked after entry (
maskApiKey()). - Toggle which rating sources you want displayed.
MDBListSettings domain model stores the key and per-source preferences. This entire settings screen is hidden in Essential mode.
Anime-Skip
Anime-Skip provides automatic intro, outro, and transition segment detection for anime content. When a matching segment is detected, a skip button appears in the NuvioTV player.How It Works
NuvioTV sends content fingerprint data to the Anime-Skip API, which returns timed segment data (intro start/end, outro start/end, etc.) for the current episode. This data is used to:- Show a Skip Intro button in the player when the playhead enters a detected segment.
- Optionally auto-skip segments when
autoSkipSegmentTypetoggles are enabled in Advanced playback settings.
skipIntroEnabled flag in playback settings. Anime-Skip segment data augments what the button reacts to; the button itself is a core player feature visible in both modes.
Configuration
Anime-Skip requires a client ID obtained from anime-skip.com. The client ID authenticates API requests from your installation.- Register a client application at anime-skip.com to obtain a client ID.
- In NuvioTV, navigate to Settings → Integration → Anime-Skip (Advanced mode only).
- Enable Anime-Skip (
animeskip_enabledtoggle). - Enter your client ID via the Client ID row. The value is masked after entry (
maskClientId()). - NuvioTV validates the client ID against the Anime-Skip API before saving. An invalid ID shows a toast error.
AnimeSkipSettingsContent composable manages this flow. The client ID and enabled state are stored separately:
