Skip to content

Commit fbdc226

Browse files
tsmith512third774dcpena
authored
[Stream] Misc updates from product team (#18421)
* [Stream] Typo * [Stream] Stream doesn't bill R2 * [Stream] Quota restriction clarification * [Stream] Include note about go-tus. Ref #11969 * [Stream] Clarification on concurrency limits * 🤦 Co-authored-by: Kevin Kipp <[email protected]> * Update src/content/docs/stream/pricing.mdx Co-authored-by: Kevin Kipp <[email protected]> * Update faq.mdx * Update src/content/docs/stream/faq.mdx Co-authored-by: Denise Peña <[email protected]> * Update src/content/docs/stream/pricing.mdx Co-authored-by: Denise Peña <[email protected]> * Because we do love a semicolon. * [Stream] Use a note to pull out the key pieces of this info on hard caps * [Stream] Note does not need a title --------- Co-authored-by: Kevin Kipp <[email protected]> Co-authored-by: Denise Peña <[email protected]>
1 parent e3f6178 commit fbdc226

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

src/content/docs/stream/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You cannot download the *exact* input file that you uploaded. However, depending
2525

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

28-
* 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.
28+
* 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 `pendingupload` state do not count toward this limit. If you need the concurrency limit raised, [contact Cloudflare support](/support/contacting-cloudflare-support/) explaining your use case and why you would like the limit raised.
2929

3030
:::note
3131

src/content/docs/stream/pricing.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,13 @@ Storage is not consumed by:
3131
- Deleted videos
3232
- Downloadable files generated for [MP4 Downloads](/stream/viewing-videos/download-videos/)
3333

34-
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.
34+
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 such as R2.
3535

36-
**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.
36+
:::note
37+
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.
38+
39+
Enterprise customers _may_ continue to upload new content beyond their contracted quota without interruption.
40+
:::
3741

3842
## Minutes of video delivered
3943

src/content/docs/stream/uploading-videos/resumable-uploads.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ INFO Created: https://api.cloudflare.com/client/v4/accounts/d467d4f0fcbcd9791b61
4040

4141
### Golang example
4242

43-
Before you begin, import a tus client such as [go-tus](https://github.com/eventials/go-tus) to upload from your Go applications.
43+
Before you begin, import a tus client such as [go-tus](https://github.com/eventials/go-tus) to upload from your Go applications.
44+
45+
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.
4446

4547
```go title="Upload with Golang"
4648
package main

0 commit comments

Comments
 (0)