# Facebook Video Content Analysis — Transcript + Metrics

**Use case:** 

Analyze any Facebook video or reel: full transcript plus views, reactions, comments and creator data. Reverse-engineer viral hooks. No code, export CSV/JSON.

## Input

```json
{
  "facebookUrl": "https://www.facebook.com/reel/636216875539019"
}
```

## Output

```json
{
  "transcript": {
    "label": "🤖 AI Transcript",
    "format": "text"
  },
  "normalizedSegments": {
    "label": "🗣️ Transcript Segments",
    "format": "array"
  },
  "words": {
    "label": "🔤 Word-Level Timestamps",
    "format": "array"
  },
  "srtSubtitles": {
    "label": "🎞️ SRT Subtitles",
    "format": "text"
  },
  "vttSubtitles": {
    "label": "🎞️ WebVTT Subtitles",
    "format": "text"
  },
  "detected_language": {
    "label": "🌐 Detected Language",
    "format": "text"
  },
  "status": {
    "label": "✅ Processing Status",
    "format": "text"
  },
  "scrapingDate": {
    "label": "📅 Scraping Date",
    "format": "date"
  },
  "facebookUrl": {
    "label": "🔗 Facebook Reel URL",
    "format": "link"
  },
  "postId": {
    "label": "🏷️ Post ID",
    "format": "text"
  },
  "username": {
    "label": "👤 Username",
    "format": "text"
  },
  "fullName": {
    "label": "📛 Creator Name",
    "format": "text"
  },
  "ownerId": {
    "label": "🏷️ Owner ID",
    "format": "text"
  },
  "profilePicUrl": {
    "label": "🖼️ Profile Picture",
    "format": "image"
  },
  "isVerified": {
    "label": "✔️ Verified",
    "format": "boolean"
  },
  "caption": {
    "label": "📝 Caption",
    "format": "text"
  },
  "mediaType": {
    "label": "🎥 Media Type",
    "format": "text"
  },
  "thumbnailUrl": {
    "label": "🖼️ Thumbnail",
    "format": "image"
  },
  "permalink": {
    "label": "🔗 Permalink",
    "format": "link"
  },
  "reactionCount": {
    "label": "😊 Reactions",
    "format": "text"
  },
  "likeCount": {
    "label": "❤️ Likes",
    "format": "text"
  },
  "commentCount": {
    "label": "💬 Comments",
    "format": "text"
  },
  "viewCount": {
    "label": "👁️ Views",
    "format": "text"
  },
  "duration": {
    "label": "⏱️ Duration (sec)",
    "format": "number"
  },
  "timestamp": {
    "label": "📅 Content Date",
    "format": "date"
  },
  "videoHeight": {
    "label": "📷 Height (px)",
    "format": "number"
  },
  "videoWidth": {
    "label": "📏 Width (px)",
    "format": "number"
  },
  "download_url_hd": {
    "label": "🎥 HD Video URL",
    "format": "link"
  },
  "download_url_sd": {
    "label": "🎥 SD Video URL",
    "format": "link"
  },
  "translatedTranscript": {
    "label": "🌍 Translated Transcript",
    "format": "text"
  },
  "translationTargetLanguage": {
    "label": "🌍 Translation Language",
    "format": "text"
  },
  "processedAt": {
    "label": "⏰ Processed At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Facebook Video & Reel AI Transcript Extractor](https://apify.com/sian.agency/facebook-ai-transcript-extractor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/facebook-ai-transcript-extractor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sian.agency/facebook-ai-transcript-extractor.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
