MODEL IDmemories-video-age-detection
live

Memories Video Age Detection

Memories AI
by Memories AI

Memories Video Age Detection estimates the age of individuals appearing in video content. It analyzes facial features across video frames to classify age ranges, supporting use cases such as content moderation, age-gated access control, audience analytics, and compliance verification.

Memories Video Age Detection
Age Classification

Subway Violinist Commuter Footage

{
  "taskType": "caption",
  "taskUUID": "f8627935-1f88-4a31-9993-b1ef63fc5306",
  "cost": 0.0014,
  "structuredData": {
    "ageGroup": "21-44",
    "confidence": 0.95
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'memories:2@1',
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/4fe7e756-0f6a-42bc-b89b-22d41cdbbd25.mp4'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "memories:2@1",
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/4fe7e756-0f6a-42bc-b89b-22d41cdbbd25.mp4"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "f8627935-1f88-4a31-9993-b1ef63fc5306",
      "model": "memories:2@1",
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/4fe7e756-0f6a-42bc-b89b-22d41cdbbd25.mp4"
      }
    }
  ]'
runware run memories:2@1 \
  inputs.video=https://assets.runware.ai/assets/inputs/4fe7e756-0f6a-42bc-b89b-22d41cdbbd25.mp4
{
  "taskType": "caption",
  "taskUUID": "f8627935-1f88-4a31-9993-b1ef63fc5306",
  "model": "memories:2@1",
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/4fe7e756-0f6a-42bc-b89b-22d41cdbbd25.mp4"
  }
}
Response
{
  "taskType": "caption",
  "taskUUID": "f8627935-1f88-4a31-9993-b1ef63fc5306",
  "cost": 0.0014,
  "structuredData": {
    "ageGroup": "21-44",
    "confidence": 0.95
  }
}
Age Classification

Backyard Birthday Candle Moment

{
  "taskType": "caption",
  "taskUUID": "5ce65214-8fb9-4625-89a2-606ac890666c",
  "cost": 0.0014,
  "structuredData": {
    "ageGroup": "0-12",
    "confidence": 1
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'memories:2@1',
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/544c8037-a702-4f48-a442-28209db77422.mp4'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "memories:2@1",
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/544c8037-a702-4f48-a442-28209db77422.mp4"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "5ce65214-8fb9-4625-89a2-606ac890666c",
      "model": "memories:2@1",
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/544c8037-a702-4f48-a442-28209db77422.mp4"
      }
    }
  ]'
runware run memories:2@1 \
  inputs.video=https://assets.runware.ai/assets/inputs/544c8037-a702-4f48-a442-28209db77422.mp4
{
  "taskType": "caption",
  "taskUUID": "5ce65214-8fb9-4625-89a2-606ac890666c",
  "model": "memories:2@1",
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/544c8037-a702-4f48-a442-28209db77422.mp4"
  }
}
Response
{
  "taskType": "caption",
  "taskUUID": "5ce65214-8fb9-4625-89a2-606ac890666c",
  "cost": 0.0014,
  "structuredData": {
    "ageGroup": "0-12",
    "confidence": 1
  }
}
Age Classification

Riverside Busker Family Picnic

{
  "taskType": "caption",
  "taskUUID": "006789a3-1656-4087-acb5-5c4ec847848d",
  "cost": 0.0015,
  "structuredData": {
    "ageGroup": "21-44",
    "confidence": 0.95
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'memories:2@1',
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/f1bf9919-7269-40bf-b6bf-24ae45fb225e.mp4'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "memories:2@1",
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/f1bf9919-7269-40bf-b6bf-24ae45fb225e.mp4"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "006789a3-1656-4087-acb5-5c4ec847848d",
      "model": "memories:2@1",
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/f1bf9919-7269-40bf-b6bf-24ae45fb225e.mp4"
      }
    }
  ]'
runware run memories:2@1 \
  inputs.video=https://assets.runware.ai/assets/inputs/f1bf9919-7269-40bf-b6bf-24ae45fb225e.mp4
{
  "taskType": "caption",
  "taskUUID": "006789a3-1656-4087-acb5-5c4ec847848d",
  "model": "memories:2@1",
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/f1bf9919-7269-40bf-b6bf-24ae45fb225e.mp4"
  }
}
Response
{
  "taskType": "caption",
  "taskUUID": "006789a3-1656-4087-acb5-5c4ec847848d",
  "cost": 0.0015,
  "structuredData": {
    "ageGroup": "21-44",
    "confidence": 0.95
  }
}
Age Classification

Suburban Driveway Birthday Gathering

{
  "taskType": "caption",
  "taskUUID": "61f0ac16-afab-444c-b808-cf5b095c45bb",
  "cost": 0.0015,
  "structuredData": {
    "ageGroup": "0-12",
    "confidence": 1
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'memories:2@1',
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/708edaeb-97b6-45b2-96fa-73ac47e336d6.mp4'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "memories:2@1",
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/708edaeb-97b6-45b2-96fa-73ac47e336d6.mp4"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "61f0ac16-afab-444c-b808-cf5b095c45bb",
      "model": "memories:2@1",
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/708edaeb-97b6-45b2-96fa-73ac47e336d6.mp4"
      }
    }
  ]'
runware run memories:2@1 \
  inputs.video=https://assets.runware.ai/assets/inputs/708edaeb-97b6-45b2-96fa-73ac47e336d6.mp4
{
  "taskType": "caption",
  "taskUUID": "61f0ac16-afab-444c-b808-cf5b095c45bb",
  "model": "memories:2@1",
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/708edaeb-97b6-45b2-96fa-73ac47e336d6.mp4"
  }
}
Response
{
  "taskType": "caption",
  "taskUUID": "61f0ac16-afab-444c-b808-cf5b095c45bb",
  "cost": 0.0015,
  "structuredData": {
    "ageGroup": "0-12",
    "confidence": 1
  }
}