TED Talk Video Downloader ๐ŸŽฅ avatar
TED Talk Video Downloader ๐ŸŽฅ

Pricing

$19.99/month + usage

Go to Store
TED Talk Video Downloader ๐ŸŽฅ

TED Talk Video Downloader ๐ŸŽฅ

Developed by

EasyApi

EasyApi

Maintained by Community

Extract and download TED talk videos and audio in multiple quality options. Perfect for educational content creators, researchers, and TED talk enthusiasts who need offline access to valuable content. Supports batch processing and provides structured metadata. ๐ŸŽฅ ๐ŸŽง

5.0 (1)

Pricing

$19.99/month + usage

2

Total users

5

Monthly users

2

Runs succeeded

>99%

Last modified

2 months ago

Download videos and audio from TED.com talks with ease! This actor helps you extract downloadable media content from TED talk URLs.

Features โœจ

  • ๐ŸŽฏ Extract video content in multiple qualities (low, medium, high)
  • ๐ŸŽง Download audio-only version of talks
  • ๐Ÿ“Š Detailed metadata including title and duration
  • ๐Ÿš€ Process multiple TED talk URLs in batch
  • โšก Fast and efficient processing
  • ๐Ÿ’พ Structured JSON output

Input Parameters ๐Ÿ“

The actor accepts the following input parameters:

  • links (Array): List of TED talk URLs to process

Output Format ๐Ÿ“‹

The actor outputs JSON format data containing:

  • Original URL
  • Talk title
  • Video duration
  • Available media formats (video/audio)
  • Direct download links for different quality options

Usage ๐Ÿ’ก

  1. Input one or more TED talk URLs
  2. Run the actor
  3. Get structured data with download links
  4. Choose your preferred quality and format

Limitations โš ๏ธ

  • Only works with public TED talk URLs
  • Respects TED.com's terms of service
  • Rate limiting applied to prevent overload

Support ๐Ÿค

If you encounter any issues or have questions, please create an issue.

Input Example

A full explanation of an input example in JSON.

{
"links": [
"https://www.ted.com/talks/julieanna_l_richardson_the_mission_to_safeguard_black_history_in_the_us"
]
}

Output sample

The results will be wrapped into a dataset which you can always find in theย Storageย tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

[
{
"url": "https://www.ted.com/talks/julieanna_l_richardson_the_mission_to_safeguard_black_history_in_the_us",
"result": {
"url": "https://www.ted.com/talks/julieanna_l_richardson_the_mission_to_safeguard_black_history_in_the_us",
"title": "<3",
"source": "ted",
"thumbnail": "",
"duration": 0,
"medias": [
{
"url": "https://download.ted.com/products/153539.mp4?apikey=acme-roadrunner",
"quality": "low",
"extension": "mp4",
"type": "video"
},
{
"url": "https://download.ted.com/products/153540.mp4?apikey=acme-roadrunner",
"quality": "medium",
"extension": "mp4",
"type": "video"
},
{
"url": "https://download.ted.com/products/153541.mp4?apikey=acme-roadrunner",
"quality": "high",
"extension": "mp4",
"type": "video"
},
{
"url": "https://download.ted.com/talks/JulieannaLRichardson_2021X.mp3",
"quality": "audio",
"extension": "mp3",
"type": "audio"
}
],
"type": "multiple",
"error": false,
"time_end": 623
}
}
]