You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Stream Website Container
1
+
# Stream Webpage Container
2
2
3
-
A containerized application to stream a webpage live over RTMP. Just pass a `WEBSITE_URL` and a `RTMP_URL` and the container will open a browser, capture the video and audio, and send it to the specified location. It can even be configured to automatically restart the stream for supported services.
3
+
A containerized application to stream a webpage live over RTMP. Just pass a `WEBPAGE_URL` and a `RTMP_URL` and the container will open a browser, capture the video and audio, and send it to the specified location. It can even be configured to automatically restart the stream for supported services.
4
4
5
5
## Uses
6
6
@@ -40,13 +40,13 @@ You can then use a program like VLC to view the stream to ensure it works (use `
40
40
41
41
```bash
42
42
# Build the image
43
-
docker build -t stream-website.
43
+
docker build -t stream-webpage.
44
44
45
45
# Run the container
46
-
docker run -e WEBSITE_URL="https://example.com" \
46
+
docker run -e WEBPAGE_URL="https://example.com" \
47
47
-e RTMP_URL="rtmp://your-server/live/stream" \
48
48
-e RESOLUTION="1080p" \
49
-
stream-website
49
+
stream-webpage
50
50
```
51
51
52
52
> [!WARNING]
@@ -122,10 +122,10 @@ To enable status checking for Twitch, provide a `TWITCH_CHANNEL`, `TWITCH_CLIENT
122
122
- Twitch Client ID obtained from the [Twitch Developer Console](https://dev.twitch.tv/console) for checking stream status if the `TWITCH_CHANNEL` environmental variable is set.
123
123
- Checking for the stream status on Twitch will not work without this and `TWITCH_CLIENT_ID` being set.
124
124
- For more information about registering an app on Twitch, see [the developer documentation](https://dev.twitch.tv/docs/authentication/register-app/).
0 commit comments