Skip to content

Commit

Permalink
Shorten URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Swimburger committed Sep 26, 2024
1 parent 706d4f9 commit 15d6626
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var client = new AssemblyAIClient(Environment.GetEnvironmentVariable("ASSEMBLYAI
// Transcribe file at remote URL
var transcript = await client.Transcripts.TranscribeAsync(new TranscriptParams
{
AudioUrl = "https://storage.googleapis.com/aai-web-samples/espn-bears.m4a",
AudioUrl = "https://assembly.ai/espn.m4a",
LanguageCode = TranscriptLanguageCode.EnUs
});

Expand All @@ -108,7 +108,7 @@ If you don't want to wait until the transcript is ready, you can use `submit`:
```csharp
transcript = await client.Transcripts.SubmitAsync(new TranscriptParams
{
AudioUrl = "https://storage.googleapis.com/aai-web-samples/espn-bears.m4a",
AudioUrl = "https://assembly.ai/espn.m4a",
LanguageCode = TranscriptLanguageCode.EnUs
});
```
Expand Down Expand Up @@ -171,7 +171,7 @@ For example, here's how to enable [Speaker diarization](https://www.assemblyai.c
```csharp
var transcript = await client.Transcripts.TranscribeAsync(new TranscriptParams
{
AudioUrl = "https://storage.googleapis.com/aai-web-samples/espn-bears.m4a",
AudioUrl = "https://assembly.ai/espn.m4a",
SpeakerLabels = true
});

Expand Down

0 comments on commit 15d6626

Please sign in to comment.