Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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 src/content/docs/stream/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You cannot download the *exact* input file that you uploaded. However, depending

* By default, a video upload can be at most 30 GB.

* By default, you can have up to 120 videos in the `inprogress`, `queued` or `downloading` state at the same time. Videos in the `error`, `ready` or `pendingupload` state do not count toward this limit. If you need the concurrency limit raised, please [contact Cloudflare support](/support/contacting-cloudflare-support/) explaining your use case and why you would like the limit raised.
* By default, you can have up to 120 videos queued or being encoded simultaneously. Videos in the `ready` status are playable but may still be encoding certain quality levels until the `pctComplete` reaches 100. Videos in the `error`, `ready`, or `pendinguipload` state and do not count toward this limit. If you need the concurrency limit raised, please [contact Cloudflare support](/support/contacting-cloudflare-support/) explaining your use case and why you would like the limit raised.

:::note

Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/stream/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Storage is not consumed by:
- Deleted videos
- Downloadable files generated for [MP4 Downloads](/stream/viewing-videos/download-videos/)

Storage consumption is rounded up to the second of video duration. File size does not matter.
Storage consumption is rounded up to the second of video duration. File size does not matter. Video stored in Stream does not incur additional storage fees from other storage products like R2.

**If you run out of storage**, you will not be able to upload new videos or start new live streams until you purchase more storage or delete videos.
**If you run out of storage**, you will not be able to upload new videos or start new live streams until you purchase more storage or delete videos. Enterprise customers may continue to upload new content beyond their contracted quota without interruption.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this better suited as a note instead of leading with weighted text.


## Minutes of video delivered

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/stream/stream-live/start-stream-live.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ https://api.cloudflare.com/client/v4/accounts/{account_id}/stream/live_inputs

- The `timeoutSeconds` property specifies how long a live feed can be disconnected before it results in a new video being created.

The following four properties are nested under the `recoring` object.
The following four properties are nested under the `recording` object.

- `mode` string default: `off`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ INFO Created: https://api.cloudflare.com/client/v4/accounts/d467d4f0fcbcd9791b61

### Golang example

Before you begin, import a tus client such as [go-tus](https://github.com/eventials/go-tus) to upload from your Go applications.
Before you begin, import a tus client such as [go-tus](https://github.com/eventials/go-tus) to upload from your Go applications.

The `go-tus` library does not return the response headers to the calling function, which makes it difficult to read the video ID from the `stream-media-id` header. As a workaround, create a [Direct Creator Upload](/stream/uploading-videos/direct-creator-uploads/) link. That API response will include the TUS endpoint as well as the video ID. Setting a Creator ID is not required.

```go title="Upload with Golang"
package main
Expand Down
Loading