Skip to content

Commit 01a0c44

Browse files
authored
Removed broken links (#21133)
1 parent fc7d9cc commit 01a0c44

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/docs/stream/webrtc-beta.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ Every live input has a unique URL that one creator can be stream to. This URL sh
4747

4848
Copy the URL from the `webRTC` key in the API response (see above), or directly from the [Cloudflare Dashboard](https://dash.cloudflare.com/?to=/:account/stream/inputs).
4949

50-
Paste this URL into the provided [WHIP example code](https://github.com/cloudflare/workers-sdk/blob/main/templates/stream/webrtc/src/whip.html#L13).
50+
Paste this URL into the example code.
5151

5252
```javascript title="Simplified example code" {4}
5353
// Add a <video> element to the HTML page this code runs in:
5454
// <video id="input-video" autoplay muted></video>
5555

56-
import WHIPClient from "./WHIPClient.js"; // an example WHIP client, see https://github.com/cloudflare/workers-sdk/blob/main/templates/stream/webrtc/src/WHIPClient.ts
56+
import WHIPClient from "./WHIPClient.js";
5757

5858
const url = "<WEBRTC_URL_FROM_YOUR_LIVE_INPUT>"; // add the webRTC URL from your live input here
5959
const videoElement = document.getElementById("input-video");
@@ -68,13 +68,13 @@ You can also use this URL with any client that supports the [WebRTC-HTTP ingesti
6868

6969
Copy the URL from the `webRTCPlayback` key in the API response (see above), or directly from the [Cloudflare Dashboard](https://dash.cloudflare.com/?to=/:account/stream/inputs). There are no limits on the number of concurrent viewers.
7070

71-
Paste this URL into the provided [WHEP example code](https://github.com/cloudflare/workers-sdk/blob/main/templates/stream/webrtc/src/whep.html#L13).
71+
Paste this URL into the example code.
7272

7373
```javascript title="Simplified example code" {4}
7474
// Add a <video> element to the HTML page this code runs in:
7575
// <video id="output-video" autoplay muted></video>
7676

77-
import WHEPClient from "./WHEPClient.js"; // an example WHEP client, see https://github.com/cloudflare/workers-sdk/blob/main/templates/stream/webrtc/src/WHEPClient.ts
77+
import WHEPClient from "./WHEPClient.js";
7878

7979
const url = "<WEBRTC_URL_FROM_YOUR_LIVE_INPUT>"; // add the webRTCPlayback URL from your live input here
8080
const videoElement = document.getElementById("output-video");
@@ -97,7 +97,7 @@ If you are building a native app, the example code above can run within a [WkWeb
9797

9898
## Supported WHIP and WHEP clients
9999

100-
Beyond the [example WHIP client](https://github.com/cloudflare/workers-sdk/blob/main/templates/stream/webrtc/src/WHIPClient.ts) and [example WHEP client](https://github.com/cloudflare/workers-sdk/blob/main/templates/stream/webrtc/src/WHEPClient.ts) used in the examples above, we have tested and confirmed that the following clients are compatible with Cloudflare Stream:
100+
Beyond the example WHIP client and example WHEP client used in the examples above, we have tested and confirmed that the following clients are compatible with Cloudflare Stream:
101101

102102
### WHIP
103103

0 commit comments

Comments
 (0)