VOOZH about

URL: https://apify.com/invideoiq/video-transcript-extractor

⇱ Video Transcript Extractor: YouTube, X, TikTok, Facebook Β· Apify


πŸ‘ Video Transcript Extractor: Youtube, X, Facebook, Tiktok, etc. avatar

Video Transcript Extractor: Youtube, X, Facebook, Tiktok, etc.

Pricing

from $10.00 / 1,000 results

Go to Apify Store

Video Transcript Extractor: Youtube, X, Facebook, Tiktok, etc.

Scrapes transcripts from online video/audio content on multiple plateforms (Youtube, X, ..) in any available language. It delivers outputs in both JSON and LLM-ready formats, making it ideal for analytics, and AI-based applications. Perfect for research and building intelligent conversational agents

Pricing

from $10.00 / 1,000 results

Rating

5.0

(3)

Developer

πŸ‘ InVideoIQ

InVideoIQ

Maintained by Community

Actor stats

4

Bookmarked

65

Total users

8

Monthly active users

3 months ago

Last modified

Share

🎯 Video Transcript Extractor: One API for Every Video Platform

Most transcript tools only work with YouTube. Video Transcript Extractor works everywhere.

Extract clean, structured transcripts from YouTube, X (Twitter), TikTok, Facebook, Dailymotion, Vimeo, Loom, and more through a single, unified API. No switching between tools, no per-platform headaches.

Send a URL. Get back timestamped transcript + rich metadata in seconds.

πŸ’° $0.01 per video Β· 🌍 Multi-language Β· ⚑ High concurrency


✨ Why Teams Choose Video Transcript Extractor

Video Transcript ExtractorTypical Competitor
Platforms supported7+ (YouTube, X, TikTok, Facebook, Vimeo, Dailymotion, Loom)YouTube only
Output formatTimestamped segments + LLM-ready plain textSegments only
Video metadataTitle, description, thumbnail, duration, views, likes, channel, publish dateTranscript only
SpeedFast async processing, high concurrency, no rate limitsSequential or rate-limited
Language supportMulti-language with auto-detectionLimited
Proxy handlingBuilt-in residential proxies with smart fallbackManual or none

πŸ“Š What Data Can Video Transcript Extractor Extract?

Every request returns two transcript formats plus rich metadata:

  • text β€” The full transcript as a single plain string, ready to feed into any LLM or NLP pipeline
  • transcript β€” Timestamped segments with precise start/end times, ideal for indexing, search, and UI display
  • Video metadata β€” Title, description, thumbnail, duration, view count, like count, channel info, publish date
  • Language info β€” Available languages and which one was selected
{
"title":"How to Build a Startup in 2026",
"description":"In this video we break down...",
"duration":847,
"thumbnail":"https://i.ytimg.com/vi/abc123/maxresdefault.jpg",
"view_count":284000,
"like_count":12400,
"published_date":"2026-03-10",
"channel":"TechFounders",
"channel_url":"https://youtube.com/@TechFounders",
"channel_id":"UC1234567890",
"available_languages":["English","French","Spanish"],
"selected_language":"English",
"text":"Welcome back to the channel. Today we're going to talk about...",
"transcript":[
{"text":"Welcome back to the channel.","start":0.0,"end":1.8},
{"text":"Today we're going to talk about...","start":1.8,"end":4.2}
]
}

Note: like_count, channel, channel_url, available_languages, and selected_language are currently available for YouTube videos only.

You can download the dataset extracted by Video Transcript Extractor in various formats such as JSON, CSV, Excel, or HTML directly from the Apify dashboard.


πŸ”— Supported Video Platforms

PlatformNotes
YouTubeLong-form videos, Shorts, auto-generated and manual captions
X (Twitter)Paste the tweet URL containing the video
TikTokPublic videos with available captions
FacebookPublic videos
DailymotionFull support
VimeoFull support
LoomFull support

Also works on many other video hosting sites and media platforms. If it has embedded subtitles, this actor can probably extract them.

Need to transcribe videos that don't have captions (e.g. Instagram, or videos without any subtitle track)? Use our speech-to-text companion actor: Video Transcriber.


πŸ› οΈ How To Extract Video Transcripts Using Video Transcript Extractor

  1. Go to Video Transcript Extractor on Apify
  2. Click "Try for free"
  3. Paste one or more video URLs into the video_urls field β€” you can mix platforms in a single run
  4. (Optional) Set a language code (e.g. "en", "fr") to request a specific transcript language
  5. Click "Start" and wait for the run to finish
  6. Download your transcripts in JSON, CSV, Excel, or HTML from the dataset tab

Run it your way

