OpenAICloudflare Developer PlatformFeb 24, 2026, 12:00 AM

Stream - Stream live inputs can now be disabled and enabled

A condensed section focused on the key takeaways first.

Original Post

Quick Digest

Summary

A condensed section focused on the key takeaways first.

openaienmodel: gpt-5-mini-2025-08-07

Stream - Stream live inputs can now be disabled and enabled

Key Points

  • Disable/enable live inputs
  • Reject RTMPS and SRT connections
  • API and Dashboard controls

Summary

Cloudflare Stream now supports disabling and enabling live inputs. When a live input is disabled, incoming RTMPS and SRT connections are rejected and broadcast attempts will fail to connect. This lets you temporarily pause inputs without deleting them, programmatically end creator broadcasts, or prevent new broadcasts on a specific input.

Key Points

  • Behavior: Disabled inputs reject RTMPS and SRT connections; existing inputs remain enabled by default.
  • Use cases: pause an input, stop a creator broadcast, or block new broadcasts on an input.
  • API: set the enabled property to false on the live input resource.

Example curl (disable input):

curl --request PUT \
  "https://api.cloudflare.com/client/v4/accounts/{account_id}/stream/live_inputs/{input_id}" \
  --header "Authorization: Bearer <API_TOKEN>" \
  --header "Content-Type: application/json" \
  --data '{"enabled": false}'
  • Dashboard: you can also disable/enable inputs from the Live inputs list or the live input detail page.
  • See the "Start a live stream" documentation for full live input details and workflows.

Full Translation

Translations

A translation section that keeps the flow of the original article.

openaijamodel: gpt-5-mini-2025-08-07

Stream — ライブ入力を無効化および有効化できるようになりました

Stream — ライブ入力を無効化および有効化できるようになりました

公開日: 2026-02-24

概要

RTMPS と SRT の着信接続を拒否するために、ライブ入力を無効化できるようになりました。無効化されたライブ入力では、放送の接続が失敗します。これにより、ライブ入力をより細かく制御できます:

  • 入力を削除せずに一時停止する
  • プログラムからクリエイターの放送を終了させる
  • 特定の入力で新しい放送が開始されるのを防ぐ

API での無効化

ターミナルから API を使ってライブ入力を無効化するには、enabled プロパティを false に設定します:

Terminal window
curl --request PUT https://api.cloudflare.com/client/v4/accounts/{account_id}/stream/live_inputs/{input_id} --header "Authorization: Bearer <API_TOKEN>" --data '{"enabled": false}'

ライブ入力を有効化する場合は、enabled を true に設定してください。

ダッシュボードでの操作

Live inputs リストページまたはライブ入力の詳細ページから、ライブ入力を無効化/有効化できます。

デフォルトの動作

既存のすべてのライブ入力はデフォルトで有効のままです。

詳細

詳細は Start a live stream を参照してください。

Stream - Stream live inputs can now be disabled and enabled | Cloudflare Developer Platform | DocsDigest