Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix broken doc links #4556

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/docs/docs/videos/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const MyComp: React.FC = () => {

## Trimming

By using the [`startAt`](/docs/offthreadvideo#startat) prop, you can remove the first few seconds of the video.
By using the [`startFrom`](/docs/offthreadvideo#startfrom) prop, you can remove the first few seconds of the video.
In the example below, the first two seconds of the video are skipped (assuming a composition FPS of 30).

```tsx twoslash
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/docs/webcodecs/convert-media.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ await convertMedia({

## License

[See notes about `@remotion/webcodecs`](/docs/webcodecs#license).
[See notes about `@remotion/webcodecs`](/docs/webcodecs#-license-disclaimer).

## See also

Expand Down
4 changes: 2 additions & 2 deletions packages/docs/docs/webcodecs/track-transformation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The enums `ConvertMediaVideoCodec` and `ConvertMediaAudioCodec` can be imported

## Checking if a track can be copied

To check if it is possible to return `{"type": "copy"}`, you can use the [`canCopyVideoTrack()`](/docs/webcodecs/convert-media#cancopyvideotrack) and [`canCopyAudioTrack()`](/docs/webcodecs/convert-media#cancopyaudiotrack) APIs.
To check if it is possible to return `{"type": "copy"}`, you can use the [`canCopyVideoTrack()`](/docs/webcodecs/can-copy-video-track) and [`canCopyAudioTrack()`](/docs/webcodecs/can-copy-audio-track) APIs.

```tsx twoslash title="Using the canCopyVideoTrack() API"
// @module: es2022
Expand Down Expand Up @@ -119,7 +119,7 @@ await convertMedia({

## Checking if a track can be re-encoded

To check if it is possible to return `{"type": "reencode"}`, you can use the [`canReencodeVideoTrack()`](/docs/webcodecs/convert-media#canreencodevideotrack) and [`canReencodeAudioTrack()`](/docs/webcodecs/convert-media#canreencodeaudiotrack) APIs.
To check if it is possible to return `{"type": "reencode"}`, you can use the [`canReencodeVideoTrack()`](/docs/webcodecs/can-reencode-video-track) and [`canReencodeAudioTrack()`](/docs/webcodecs/can-reencode-audio-track) APIs.

```tsx twoslash title="Using the canReencodeVideoTrack() API"
// @module: es2022
Expand Down
Loading