Use this file to discover all available pages before exploring further.
VOD assets on Livepeer are video files that the network transcodes into ABR HLS for playback. Upload a source file or provide a URL; Livepeer produces a set of renditions and a playback URL usable with any HLS player or the @livepeer/react Player component.
Once asset.status.phase === 'ready', the asset has a playbackUrl and a playbackId. Pass playbackId to the @livepeer/react Player:
import { Player } from '@livepeer/react';export function VideoPlayer({ playbackId }) { return ( <Player playbackId={playbackId} showTitle={false} muted /> );}
The Player handles ABR selection, HLS parsing, and WebRTC fallback automatically. For non-React environments, the HLS manifest at playbackUrl works with hls.js or any ABR player.