Because this is an Apify Actor, you also get:

  • API access: Call it programmatically from any language β€” check the API tab for ready-made code examples
  • Scheduling: Set up recurring runs to monitor new video content automatically
  • Integrations: Connect to Zapier, Make, Google Sheets, webhooks, and more
  • Monitoring: Track run history, costs, and results from the Apify dashboard

πŸ“₯ Input

ParameterRequiredDescription
video_urlsYesArray of video URLs. Mix platforms freely in a single request
languageNoLanguage code ("en", "fr", "de"). Leave empty for default language
best_effortNoIf true, returns metadata even when no transcript is available

Advanced YouTube Settings (rarely needed)

ParameterDescription
proxy_countryTwo-letter country code for residential proxy (default: US). Auto-falls back to US if unavailable
get_yt_original_metadataFetch original (non-localized) title and description via YouTube Data API
youtube_api_keyYour own YouTube Data API v3 key. Optional β€” a shared key is provided by default

Input Example

{
"video_urls":[
"https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"https://x.com/elonmusk/status/1234567890",
"https://www.tiktok.com/@user/video/1234567890"
],
"language":"en"
}

Yes, you can mix platforms in a single batch. They all come back in the same format.


πŸš€ Quick Start Code Examples

cURL

curl-X POST "https://api.apify.com/v2/acts/invideoiq~video-transcript-extractor/run-sync?token=YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{"video_urls": ["https://www.youtube.com/watch?v=vl6jn-DdafM", "https://www.youtube.com/watch?v=4czjS9h4Fpg"]}'

Python

import requests
import json
url ="https://api.apify.com/v2/acts/invideoiq~video-transcript-extractor/run-sync?token=YOUR_TOKEN"
data ={
"video_urls":[
"https://www.youtube.com/watch?v=vl6jn-DdafM",
"https://www.youtube.com/watch?v=4czjS9h4Fpg"
]
}
response = requests.post(url, json=data, headers={"Content-Type":"application/json"})
print(json.dumps(response.json(), indent=4, ensure_ascii=False))

JavaScript

const response =awaitfetch(
"https://api.apify.com/v2/acts/invideoiq~video-transcript-extractor/run-sync?token=YOUR_TOKEN",
{
method:"POST",
headers:{"Content-Type":"application/json"},
body:JSON.stringify({
video_urls:[
"https://www.youtube.com/watch?v=vl6jn-DdafM",
"https://www.youtube.com/watch?v=4czjS9h4Fpg",
],
}),
}
);
const data =await response.json();
console.log(data);

πŸ’° How Much Does Video Transcript Extraction Cost?

$10 per 1,000 results (pay per result β€” you are not charged for Apify platform usage, only a fixed price per extraction event).

ScenarioCost
1 video~$0.01
100 videos~$1.00
1,000 videos$10.00
10,000 videos$100.00

On the Apify free plan, you get $5 of platform usage credits per month β€” enough to test the actor and extract transcripts from hundreds of videos before committing to a paid plan.


πŸ“ˆ Use Cases for Video Transcript Extraction

  • RAG pipelines and AI agents β€” Feed video transcripts into your retrieval-augmented generation system. One API call gives you LLM-ready text.
  • Content repurposing β€” Turn YouTube videos, tweets, and TikToks into blog posts, newsletters, or social media threads
  • Market research β€” Monitor what competitors, influencers, or thought leaders say across platforms. Batch-process hundreds of URLs.
  • Accessibility and compliance β€” Generate text versions of video content for accessibility requirements
  • Media monitoring β€” Track brand mentions across video platforms at scale
  • Dataset building β€” Build training datasets from video content across multiple platforms
  • Sentiment analysis β€” Process transcripts through NLP pipelines for opinion mining and brand perception

❓ FAQ

Is it legal to extract video transcripts?

This actor extracts publicly available subtitle tracks and does not access private user data such as email addresses, gender, or location β€” only information that users and platforms have chosen to share publicly. However, results may contain personal data. Personal data is protected by the GDPR in the European Union and by other regulations around the world. You should not extract personal data unless you have a legitimate reason to do so. If you're unsure whether your reason is legitimate, consult your lawyers.

What if a video has no subtitles/captions?

The actor relies on embedded subtitle tracks (manual or auto-generated). If none exist, it returns an error β€” or metadata-only if best_effort is enabled. For videos without any captions, use our Video Transcriber which uses speech-to-text.

Can I specify a transcript language?

Yes. Pass a language code like "en" or "fr" in the language field. If that language isn't available for a given video, you'll get a clear message. When in doubt, leave it empty and the actor returns the default language. For YouTube, check the available_languages field in the output to see what's available.

How many videos can I process at once?

As many as you need. Pass all your URLs in the video_urls array and the actor processes them concurrently with no rate limiting.

Does it work with private or age-restricted videos?

