# Export MIT OCW timestamped transcript segments

**Use case:** 

Get MIT OCW transcripts as timestamped segment arrays (start/end + text) plus segment count. Ideal for search, indexing and clipping.

## Input

```json
{
  "courseUrls": [
    "https://ocw.mit.edu/courses/18-06sc-linear-algebra-fall-2011/"
  ],
  "transcriptFormats": [
    "segments"
  ],
  "maxLectures": 15,
  "monitorMode": false,
  "alertOnNewLecture": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "course_title": {
    "label": "Course",
    "format": "string"
  },
  "lecture_title": {
    "label": "Lecture",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [MIT OpenCourseWare Transcript Scraper — Lectures to Text](https://apify.com/scrapersdelight/mit-ocw-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/mit-ocw-transcript-scraper) to learn more, explore other use cases, and run it yourself.