> ## Documentation Index
> Fetch the complete documentation index at: https://docs.livepeer.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Industry Verticals

> Explore how Livepeer infrastructure supports entertainment, gaming, robotics, analytics, and other real-time AI video verticals.

export const CustomDivider = ({color = "var(--lp-color-border-default)", middleText = "", spacing = "default", style = {}, className = "", ...rest}) => {
  const spacingPresets = {
    default: {
      margin: "24px 0"
    },
    overlap: {
      margin: "-1rem 0 -1rem 0"
    },
    tight: {
      margin: "0 0 -1rem 0"
    },
    section: {
      margin: "0 0 -2rem 0"
    },
    sectionOverlap: {
      margin: "-1rem 0 -2rem 0"
    },
    deepOverlap: {
      margin: "-1rem 0 -1.5rem 0"
    }
  };
  const spacingStyle = spacingPresets[spacing] || spacingPresets.default;
  return <div role="separator" aria-orientation="horizontal" className={className} style={{
    display: "flex",
    alignItems: "center",
    ...spacingStyle,
    fontSize: style?.fontSize || "16px",
    height: "fit-content",
    ...style
  }} {...rest}>
      <span style={{
    marginRight: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
      </span>
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      {middleText && <>
          <Icon icon="circle" size={2} />
          <span style={{
    margin: "0 8px",
    fontWeight: "bold",
    color: color,
    opacity: 0.7
  }}>
            {middleText}
          </span>
          <Icon icon="circle" size={2} />
        </>}
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      <span style={{
    marginLeft: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <span style={{
    display: "inline-block",
    transform: "scaleX(-1)"
  }}>
          <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
        </span>
      </span>
    </div>;
};

export const Subtitle = ({style = {}, text, children, variant = 'default', fontSize = '', fontWeight = '', fontStyle = '', marginTop = '', marginBottom = '', color = '', className = '', ...rest}) => {
  const renderInlineCode = (value, keyPrefix) => {
    return value.split(/(`[^`]+`)/g).map((segment, index) => {
      if (segment.startsWith('`') && segment.endsWith('`')) {
        return <code key={`${keyPrefix}-code-${index}`}>{segment.slice(1, -1)}</code>;
      }
      return segment;
    });
  };
  const renderInlineMarkup = (value, keyPrefix = 'subtitle') => {
    if (typeof value !== 'string') {
      return value;
    }
    return value.split(/(\*\*[\s\S]+?\*\*)/g).map((segment, index) => {
      if (segment.startsWith('**') && segment.endsWith('**')) {
        const inner = segment.slice(2, -2);
        return <strong key={`${keyPrefix}-strong-${index}`}>
            {renderInlineCode(inner, `${keyPrefix}-strong-${index}`)}
          </strong>;
      }
      return renderInlineCode(segment, `${keyPrefix}-${index}`);
    });
  };
  const renderContent = (value, keyPrefix) => {
    if (Array.isArray(value)) {
      return value.map((item, index) => renderContent(item, `${keyPrefix}-${index}`));
    }
    return renderInlineMarkup(value, keyPrefix);
  };
  const variants = {
    default: {
      fontSize: '1rem',
      fontStyle: 'italic',
      color: 'var(--lp-color-accent)',
      marginBottom: 0
    },
    changelog: {
      fontSize: '0.8rem',
      fontStyle: 'normal',
      fontWeight: 700,
      color: 'var(--lp-color-text-primary)',
      marginBottom: 0
    }
  };
  const base = variants[variant] || variants.default;
  return <span className={className} style={{
    ...base,
    ...fontSize ? {
      fontSize
    } : {},
    ...fontWeight ? {
      fontWeight
    } : {},
    ...fontStyle ? {
      fontStyle
    } : {},
    ...marginTop ? {
      marginTop
    } : {},
    ...marginBottom ? {
      marginBottom
    } : {},
    ...color ? {
      color
    } : {},
    ...style
  }} {...rest}>
      {renderContent(text, 'text')}
      {renderContent(children, 'children')}
    </span>;
};

export const ScrollBox = ({children, maxHeight = 300, showHint = true, ariaLabel = "Scrollable content", style = {}, className = "", ...rest}) => {
  const contentRef = useRef(null);
  const [isOverflowing, setIsOverflowing] = useState(false);
  useEffect(() => {
    const checkOverflow = () => {
      if (contentRef.current) {
        const maxHeightPx = typeof maxHeight === "number" ? maxHeight : parseInt(maxHeight, 10) || 300;
        setIsOverflowing(contentRef.current.scrollHeight > maxHeightPx);
      }
    };
    checkOverflow();
    window.addEventListener("resize", checkOverflow);
    return () => window.removeEventListener("resize", checkOverflow);
  }, [maxHeight, children]);
  return <div className={className} style={{
    position: "relative",
    ...style
  }} {...rest}>
      <div ref={contentRef} role="region" tabIndex={0} aria-label={ariaLabel} style={{
    maxHeight: typeof maxHeight === "number" ? `${maxHeight}px` : maxHeight,
    overflowY: "auto",
    paddingRight: 4
  }} onScroll={e => {
    const el = e.target;
    const atBottom = el.scrollHeight - el.scrollTop <= el.clientHeight + 10;
    const hint = el.parentNode.querySelector("[data-scroll-hint]");
    if (hint) hint.style.opacity = atBottom ? "0" : "1";
  }}>
        {children}
      </div>
      {showHint && isOverflowing && <div data-scroll-hint style={{
    fontSize: 11,
    color: "var(--lp-color-text-muted)",
    textAlign: "center",
    marginTop: 8,
    transition: "opacity 0.2s"
  }}>
          Scroll for more ↓
        </div>}
    </div>;
};

Livepeer’s real-time open infrastructure is versatile enough to power use cases across multiple industry verticals.

As real-time media and AI converge, the Livepeer Network provides a competitive, low-latency compute layer for everything from entertainment and gaming to robotics and analytics.

<CustomDivider />

<Columns cols={2}>
  <Card title="Media & Entertainment" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/MEDIA.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=19acb957fd7765f6304668ec7540c96f" width="1920" height="1080" data-path="snippets/assets/media/images/industry/MEDIA.png">
    <Subtitle text="Events & Conferences" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      In the media and entertainment sector, creators are beginning to augment live content with AI for more immersive experiences.

      <br />

      <br />

      Livepeer’s tech enables real-time style transfer, filters, and AR effects on livestreams without noticeable latency.

      <br />

      <br />

      For example, the Daydream platform (built on Livepeer’s AI pipeline) can transform a performer’s webcam feed into an animated, stylized world instantly – like a virtual costume change or “vibe shift” – using just a text prompt.

      <br />

      This kind of on-the-fly generative video unlocks new creative expression in concerts, virtual production, and live shows.
      Crucially, Livepeer provides the GPU muscle and video stack to do this at high frame rates and quality, so artists can wow audiences with AI-driven visuals live.

      <Tip>
        Performers and streamers have used Livepeer-based tools (like Daydream) to remix themselves live, from changing outfits and backdrops to applying artistic filters, all without handing control over to a centralised platform. <br />
        The AI does the magic – Livepeer makes it real-time!
      </Tip>
    </ScrollBox>
  </Card>

  <Card title="Gaming & Interactive Worlds" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/GAMING.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=f8dfd9e890f1ee44793b232ade66a4e0" width="1920" height="1080" data-path="snippets/assets/media/images/industry/GAMING.png">
    <Subtitle text="Trillion-dollar Opportunity" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      The gaming industry is poised for a revolution as AI-generated content enters gameplay.

      <br />

      <br />

      Real-time world generation and AI-driven NPCs can create unique, personalized gaming experiences on the fly – but they demand enormous compute.

      <br />

      <br />

      Livepeer’s network shines here by providing low-latency GPU processing at scale.

      <br />

      <br />

      Imagine a multiplayer game where each new area or level is generated live based on player prompts.

      <br />

      Every gamer that joins spawns a new AI video stream, and the Livepeer Network spins up hundreds or thousands of GPUs to render those worlds concurrently.

      <br />

      <br />

      This isn’t sci-fi – it’s the kind of workflow Livepeer is being built to power. By offloading heavy real-time rendering and inference to a decentralised GPU pool, game developers can focus on design while ensuring every player sees their universe come to life with minimal lag.

      <br />

      Livepeer could be the backbone for the next generation of AI-augmented games, where interactive streaming and gameplay merge.

      <Tip>
        Even NVIDIA’s leaders believe “world model” AI for simulations (like robotics and games) is a trillion-dollar opportunity, with potential economic impact north of \$100 trillion. <br />
        Livepeer’s open GPU infrastructure offers a way to support this burgeoning market by serving as the real-time engine for AI-generated worlds.
      </Tip>
    </ScrollBox>
  </Card>

  <Card title="Robotics & Realtime Vision" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/ROBOTICS.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=22b21eb0dcf99fce91690e09016e5ee5" width="1920" height="1080" data-path="snippets/assets/media/images/industry/ROBOTICS.png">
    <Subtitle text="Subtitle" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      Robotics and autonomous systems increasingly rely on real-time video feeds and AI vision models to understand their environment.

      <br />

      <br />

      Livepeer provides a globally distributed, permissionless compute layer ideal for robotics applications that need to process video with low latency.

      <br />

      <br />

      For instance, autonomous drones or industrial robots could stream their camera feed into Livepeer, where custom vision models (object detection, SLAM, etc.) run live and send results back in milliseconds.

      <br />

      <br />

      Traditional cloud GPU services may introduce too much latency or cost for these scenarios, whereas Livepeer’s network can run inference at the edge, on demand, pay-per-use.

      <br />

      <br />

      This is especially useful for robotics startups or research projects that need scalable video AI without investing in massive GPU fleets. As world-model AI advances, robots will even generate synthetic video (simulations of future states or “imagination”) – a workload Livepeer is well suited for.

      <br />

      <br />

      The open marketplace of GPU operators can also drive down costs, helping robotics innovators deploy at scale. It’s a natural fit: robots get smarter vision and control, and Livepeer supplies the real-time compute they need.
    </ScrollBox>
  </Card>

  <Card title="Data Analytics & BI" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/BI.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=17828da86e803d5cd93ff95fc0637f1a" width="1920" height="1080" data-path="snippets/assets/media/images/industry/BI.png">
    <Subtitle text="Subtitle" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      Video is a goldmine of data, and Livepeer is enabling a new wave of real-time video analytics.

      <br />

      <br />

      In fields like finance, marketing, and operations, organisations want to derive insights from live video streams instantly – whether it’s understanding customer behaviour in a store or analysing live drone footage for crop health.

      <br />

      <br />

      With Livepeer, developers can feed streams into AI models (for example, an image recognition or event detection pipeline) and get results on the fly.

      <br />

      This means instant insights and decision-making.

      <br />

      <br />

      A great example is in sports analytics: live game footage can be processed to track players, analyse formations, and update statistics live.

      <br />

      Historically, only top-tier teams with big budgets had access to such live analysis, but with open-source models and Livepeer’s cheap, scalable compute, even a high school coach could get live stats from a game feed.

      <br />

      <br />

      Beyond sports, the same idea extends to any business intelligence – from monitoring retail foot traffic to analysing assembly line video for quality control.

      <br />

      <br />

      Livepeer’s network handles the heavy GPU lifting, so businesses can plug in their video sources and models and start seeing programmatic insights live.

      <Tip> Livepeer is turning video streams into live data streams for analytics dashboards. </Tip>

      <Tip>
        Use case: A retail analytics firm can deploy a Livepeer Gateway with a custom computer vision model (via BYOC) to thousands of store cameras. <br />
        They’d get real-time counts of shoppers, heatmaps of movement, and alert on suspicious behaviour – all processed at the edge, with no on-prem GPU servers needed.
      </Tip>
    </ScrollBox>
  </Card>

  <Card title="Digital Twins & Simulation" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/DIGITWIN.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=3eaea69b8395f637d9cc2347aee9d25f" width="1920" height="1080" data-path="snippets/assets/media/images/industry/DIGITWIN.png">
    <Subtitle text="Subtitle" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      Digital twins – virtual replicas of physical systems – are becoming essential for industries like manufacturing, urban planning, and energy. They rely on real-time data and simulations to mirror the state of their physical counterparts.

      <br />

      <br />

      Livepeer can serve as the real-time video engine for digital twins, processing live feeds from sensors and running simulations that generate video outputs.

      <br />

      For example, a smart factory could have a digital twin that visualizes the production line in real time, with video streams showing machine status, worker activity, and inventory levels. AI models could analyse the video to predict maintenance needs or optimise workflows.

      <br />

      <br />

      In urban planning, a city’s digital twin could use live video from traffic cameras and drones to simulate traffic flow, pedestrian movement, and environmental conditions, helping planners make informed decisions.

      <br />

      <br />

      Energy companies could use digital twins of power plants or grids, with live video feeds showing equipment status and simulations predicting performance under different conditions.

      <br />

      <br /> Livepeer’s ability to handle real-time video processing at scale makes it an ideal infrastructure layer for these complex, data-rich simulations. It allows digital twin developers to focus on the modeling and visualisation, while Livepeer provides the GPU horsepower to keep everything running smoothly in real time.
    </ScrollBox>
  </Card>

  <Card title="Social Media" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/SOCIAL.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=42ac0215cf3107cdbf3cee8d69f286ad" width="1920" height="1080" data-path="snippets/assets/media/images/industry/SOCIAL.png">
    <Subtitle text="Subtitle" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      Unlike traditional social media platforms that control the algorithms and data, Livepeer enables decentralised social networks where users can apply real-time AI filters and effects to their video content without intermediaries.

      <br />

      <br />

      For example, a Livepeer-based social app could let users stream live video with on-the-fly style transfer, background replacement, or AR effects powered by AI models running on the Livepeer Network. This would allow for more creative expression and personalized content without relying on a centralised platform’s features or algorithms.

      <br />
    </ScrollBox>
  </Card>

  <Card title="Science & Research" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/SCIENCE.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=e4ea624763866af16dba3c26b6f92a69" width="1920" height="1080" data-path="snippets/assets/media/images/industry/SCIENCE.png">
    <Subtitle text="Subtitle" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      This vertical is one that didn’t even exist a few years ago: using video to generate synthetic data for training AI, and advancing AI research itself.

      <br />

      <br />

      Modern AI models often require immense datasets – and sometimes the best way to get data is to create it.

      <br />

      <br />

      Livepeer’s network can act as a simulation engine that produces endless video data for AI training.

      <br />

      <br />

      For instance, researchers working on autonomous vehicle AI could run thousands of driving simulations (virtual cars driving in virtual cities) in parallel on Livepeer GPUs, streaming the footage and sensor data back as training input.

      <br />

      <br />

      Similarly, generative AI researchers can use Livepeer to power experiments in video generation models, scaling up inference across many GPUs to iterate faster.

      <br />

      <br />

      Livepeer’s open, permissionless nature is a boon here: any lab or even indie researcher with some ETH can tap into serious compute power without negotiating cloud contracts.

      <br />

      <br />

      This levels the playing field in AI research and could accelerate breakthroughs. It’s also directly relevant to pursuing AGI (artificial general intelligence) – world-model AIs that learn from simulated video environments could be crucial, and Livepeer is well suited to host those simulations.

      <br />

      <br />

      Livepeer isn’t just serving existing industries; it’s enabling entirely new ones by making massive real-time video workloads feasible for more people. From training robot vision to building the metaverse, if it involves live video and heavy compute, Livepeer’s network can be the engine under the hood.

      <Tip>
        Industry-Standard Latency: Across all these verticals, Livepeer’s goal is to provide industry-leading low latency for real-time AI workflows, matching or beating traditional clouds.

        <br />

        Interactive applications can’t tolerate lag – and Livepeer is continuously optimising to ensure that even complex video AI (chained models, pre/post-processing, etc.) runs as smoothly as a local programme.
      </Tip>
    </ScrollBox>
  </Card>

  <Card title="Montioring & Security" img="https://mintcdn.com/na-36/WllT4mzZyxE_kBKW/snippets/assets/media/images/industry/SECURITY.png?fit=max&auto=format&n=WllT4mzZyxE_kBKW&q=85&s=8934c9cc2ceae9c8e2b4533df045f3a3" width="1920" height="1080" data-path="snippets/assets/media/images/industry/SECURITY.png">
    <Subtitle text="Subtitle" fontSize="0.75rem" />

    <ScrollBox maxHeight={200}>
      Livepeer is equally transformative for monitoring, surveillance, and security verticals.

      <br />

      Traditional CCTV networks record tons of footage that gets analysed after the fact (if at all).

      <br />

      <br />

      By leveraging Livepeer, those video feeds can be analysed live by AI – detecting intruders, identifying hazards, or flagging unusual patterns instantaneously.

      <br />

      <br />

      Because Livepeer’s Orchestrators are distributed globally, a security company can ingest video from cameras anywhere and route it to the nearest GPU nodes for analysis, minimising latency.

      <br />

      <br />

      Example applications include traffic monitoring (with AI spotting accidents or congestion as they happen), safety systems in workplaces (alerting if a worker isn’t wearing protective gear), or public security cameras that automatically track persons-of-interest.

      <br />

      <br />

      Livepeer enables a proactive monitoring approach: instead of storing video and reviewing later, smart models watch the streams 24/7 and notify humans only when needed.

      <br />

      <br />

      This can dramatically improve response times for emergency services or operations teams. And thanks to Livepeer’s cost-efficiency, even city-wide camera networks or large-scale IoT deployments can afford to run continuous video inference. As noted in the Livepeer community, any kind of monitoring – traffic, safety, security, or even real-time trading signals – can be supercharged by open video infra and AI.

      <br />

      <br />

      Livepeer provides the “eyes” (and the brains) for the real-time, AI-monitored world.
    </ScrollBox>
  </Card>
</Columns>