No. The actor can only access publicly available videos with public subtitle tracks.

I'm getting an error for my URL. What's wrong?

Make sure the URL is a complete, direct link to the video (e.g. https://www.youtube.com/watch?v=..., not a shortened or embedded URL). The actor supports direct links from YouTube, X (tweet URLs), TikTok, Facebook, Vimeo, Dailymotion, and Loom.

What is the difference between Video Transcript Extractor and Video Transcript Scraper?

Both extract caption-based transcripts with the same output format. Video Transcript Extractor uses pay-per-result pricing ($10/1,000 results), while Video Transcript Scraper uses a rental model ($19.99/month + usage). Choose whichever pricing model fits your usage pattern.


πŸ”— Related Actors

Need a different pricing model or a different kind of output? Check the rest of the suite:

  • Video Transcript Scraper β€” Rental model, $20/month + usage. Best if you want the same transcript-retrieval workflow under a rental plan.
  • Video Transcriber β€” Speech-to-text for videos that do not already have captions or subtitle tracks.
  • AI Video Data Extractor β€” AI-powered structured data extraction. Define a JSON schema and get back custom structured data from any video.

πŸ’¬ Support

Found a bug or have a feature request? Open an issue and we'll get back to you.

Need a custom workflow or integration? Reach out through the Issues tab β€” we're happy to help tailor the actor to your use case.

You might also like

Video Transcript Scraper: Youtube, X, Facebook, Tiktok, etc.

invideoiq/video-transcript-scraper

Scrapes transcripts from online video/audio content on multiple plateforms (Youtube, X, ..) in any available language. It delivers outputs in both JSON and LLM-ready formats, making it ideal for analytics, and AI-based applications. Perfect for research and building intelligent conversational agents

1.5K

4.4

Tiktok Transcript Scraper/Downloader

scraper-mind/tiktok-transcript-scraper

Extract TikTok video transcripts, captions, and metadata fast with our TikTok Transcript Scraper. Supports batch processing, proxy fallback, and JSON export. Ideal for creators, researchers, and marketers. Just $5 per runβ€”accurate, scalable, and reliable!

98

1.0

Video To Text

truefetch/video-to-text

Transcribe videos from 1,000+ platforms to text β€” auto language detection, timestamps, subtitle file download, and translation to 100+ languages. No file uploads. $0.30 per video.

251

4.9

Video Transcriber: Instagram, X, Facebook, TikTok

invideoiq/video-transcriber

Retrieves transcripts from online video content from multiple plateforms (Instagram, X, ..) using speech-to-text models. It delivers outputs in JSON and LLM-ready formats, making it ideal for analytics, and AI-based applications. Perfect for research and building intelligent conversational agents

798

5.0

Best Tiktok Video Scraper

scrape-creators/best-tiktok-video-scraper

Extract data from chosen tiktoks. Just add a TikTok URL and get TikTok video and profile data: URLs, numbers of shares, followers, hashtags, hearts, video, and music metadata. Export scraped data, run the scraper via API, schedule and monitor runs or integrate with other tools.

πŸ‘ User avatar

Scrape Creators

471

4.3

Best Youtube Transcripts Scraper

scrape-creators/best-youtube-transcripts-scraper

Extract transcripts from YouTube videos. Simply enter video URLs. Get full text, timestamps, and metadata where available. Perfect for research, SEO, and content analysis.

πŸ‘ User avatar

Scrape Creators

1.7K

4.1

TikTok Video Downloader - Download Videos & Metadata

vnx0/tiktok-downloader

Download TikTok videos, extract metadata, and scrape profiles, trending feeds, hashtags, and sounds. Get video files, stats, author info, and music data with one click.

Best Tiktok Ai Transcript Extractor

sian.agency/best-tiktok-ai-transcript-extractor

⚑️ COMPLETE TikTok data package - AI transcript + SRT/VTT subtitles + timestamped segments with speaker diarization + 45 data fields (views, likes, creator stats, hashtags, music, location, content categories). Bulk processing ready. 99%+ accuracy. Turn videos into actionable data instantly!

714

5.0

Best Tiktok Transcripts Scraper

scrape-creators/best-tiktok-transcripts-scraper

Extract spoken transcripts from TikTok videos (where available) with Best TikTok Transcripts Scraper. Just enter video URLs to get transcripts. Perfect for content analysis, AI pipelines, or trend research.

πŸ‘ User avatar

Scrape Creators

1.4K

4.6

X (Twitter) Transcript Extractor

bulletproof/x-twitter-transcript-extractor

🐦 Convert any X (Twitter) video or recorded Space to text. Extract transcripts with timestamps. Outputs JSON, SRT, or plain text. Supports Spaces up to 1 hour. Speech-to-text powered. 14+ languages. No login needed.

82