YouTube Video Subtitles (captions) Scraper avatar
YouTube Video Subtitles (captions) Scraper
Try for free

2 days trial then $14.99/month - No credit card required now

View all Actors
YouTube Video Subtitles (captions) Scraper

YouTube Video Subtitles (captions) Scraper

genial_candlestand/youtube-subtitles-scraper
Try for free

2 days trial then $14.99/month - No credit card required now

Extract subtitles (captions) from one or multiple YouTube videos. Download YouTube video subtitles (captions) as a HTML, JSON, CSV, Excel, or XML doc.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        "https://www.youtube.com/watch?v=dzjS9iYHbuU",
12        "https://www.youtube.com/watch?v=yTRHomGg9uQ"
13    ],
14    "language": "en"
15};
16
17(async () => {
18    // Run the Actor and wait for it to finish
19    const run = await client.actor("genial_candlestand/youtube-subtitles-scraper").call(input);
20
21    // Fetch and print Actor results from the run's dataset (if any)
22    console.log('Results from dataset');
23    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
24    const { items } = await client.dataset(run.defaultDatasetId).listItems();
25    items.forEach((item) => {
26        console.dir(item);
27    });
28})();
29
30// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 19 monthly users
  • 4 stars
  • 77.2% runs succeeded
  • 8.3 hours response time
  • Created in Jul 2023
  • Modified 27 days ago
Categories