ClaudeCloudflare 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.

claudeenmodel: claude-sonnet-4-20250514

Cloudflare Stream Live Inputs Can Now Be Disabled and Enabled

Key Points

  • Live inputs can be disabled to reject incoming connections
  • API and Dashboard support for enable/disable operations
  • Existing inputs remain enabled by default

Summary

Cloudflare Stream now supports disabling and enabling live inputs, providing better control over RTMPS and SRT connections. When disabled, live inputs will reject all incoming broadcast attempts.

Key Points

  • Connection Control: Disabled live inputs reject RTMPS and SRT connections, causing broadcast attempts to fail
  • Use Cases: Temporarily pause inputs without deletion, programmatically end creator broadcasts, prevent new broadcasts on specific inputs
  • API Integration: Use PUT request to /accounts/{account_id}/stream/live_inputs/{input_id} with {"enabled": false} to disable
  • Dashboard Support: Enable/disable functionality available in both Live inputs list page and individual input detail pages
  • Backward Compatibility: All existing live inputs remain enabled by default

Full Translation

Translations

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

claudejamodel: claude-sonnet-4-20250514

Stream - ライブ入力の無効化と有効化が可能になりました

Stream - ライブ入力の無効化と有効化が可能になりました

2026年2月24日

ライブ入力を無効化して、RTMPSおよびSRT接続を拒否できるようになりました。ライブ入力が無効化されると、すべての配信試行は接続に失敗します。

これにより、ライブ入力をより詳細に制御できます:

  • 削除せずに一時的に入力を停止
  • プログラムによるクリエイター配信の終了
  • 特定の入力での新しい配信の開始を防止

API経由でライブ入力を無効化するには、enabledプロパティをfalseに設定します:

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}'

Dashboardのライブ入力一覧ページまたはライブ入力詳細ページからも、ライブ入力を無効化または有効化できます。

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

詳細については、ライブストリームの開始を参照してください。