Mixpeek Logo

    Automated Video Tagging

    Automatically generate descriptive tags for video content using scene analysis, object detection, and taxonomy classification. Each video receives structured labels for scenes, objects, actions, and custom business categories without manual annotation.

    video
    image
    text
    Multi-Tier
    from mixpeek import Mixpeek
    client = Mixpeek(api_key="YOUR_API_KEY")
    # Define tagging taxonomy with category exemplars
    taxonomy = client.taxonomies.create(
    namespace_id="ns_your_namespace",
    name="video_tags",
    taxonomy_type="hierarchical",
    hierarchy=[
    {"node_id": "sports", "collection_id": "col_sports_examples"},
    {"node_id": "cooking", "collection_id": "col_cooking_examples"},
    {"node_id": "technology", "collection_id": "col_tech_examples"},
    {"node_id": "outdoors", "collection_id": "col_outdoors_examples"},
    ]
    )
    # Apply taxonomy to video collection
    client.collections.apply_taxonomy(
    collection_id="col_videos",
    taxonomy_id=taxonomy["taxonomy_id"]
    )
    # Retrieve tagged documents
    docs = client.documents.list(
    collection_id="col_videos",
    filters={"taxonomy_enrichment.category": "sports"}
    )
    for doc in docs["results"]:
    tags = doc.get("taxonomy_enrichment", {})
    print(f"Video: {doc['root_object_id']}, Tags: {tags}")

    Feature Extractors

    Retriever Stages

    aggregate

    Compute aggregations (COUNT, SUM, AVG, etc.) on pipeline results

    reduce

    Use Cases Using This Recipe

    Advanced
    7 min

    Sports Highlights

    Auto-generate highlight reels from full-length sports footage

    24x faster

    Highlight generation time

    Who It's For

    Sports broadcasters, media companies, and content teams processing 100+ hours of live footage weekly

    Intermediate
    8 min

    Media Archive Intelligence

    Transform decades of media archives into searchable, monetizable assets

    12x more content findable

    Archive discoverability

    Who It's For

    Broadcasters, news organizations, film studios, music labels, and cultural institutions managing archives of 10,000+ hours of video, millions of photographs, or extensive audio collections

    Related Recipes & Resources

    Explore these related resources to deepen your understanding and discover more powerful features