General
I see commands using -broadcaster but my docs say -gateway. Which is correct?
I see commands using -broadcaster but my docs say -gateway. Which is correct?
-gateway. The Livepeer Gateway was previously called the Livepeer Broadcaster, and the old flag name appears throughout community guides, forum threads, and Docker Compose examples written before the rename.livepeer_cli tool and some log output still display “Broadcaster” in places that have not been updated. This is cosmetic — the underlying behaviour is unchanged.Do I need ETH or LPT to run a gateway?
Do I need ETH or LPT to run a gateway?
| Gateway type | ETH needed | LPT needed |
|---|---|---|
| Video gateway (on-chain) | Yes | No |
| AI gateway (off-chain) | No | No |
| Dual gateway | Yes | No |
| Clearinghouse-backed | No | No |
How do I keep a record of my node's logs?
How do I keep a record of my node's logs?
livepeer sends logs only to stdout. Pipe to both stdout and a file using tee:Can I run a gateway from home?
Can I run a gateway from home?
- If you are accepting inbound RTMP streams, port 1935 must be publicly accessible.
- If you are only pushing streams outward (e.g. re-encoding your own content), NAT is less of a concern.
- For orchestrator discovery via the Livepeer network, your gateway needs to be publicly reachable at the address it registers.
Is there a marketplace showing all gateway offerings?
Is there a marketplace showing all gateway offerings?
Video Gateway
What is -maxPricePerUnit and why doesn't it match what I'm paying?
What is -maxPricePerUnit and why doesn't it match what I'm paying?
-maxPricePerUnit sets the maximum price your gateway pays orchestrators per pixel processed — it is not a price you charge your customers.The unit is wei per pixel (not ETH). Common starting values:| Flag | Value | Meaning |
|---|---|---|
-maxPricePerUnit | 300 | Maximum 300 wei per pixel |
-pixelsPerUnit | 1 | Per 1 pixel |
300 with -pixelsPerUnit 1.The price you charge your customers (if running a commercial gateway service) is entirely separate and managed by your own application layer. See Pricing Strategy.What ports does the video gateway use?
What ports does the video gateway use?
| Port | Purpose | Configurable with |
|---|---|---|
8935 | HTTP gateway API and transcoding jobs | -httpAddr |
1935 | RTMP stream ingest | -rtmpAddr |
5935 | CLI management API | -cliAddr |
How do I check my ETH deposit and reserve balance?
How do I check my ETH deposit and reserve balance?
I bridged ETH to Arbitrum but my balance shows zero.
I bridged ETH to Arbitrum but my balance shows zero.
livepeer_cli after the bridge confirms.How does transcoding pricing work? Who sets it?
How does transcoding pricing work? Who sets it?
-maxPricePerUnit is the ceiling you are willing to pay — any orchestrator advertising below your cap is eligible to receive your jobs.Orchestrators may adjust their prices automatically based on gas costs on Arbitrum (the autoAdjustPrice behaviour). During high-gas periods, orchestrator prices rise — you may need to raise -maxPricePerUnit temporarily to keep jobs routing.There is no protocol-fixed price. The market price emerges from supply (orchestrators) and demand (gateways) with the gateway’s maxPrice acting as the ceiling.AI Gateway
The AI gateway binary doesn't work on Windows. Why?
The AI gateway binary doesn't work on Windows. Why?
Do I need ETH or LPT to run an AI gateway?
Do I need ETH or LPT to run an AI gateway?
- No ticket-based payment system
- No Arbitrum RPC required
- No
-networkflag needed - Orchestrator payment is managed separately (your arrangement with the orchestrator)
What ports does the AI gateway use?
What ports does the AI gateway use?
| Port | Purpose | Configurable with |
|---|---|---|
8935 | HTTP API (video and AI share the same port) | -httpAddr |
5935 | CLI management API | -cliAddr |
-httpAddr port (default 8935). The -httpIngest flag enables AI pipeline endpoints (/text-to-image, /llm, etc.) on this port. To run separate video and AI Gateway processes on the same machine, set different -httpAddr values for each.How do I find which AI models and pipelines are available?
How do I find which AI models and pipelines are available?
Can gateway operators add custom AI inference endpoints or pipelines?
Can gateway operators add custom AI inference endpoints or pipelines?
External Resources
The following external resources are useful reference points for pricing, network economics, and AI subnet context.| Resource | Link | What it covers |
|---|---|---|
| Livepeer Docs — Set Pricing | docs.livepeer.org | How orchestrators set per-pixel pricing, auto-adjustment |
| Livepeer Studio Pricing | livepeer.studio/pricing | Example commercial gateway pricing tiers |
| Livepeer Whitepaper | GitHub Wiki | Protocol-level economic model (foundational) |
| TokenTerminal — Livepeer Fees | tokenterminal.com | Network fees and usage-based revenue |
| Figment — Transcoding Fees Primer | medium.com | Clear per-pixel pricing explanation |
| Livepeer Pricing Tool | GitHub | Community tool for observing network pricing |