Skip to content

Commit da77ea5

Browse files
authored
fixed bad links (#608)
1 parent 16b6237 commit da77ea5

File tree

10 files changed

+34
-15
lines changed

10 files changed

+34
-15
lines changed

fern/docs.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ navigation:
8383
- page: Model selection
8484
path: pages/02-speech-to-text/pre-recorded-audio/select-the-speech-model-with-best-and-nano.mdx
8585
slug: select-the-speech-model
86+
- page: Select the region
87+
path: pages/02-speech-to-text/pre-recorded-audio/select-the-region.mdx
88+
slug: select-the-region
8689
- page: Prompting
8790
path: pages/02-speech-to-text/pre-recorded-audio/prompt-engineering.mdx
8891
slug: prompting
@@ -100,6 +103,9 @@ navigation:
100103
path: pages/02-speech-to-text/pre-recorded-audio/custom-spelling.mdx
101104
- page: Word search
102105
path: pages/02-speech-to-text/pre-recorded-audio/word-search.mdx
106+
- page: Set the start and end of the transcript
107+
path: pages/02-speech-to-text/pre-recorded-audio/set-the-start-and-end-of-the-transcript.mdx
108+
slug: set-the-start-and-end-of-the-transcript
103109
- section: Transcription operations
104110
skip-slug: true
105111
contents:
@@ -1555,3 +1561,19 @@ redirects:
15551561
destination: /docs/getting-started/universal-3-pro
15561562
- source: /docs/pre-recorded-audio/prompt-engineering
15571563
destination: /docs/pre-recorded-audio/prompting
1564+
- source: /docs/speech-to-text/pre-recorded-audio/improving-transcript-accuracy
1565+
destination: /docs/pre-recorded-audio/keyterms-prompting
1566+
- source: /docs/speech-to-text/pre-recorded-audio/automatic-language-detection
1567+
destination: /docs/pre-recorded-audio/language-detection
1568+
- source: /docs/pre-recorded-audio/automatic-language-detection
1569+
destination: /docs/pre-recorded-audio/language-detection
1570+
- source: /docs/pre-recorded-audio/improving-transcript-accuracy
1571+
destination: /docs/pre-recorded-audio/keyterms-prompting
1572+
- source: /playground/source
1573+
destination: https://www.assemblyai.com/dashboard/playground
1574+
- source: /docs/speech-to-text/pre-recorded-audio/word-level-timestamps
1575+
destination: /docs/pre-recorded-audio/transcript-export-options
1576+
- source: /docs/pre-recorded-audio/export-paragraphs-and-sentences
1577+
destination: /docs/pre-recorded-audio/transcript-export-options
1578+
- source: /docs/speech-to-text/pre-recorded-audio/set-language-manually
1579+
destination: https://www.assemblyai.com/docs/pre-recorded-audio/language-detection#set-language-manually

fern/pages/02-speech-to-text/pipecat-intro-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ When your voice agent is working well in development, it's time to deploy it to
428428

429429
**Pipecat Cloud**
430430

431-
Pipecat offers a managed cloud service for deploying voice agents at scale. See [Pipecat Cloud](https://pipecat.ai/cloud) for managed infrastructure that handles scaling, monitoring, and deployment automatically.
431+
Pipecat offers a managed cloud service for deploying voice agents at scale. See [Pipecat Cloud](https://www.daily.co/products/pipecat-cloud/) for managed infrastructure that handles scaling, monitoring, and deployment automatically.
432432

433433
**Self-Hosting**
434434

fern/pages/05-guides/automatic-language-detection-workflow.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To complete this tutorial, you need:
2323
- [Python](https://www.python.org/) installed.
2424
- A <a href="https://www.assemblyai.com/dashboard/signup" target="_blank">free AssemblyAI account</a>.
2525

26-
The entire source code of this guide can be viewed [here](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/automatic-language-detection-separate.ipynb).
26+
The entire source code of this guide can be viewed [here](/docs/guides/automatic-language-detection-separate).
2727

2828
## Step-by-step instructions
2929

fern/pages/05-guides/cookbooks/core-transcription/aws_to_aai.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Here are helpful things to know when migrating your audio input handling:
171171

172172
- There's no need to specify the audio format to AssemblyAI - it's auto-detected. AssemblyAI accepts almost every audio/video file type: [here is a full list of all our supported file types](/docs/faq/what-audio-and-video-file-types-are-supported-by-your-api)
173173
- Our SDK handles file upload and transcription automatically in one step
174-
- For S3 files, you'll need to generate pre-signed URLs ([see example in cookbook](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/transcribe_from_s3.ipynb))
174+
- For S3 files, you'll need to generate pre-signed URLs ([see example in cookbook](/docs/guides/transcribe_from_s3))
175175

176176
## Basic Transcription
177177

@@ -223,7 +223,7 @@ Here are helpful things to know about our `transcribe` method:
223223
- The SDK handles polling under the hood
224224
- Transcript is directly accessible via `transcript.text`
225225
- English is the default language if none is specified
226-
- We have a [cookbook for error handling common errors](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/common_errors_and_solutions.md) when using our API.
226+
- We have a [cookbook for error handling common errors](/docs/guides/common_errors_and_solutions) when using our API.
227227

228228
## Adding Features
229229

fern/pages/05-guides/cookbooks/core-transcription/common_errors_and_solutions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Server errors rarely happen but can occasionally occur on our side.
152152
}
153153
```
154154

155-
Our API requires a publicly accessible URL that points to an audio file to retrieve your file for transcription. To transcribe a YouTube video, [check out this Cookbook](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/transcribe_youtube_videos.ipynb).
155+
Our API requires a publicly accessible URL that points to an audio file to retrieve your file for transcription. To transcribe a YouTube video, [check out this Cookbook](/docs/guides/transcribe_youtube_videos).
156156

157157
##### Attempting to transcribe audio files that are not accessible
158158

@@ -167,7 +167,7 @@ Our API requires a publicly accessible URL that points to an audio file to retri
167167
**Solution**:
168168

169169
- **Public Access**: Verify that the audio file URL is publicly accessible. Our servers cannot transcribe audio from private or restricted URLs.
170-
- **Google Drive URLs**: For audio stored on Google Drive, consult our [Google Drive Transcription Cookbook](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/transcribing-google-drive-file.md) to correctly format your URLs for access.
170+
- **Google Drive URLs**: For audio stored on Google Drive, consult our [Google Drive Transcription Cookbook](/docs/guides/transcribing-google-drive-file) to correctly format your URLs for access.
171171
- **Direct Upload**: Utilize the [AssemblyAI Upload endpoint](https://www.assemblyai.com/docs/api-reference/upload) to upload files directly from your device, eliminating the need for a public URL.
172172
- **AWS S3 Pre-signed URLs**: [This Cookbook](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/transcribe_from_s3.ipynb) shows you how to use pre-signed URLs for AWS S3 storage to provide secure, temporary access for transcription without making your files public.
173173

fern/pages/05-guides/cookbooks/core-transcription/dg_to_aai.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Here are helpful things to know about our `transcribe` method:
153153
- The SDK handles polling under the hood
154154
- Transcript is directly accessible via `transcript.text`
155155
- English is the default language and Universal is the default speech model if none is specified
156-
- We have a [cookbook for error handling common errors](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/common_errors_and_solutions.md) when using our API.
156+
- We have a [cookbook for error handling common errors](/docs/guides/common_errors_and_solutions) when using our API.
157157

158158
## Installation
159159

@@ -264,7 +264,7 @@ Here are helpful things to know when migrating your audio input handling:
264264

265265
- There's no need to specify the audio format to AssemblyAI - it's auto-detected. AssemblyAI accepts almost every audio/video file type: [here is a full list of all our supported file types](/docs/faq/what-audio-and-video-file-types-are-supported-by-your-api)
266266
- Our SDK handles file upload and transcription automatically in one step
267-
- For S3 files, you'll need to generate pre-signed URLs ([see example in cookbook](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/transcribe_from_s3.ipynb))
267+
- For S3 files, you'll need to generate pre-signed URLs ([see example in cookbook](/docs/guides/transcribe_from_s3))
268268

269269
## Adding Features
270270

fern/pages/05-guides/cookbooks/core-transcription/google_to_aai.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ transcript = transcriber.transcribe(presigned_url)
149149
Here are helpful things to know when migrating your audio input handling:
150150

151151
- There's no need to specify the audio encoding format when using AssemblyAI - we have a transcoding pipeline under the hood which works on all [supported file types](/docs/faq/what-audio-and-video-file-types-are-supported-by-your-api) so that you can get the most accurate transcription.
152-
- You can submit a local file, URL, stream, buffer, blob, etc., directly to our transcriber. Check out some common ways you can host audio files [here](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/README.md#hosting-audio-files).
152+
- You can submit a local file, URL, stream, buffer, blob, etc., directly to our transcriber. Check out some common ways you can host audio files [here](/docs/guides/transcribe_from_s3).
153153
- You can transcribe audio files that are up to 10 hours long and you can transcribe multiple files in parallel. The default amount of jobs you can transcribe at once is 200 while on the PAYG plan.
154154

155155
## Basic Transcription
@@ -189,7 +189,7 @@ Here are helpful things to know about our `transcribe` method:
189189
- The SDK handles polling under the hood.
190190
- The full transcript is directly accessible via `transcript.text`.
191191
- English is the default language if none is specified.
192-
- We have a [cookbook for error handling common errors](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/common_errors_and_solutions.md) when using our API.
192+
- We have a [cookbook for error handling common errors](/docs/guides/common_errors_and_solutions) when using our API.
193193

194194
## Adding Features
195195

fern/pages/05-guides/cookbooks/core-transcription/oai_to_aai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Here are helpful things to know about our `transcribe` method:
6060
- The SDK handles polling under the hood
6161
- Transcript is directly accessible via `transcript.text`
6262
- English is the default language and Universal is the default speech model if none is specified
63-
- We have a [cookbook for error handling common errors](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/common_errors_and_solutions.md) when using our API.
63+
- We have a [cookbook for error handling common errors](/docs/guides/common_errors_and_solutions) when using our API.
6464

6565
## Installation
6666

fern/pages/05-guides/cookbooks/core-transcription/transcribe_from_s3.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The overall process looks like this:
1818

1919
## Prerequisites
2020

21-
First, you'll need an AssemblyAI account. You can sign up [here](https://app.assemblyai.com/signup) for a free account if you don't already have one.
21+
First, you'll need an AssemblyAI account. You can sign up [here](https://www.assemblyai.com/dashboard/signup) for a free account if you don't already have one.
2222

2323
Next, you'll need to **take note of your AssemblyAI API key**, which you can find on your [account dashboard](https://www.assemblyai.com/app/account) after signing in. It will be on the left-hand side of the screen under _Your API Key_.
2424

fern/pages/05-guides/cookbooks/core-transcription/translate_transcripts.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,3 @@ for sent in transcript.get_sentences():
158158
print()
159159
```
160160

161-
# Further Documentation
162-
163-
Cookbook: [Translate subtitles](https://github.com/AssemblyAI/cookbook/blob/master/core-transcription/translate_subtitles.ipynb)

0 commit comments

Comments
 (0)