DEV Community

Super Funicular
Super Funicular

Posted on

YouTube Live Now Streams Horizontal + Vertical at the Same Time — How an Old Android Phone Becomes a 24/7 Dual-Format Camera

YouTube quietly shipped one of the biggest livestreaming changes in years this May: creators can now go live in horizontal and vertical formats simultaneously, from a single source, with a unified chat. The portrait version is auto-cropped from the center of your horizontal feed and routed straight into the Shorts surface, while the landscape version stays on your main channel. (YouTube Help — vertical live streams, Streamlabs guide)

If you've ever tried to reach both the traditional YouTube audience and the Shorts feed at the same time, you know the old answer involved running two encoders, a multistream relay, or paid software like Meld Studio or Restream. That tax is gone. For developers building anything that pushes RTMP into YouTube, this is a meaningful shift — and for anyone using a phone as a camera, it changes what your hardware can do.

What actually changed

Before this update, a YouTube Live stream was either landscape or portrait. If you wanted both, you ran two parallel streams, paid for a multistream service, or stitched together a Studio-side workflow that re-encoded the feed.

Now, when you set up a live event in YouTube's live control room, you can enable dual output. YouTube takes your single RTMP ingest, displays it as your normal horizontal stream on the channel page, and auto-generates a vertical crop that appears in the YouTube Shorts feed. Both feeds share a single chat, a single concurrency count, and a single set of analytics.

There are some caveats worth knowing:

  • The vertical crop is center-weighted. Anything important (faces, text, key motion) needs to live in the middle ~9:16 column of your horizontal frame, or it'll fall off the Shorts version.
  • The Shorts surface still has its own discovery rules — you don't bypass them by running dual format. You just stop having to re-upload clips.
  • YouTube will additionally identify "key moments" from your live stream and turn them into ready-to-share Shorts after the broadcast ends, which compounds the reach effect.

The net result: one stream, two distribution surfaces, zero additional encoder load on your end.

Why this matters for mobile streamers

For desktop streamers running OBS on a beefy machine, this is a nice convenience. For mobile streamers — anyone using a phone as the camera — it's a bigger deal, because mobile RTMP encoders have historically been the weakest link in a multi-format workflow.

A phone has limited thermal headroom. Asking it to encode two video streams at different aspect ratios simultaneously is the kind of thing that turns a livestream into a slideshow after twenty minutes. The new YouTube workflow moves the second encode (the vertical crop) server-side, which means the phone only has to encode one stream. The Shorts version comes for free.

That has a specific consequence: a single phone, plugged in and pointed at something interesting, can now feed two YouTube audiences continuously. A backyard bird feeder. A workshop bench. A puppy. A storefront. A 24-hour ambient stream. The hardware doesn't have to change. The streaming app doesn't even have to know about the vertical format — YouTube handles the crop.

The friction this removes

To appreciate the change, look at what the multi-format workflow used to require:

  1. A phone running a mobile encoder (Larix, Streamlabs Mobile, or similar)
  2. A way to RTMP into something that could split and re-encode (Restream, Meld Studio, a self-hosted nginx-rtmp)
  3. Two YouTube destinations configured, one landscape and one portrait
  4. Aspect-ratio handling on the encoder side, with all the cropping math
  5. Two chats to monitor, two analytics dashboards, two thumbnails

That's a real setup. It's the kind of thing that takes a weekend to wire up and another weekend to debug. The new YouTube path collapses it to: configure one stream, check one box.

For indie developers building tools in this space, the implication is clear — the hard differentiator is no longer "do you support multistream?" It's "are you a reliable single-ingest RTMP source that runs unattended for days?"

Where a phone-as-camera setup fits in

This is the angle that pulled me into writing this piece. I build Background Camera RemoteStream — an Android app that turns a phone into a camera that records and live-streams with the screen off, locally, with no cloud account required. It has built-in YouTube Live support, so you can point a phone at something, lock the screen, and have it streaming for as long as the battery (or a USB cable) lasts.

The dual-format YouTube update changes what that workflow is good for. A few weeks ago, a phone-as-camera setup got you one audience: people who happened to find your horizontal stream. Today, the same setup — same phone, same RTMP key, same lock-screen behavior — also feeds the Shorts surface. The discovery profile of an always-on stream just doubled, and the encoder load did not.

That's a real product change that doesn't require any code on the app side. The thing that matters is reliability of the single ingest: does the phone keep streaming through screen-off, network blips, and the inevitable Android Doze-mode tantrums? If yes, the new YouTube workflow is free upside.

A practical setup (under five minutes)

If you want to try this with a phone you already own:

  1. Install Background Camera RemoteStream from Google Play.
  2. In the app, create a YouTube Live stream and paste the RTMP key. The app supports both screen-off recording and direct YouTube Live ingest, so you don't need a separate encoder.
  3. In YouTube's live control room (on a desktop browser, ahead of time), enable dual horizontal + vertical output for the same live event.
  4. Frame your shot center-weighted — assume a vertical 9:16 column down the middle is what Shorts viewers will see.
  5. Lock the phone. The stream keeps running with the screen off; YouTube does the rest.

You now have one phone serving two YouTube surfaces continuously, with no second device, no laptop, and no monthly subscription to a multistream service.

The privacy footnote

One thing I keep coming back to with this whole category: most "phone as camera" apps in 2026 push your feed through their own cloud as a default. That's how they monetize, and it's why the Play Store reviews for the big-name competitors are full of complaints about subscriptions, account requirements, and "why is my camera asking for my email."

Background Camera RemoteStream stores everything locally on the device. No cloud account. No remote server in the loop unless you explicitly point it at YouTube Live (or another RTMP endpoint you control). No tracking, no telemetry, no off-device storage. The new YouTube dual-format feature works regardless, because the only thing leaving the device is the RTMP stream you configured.

If you're building anything that touches camera + privacy + livestreaming, the takeaway is: the user-side trust posture matters more than ever. YouTube just made the distribution side easier. The hard problem now is whether users trust the camera in their hand.

Closing

YouTube's dual-format livestreaming is one of those updates that sounds like a feature footnote and is actually a structural change. It removes a friction point that has been gating phone-as-camera setups from reaching the Shorts audience for years. The hardware you already own can now do more, without changing.

If you want to try the phone-as-camera side of this workflow, Background Camera RemoteStream is on Google Play. More about the project at superfunicular.com.

Sources:

Top comments (0)