Producer Guide

Buzz Live — Complete Producer Reference

Everything you need to go live, run your production desk, monetize your stream, and deliver a killer replay experience.

1. Getting Started Start Here

Buzz Live is a browser-native live streaming control room built for creators, producers, and community broadcasters. No OBS required — go live from any laptop or phone.

2. Going Live

Your room is live the moment you create it. The viewer page shows your stream embed, chat, and any overlays you push.

Room URL

Public viewer page. No login required to watch.

Chat

Real-time Socket.IO chat. Viewers comment, you respond live.

Stream Embed

Embed via Streamyard, Restream, Riverside, or direct RTMP URL.

After Party

Post-stream hangout at /live/<slug>/after-party

3. The Producer Desk

Your full control room lives at your manage URL. All tools below require the manage token.

https://itsbuzzing.com/live/<slug>/manage?manage=<token>

Session Markers

Tag key moments during the live stream. Markers are saved to the database and visible in your post-stream inbox for clipping and AI processing.

Highlight

Best moments worth clipping.

Clip

Trigger BuzzClip processing.

Sponsor

Tag a sponsored moment for recap report.

Key Moment

Critical statement or announcement.

Reaction

High-engagement audience moment.

POST /live/<slug>/manage/marker
{ "manage": "<token>", "marker_type": "highlight", "note": "Guest drops the news" }

Real-Time Overlay Events

Push sponsor cards, announcements, and polls instantly to all live viewers via Socket.IO. Fires immediately — no scheduling needed.

POST /live/<slug>/manage/overlay-event
{ "manage": "<token>", "event_type": "sponsor_cta", "title": "BuzzCard Pro", "body": "...", "cta_url": "..." }
Tip: Use overlay-event for live viewers and timed cues (below) for replay viewers. Run both for full coverage.

Timed Replay Overlays New

Schedule overlays that fire at specific timestamps during replay playback. Persisted in the database — every future viewer at that timestamp sees the overlay, forever.

POST /live/<slug>/manage/overlay-cue
{ "manage": "<token>", "trigger_at_seconds": 90, "event_type": "sponsor_cta", "title": "...", "body": "...", "cta_url": "..." }

BuzzClip

Clip the current moment for a shareable highlight. Clips are linked to the room and accessible in your BuzzClip dashboard.

POST /live/<slug>/manage/clip

Post-Stream Inbox

After your stream ends, Buzz Live runs an AI pipeline that generates a summary, newsletter copy, and a sponsor recap. View results at:

https://itsbuzzing.com/live/<slug>/post-stream?manage=<token>
4. Timed Overlay Cues — Step by Step New Feature

The most powerful new producer tool. Schedule overlays that fire automatically at exact timestamps during replay playback — monetize your VOD content the same way you monetize live.

How to Schedule a Cue

  1. 1
    Open your Producer Desk at your manage URL. Scroll to Schedule Timed Cues (Replay) section.
  2. 2
    Enter the timestamp in MM:SS format. Example: 01:30 = 90 seconds into the replay.
  3. 3
    Select a cue type from the dropdown (sponsor_cta, announcement, goal_update, reaction_pulse).
  4. 4
    Enter title (max 80 chars), body text (max 200 chars), and optional CTA text + URL.
  5. 5
    Click Submit. The cue is saved to the database and appears in the live cue list below the form.
  6. 6
    All future replay viewers will see the overlay at that exact timestamp.

What Viewers See

When a viewer watches the replay and the video reaches your configured timestamp (within a 1-second window), the overlay card appears over the player. It shows the title, body text, and a CTA button if a URL was provided. The overlay dismisses automatically after the configured duration (5–60 seconds). The viewer can also dismiss it early.

Key behavior: Cues fire once per session. If the viewer seeks backward and replays the same timestamp, the overlay does not fire again (tracked by session Set). Refreshing the page resets the tracking.

Cue Types

Type Best For Example
sponsor_cta Brand sponsor cards, product links, affiliate offers "Shop the collection — limited time 20% off"
announcement Key moments, calls to action, resource links "Download the free guide mentioned at this moment"
goal_update Fundraiser milestones, ticket counts, challenge progress "We hit $10K raised at this point in the stream!"
reaction_pulse Engagement prompts, poll links, community moments "Comment your answer below — we read them all"

Timeline Marker Bar (Iframe Fallback)

If the replay uses an iframe player (e.g., Streamyard VOD embed), the native video timeupdate event is unavailable. In this case, a horizontal timeline bar is rendered below the player. Each cue appears as a color-coded tick mark at its proportional position. Clicking a tick fires the overlay manually.

API Reference

# Schedule a cue (producer only)
POST /live/<slug>/manage/overlay-cue
Content-Type: application/json

{
"manage": "<token>",
"trigger_at_seconds": 90,
"event_type": "sponsor_cta",
"title": "BuzzCard Pro",
"body": "Get your digital business card today.",
"cta_text": "Learn More",
"cta_url": "https://itsbuzzing.com/buzzcard/landing",
"duration_seconds": 15
}

# Fetch all cues for a room (public)
GET /live/<slug>/overlay-cues
5. After Party

Keep the conversation going after the stream ends. The After Party room is a persistent discussion space accessible at:

https://itsbuzzing.com/live/<slug>/after-party

Share the after-party link in your stream ending slide. Viewers who want to keep chatting, ask follow-up questions, or network with other community members can continue there without a replay interruption.

6. Replay

Replays are automatic. Once the stream ends, viewers can access the recording at:

https://itsbuzzing.com/live/<slug>/replay

Any timed overlay cues you scheduled fire automatically during replay. The page fetches cues from the API on load and uses the video timeupdate event to fire them at the configured timestamps.

Pro tip: Add your best cues within the first 5 minutes of the replay. Most viewers who click away do so before the 10-minute mark — early cues have the highest engagement rate.
7. Producer Team

Invite co-producers to help manage your stream. Co-producers get full Producer Desk access (markers, overlays, timed cues, BuzzClip) but cannot end the room or revoke other producers.

8. Producer Tips
Share This Guide
Scan to open the Buzz Live Producer Guide on any device.
itsbuzzing.com/help/buzz-live-producer-guide