惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
博客园 - 【当耐特】
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
D
Docker
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
罗磊的独立博客
小众软件
小众软件
A
About on SuperTechFans
MyScale Blog
MyScale Blog
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
C
Check Point Blog
L
LangChain Blog

Mux Blog - Video technology and more

Mux Robots made our video editor’s life easier | Mux How Firecrawl helps our sales team build custom product demos | Mux Queuing Mux Robots Directives With Laravel | Mux Use any* LLM with @mux/ai | Mux An agent is only as good as its harness | Mux Getting started with Mux Robots just got easier (and cheaper) | Mux Dev Talks: Building Automated AI Workflows With Mux Robots Directives API | Mux Track what renditions your viewers are watching: Introducing Playing time by rendition | Mux It’s one rendition. What could it cost? | Mux Domo arigato, Mux Roboto: stream.new's road to Robots | Mux Is this video mostly of feet? (and other useful things you might want to ask about your video) | Mux When all their videos disappeared, Mux saved the day | Mux The broadcast squeezeback, rebuilt with CSS Grid and WebVTT | Mux How Mux chooses a CDN in 9.9ms | Mux How Disciple lowered its video costs with Mux | Mux New Mux Robots workflows: Better captions, dubbed audio, and deeper insights | Mux How Cutsio is making massive video libraries searchable | Mux Making it easier for agents to understand video: Introducing Find Scenes and Shots | Mux How Mux detects shot boundaries | Mux React Native needs a new video player | Mux Protect your prod environment: New rate limit controls | Mux Mux Robots Directives: less plumbing, more automation | Mux Fine-tuning a multimodal model for video intelligence | Mux How Mux helped Fuertafit make smarter product decisions | Mux Using Mux Robots to organize my archive of 90s-era VHS home videos | Mux The death of the to-do app | Mux One click content moderation dashboard with Mux Robots | Mux Introducing Mux Robots: Hosted AI workflows for Mux Video | Mux How Wellfound built AI video interviews in a weekend | Mux Simple pricing doesn't work for infrastructure | Mux
How to generate the best possible title, description, and...
https://www.mux.com/team/dylan-jhaveri · 2026-08-13 · via Mux Blog - Video technology and more

Summarizing a video is easy, right? Just chuck the transcript to an LLM and ask for a title, description, and tags.

To be honest with you, yes, pretty much. That will give you something, but it’s likely going to smell like AI and when you actually look at the output, you’ll ask yourself: Do I want to show this to my users? Is this title actually a good title for my video? Do these tags even make sense?

And then you get problems like: I have a tag for funny and for comedy, why do I have that? That should be the same thing.

This is how you take Mux Robots from a plaything, an experiment, into an actual production workflow that delivers value to your users.

Let’s dive into how you can use the Mux Robots Summarize workflow to generate video titles, descriptions, and tags that you are excited to put in front of your users.

LinkStart with tone

The baseline input is tone — that gets set up front, and you can choose from:

  • neutral for straightforward, factual analysis
  • playful for witty/conversational copy — for social media, for example
  • professional for polished, executive-level business language — for something like a report or an investor update

What you are going to get back is:

  • title
  • description
  • tags (defaults to 10)

Summarize is based on @mux/ai, and we run and publish evals you can check out here.

LinkStart by providing some basic guidance

The first steps of basic guidance you can provide are:

  • title_length
  • description_length
  • tag_count (default 10)
  • language_code / output_language_code – if you have multiple text tracks

That tunes the basic shape, and you’re still getting the default output when it comes to the actual content.

LinkUse output_steering options for granular control

This is where you can really make the output your own:

  • summary_style (concise, detailed or editorial)
  • audience to provide context on who the audience is, which will nudge the model toward the optimal tone
  • brand_terms to make sure spelling and capitalization is correct for words that you wouldn't find in the dictionary
  • tag_taxonomy
    • name the name of this group of tags, for example "product categories"
    • values the list of tags to choose from
      • label
      • description
      • aliases

LinkLet’s use a NASA space video example

Say you're running a space-mission video archive. Your users browse by topic, so your tags need to come from a fixed set.

Here's NASA's five-minute Artemis overview, How We Are Going to the Moon, run through Summarize with the defaults:

bash

mux robots summarize $ASSET_ID --wait

Title: NASA Artemis Mission Overview

Description: This overview explains NASA's Artemis program for returning humans to the moon. It highlights the Orion spacecraft, the Space Launch System rocket, and the use of the Gateway station in lunar orbit to facilitate lunar landings, scientific research, and preparation for future missions to Mars.

Tags:

  • artemis
  • nasa
  • moon
  • orion
  • space launch system
  • gateway
  • lunar mission
  • space exploration
  • rocket
  • astronauts

All of this is accurate and appropriate. Nothing is wrong here. A lot of what you want depends on the context of your product and how the tags are used. Are you using the tags for embeddings, search, and indexing? Or are you showing these tags to end users? Both have slightly different needs.

