From 15d6626e7ca602a2f06dba4f2b08b72e317619a7 Mon Sep 17 00:00:00 2001 From: Niels Swimberghe <3382717+Swimburger@users.noreply.github.com> Date: Thu, 26 Sep 2024 17:02:51 -0400 Subject: [PATCH] Shorten URLs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4932045..b36e83a 100644 --- a/README.md +++ b/README.md @@ -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 }); @@ -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 }); ``` @@ -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 });