# Audio Transcribe Speech English Transcriber

**Use case:** 

Transcribe English speech audio into accurate text from a public audio URL. Returns the audio reference and full transcription exported to JSON.

## Input

```json
{
  "audioFileUrl": [
    "https://upload.wikimedia.org/wikipedia/commons/e/e9/Mia_Love_speaks_in_opposition_to_the_Joint_Comprehensive_Plan_of_Action.ogg"
  ],
  "language": "en"
}
```

## Output

```json
{
  "audioReference": {
    "label": "Audio Reference",
    "format": "link"
  },
  "transcription": {
    "label": "Transcription",
    "format": "text"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Audio Transcriber](https://apify.com/parseforge/audio-transcriber) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/audio-transcriber) to learn more, explore other use cases, and run it yourself.