If you are a general purpose UGC platform where users are uploading all kinds of videos, those tags might be perfect. But if you are specifically operating a space-mission video archive, where all of your videos are roughly space related, then tags like space exploration and rocket are not so helpful.

Now the steered version. Same video, same job, updated request params.

We’re adding:

  • Guidance for title_length
  • Guidance for description_length
  • A target tags_count, because we show these tags to the user and don’t want to overwhelm them.
  • editorial summary style, because that’s the kind of vibe our video archive platform has.
  • Guidance about the audience and what they are doing.
  • Specific tag taxonomy that we already use internally. We had a separate Claude agent run through all of our written content and video archives to suggest a good tagging taxonomy which we reviewed to make sure it was exactly what we wanted.

json

{
  "tone": "professional",
  "title_length": 12,
  "description_length": 60,
  "tag_count": 6,
  "output_steering": {
    "summary_style": "editorial",
    "audience": "Space fans browsing a mission video archive, deciding what to watch next",
    "brand_terms": ["NASA", "Artemis", "Orion", "Space Launch System", "Gateway"],
    "tag_taxonomy": {
      "name": "Mission archive topics",
      "values": [
        {
          "label": "Moon & Artemis",
          "description": "Lunar exploration: the Artemis program, lunar landers, and Moon science",
          "aliases": ["lunar", "Moon missions", "Artemis program"]
        },
        {
          "label": "Rockets & Launch",
          "description": "Launch vehicles, boosters, engines, and launch operations",
          "aliases": ["SLS", "launch vehicle", "liftoff", "boosters"]
        },
        {
          "label": "Spacecraft & Hardware",
          "description": "Crew capsules, space stations, and mission hardware like Orion and Gateway",
          "aliases": ["Orion", "capsule", "Gateway", "space station"]
        },
        {
          "label": "Mars & Deep Space",
          "description": "Mars exploration and missions beyond the Moon",
          "aliases": ["Mars missions", "deep space", "red planet"]
        }
      ],
      "allow_other": false
    }
  }
}

Let’s call that file steering.json.

bash

mux robots summarize $ASSET_ID -f steering.json --wait

Title: NASA Artemis Mission Overview

Title: Artemis: The Path to the Moon and Beyond

Description: This overview explains NASA's Artemis program for returning humans to the moon. It highlights the Orion spacecraft, the Space Launch System rocket, and the use of the Gateway station in lunar orbit to facilitate lunar landings, scientific research, and preparation for future missions to Mars.

Description: An overview of the Artemis program, detailing the mission architecture designed to establish a long-term human presence on the Moon as a foundational step for future Mars exploration. This analysis covers the integrated systems approach, utilizing the Orion spacecraft, the Space Launch System rocket, and the orbital Gateway station to enable sustainable lunar surface operations and deep space capability development.

Tags:

  • artemis
  • nasa
  • moon
  • orion
  • space launch system
  • gateway
  • lunar mission
  • space exploration
  • rocket
  • astronauts

Tags:

  • Moon & Artemis
  • Spacecraft & Hardware
  • Rockets & Launch

LinkThe 3 things that happened here

  1. The tags are ours now. Every tag is mapped to the canonical label. An important bit here was the aliases which collapsed the terms like "SLS", "liftoff", and "launch vehicle" into one Rockets & Launch tag instead of three near-duplicates.
  2. No spelling mistakes for brand terms: Artemis, Orion, and Space Launch System are written precisely the way NASA writes them. This is also very handy for names.
  3. The copy is aligned to the audience and summary_style.

This is how you take Mux Robots summarize and tagging and guide it to give you the exact output you want.

LinkGive this to your agent

If you’re like me, you’ll want to try and level this up a step. Instead of me hand-tuning and tweaking the output steering params, I’m going to fire up my coding agent to give this a first pass. After I get some feedback I’ll probably tweak the final steering parameters, but this gives me a quick way to iterate.

Try handing this prompt to your agent to help it figure out the best output steering parameters.

  1. Run a coding agent session in the context of your project, so it has context of what your application is, what it does, who uses it, and how your videos are used.
  2. Install the Mux CLI for your agent to use.
  3. Give it a prompt along these lines.

prompt for tuning Robots summarize output

I want to start using Mux Robots to generate titles, descriptions, and tags for my videos. See details here: https://www.mux.com/docs/guides/robots-summarize

Consider how we currently use videos, how we plan to use videos, and what kind of titles, descriptions, and tags we currently show, if any, and how those could be improved. Run a few isolated tests with different parameters and output_steering options to determine the exact parameters we should set on the summarize job when we run this for all of our videos. Poke around and make a plan, and then ask me questions before you get started. As you start to experiment with different settings, summarize what you are seeing, give me an easy way to review it, then give me your best recommendation, and ask me to confirm the final decision.

Leave your wallet
where it is

No credit card required to get started.