title | ms.author | author | manager | ms.topic | ms.service | ms.reviewer | ms.date | audience | ms.localizationpriority | search.appverid | ms.collection | appliesto | f1.keywords | ms.custom | description | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Manage RTMP-In for Teams meetings, webinars, and town halls |
wlibebe |
wlibebe |
pamgreen |
how-to |
msteams |
srajay |
3/28/2025 |
admin |
medium |
MET150 |
|
|
|
|
Learn to set up RTMP-In for Teams meetings for admins. |
APPLIES TO: Meetings
Webinars
Town halls
[!INCLUDETeams Premium]
RTMP-In allows meeting, webinar, and town hall organizers to produce their meetings and events directly from an external hardware or software-based encoder using Real-Time Messaging Protocol (RTMP). To learn more about how organizers use RTMP-In, see Use RTMP-In in Microsoft Teams.
Note
RTMP-In is a Teams Premium feature for all meeting and event formats, except town halls.
As an admin, you can use meeting policies to turn on RTMP-In for meeting and event organizers. Organizers with this policy can access the RTMP link and key needed to start streaming from the encoder through their Meeting options. To learn more about encoders, see Using an encoder for live event streaming with Microsoft Teams.
The incoming RTMP feed must deliver:
- H.264 Advanced Video Coding (AVC)
- Constant Bitrate (CBR)
- Frame rate of 29.97 fps or 30 fps
- Square Pixel Aspect Ratio (PAR)
As part of the network connectivity principles, make sure that the Microsoft 365 endpoints are reachable as defined in Office 365 URLs and IP address ranges. Verify that you also have the following domains/ports:
Domains: *.rtmpingest.mcr.teams.microsoft.com
Ports: 1935/1936 (for RTMP/RTMPS)
- Open the Teams admin center.
- Expand Meetings from the navigation pane.
- Under Meetings, select Meeting Policies.
- Either select an existing policy or create a new one.
- Navigate to the Audio & Video section.
- For Allowed streaming media input, select or deselect RTMP from the dropdown.
- Select Save.
To manage whether organizers can use RTMP-In, use the -AllowedStreamingMediaInput
parameter within the PowerShell CsTeamsMeetingPolicy cmdlet.
To turn on RTMP-In for organizers with this policy, use the following script:
Set-CsTeamsMeetingPolicy -Identity <policy name> -AllowedStreamingMediaInput "RTMP"
To turn off RTMP-In for organizers with this policy, use a null value with -AllowedStreamingMediaInput
. For example:
Set-CsTeamsMeetingPolicy -Identity Global -AllowedStreamingMediaInput ""
To view the current status of RTMP-In for a meeting policy, use the following script:
Get-CsTeamsMeetingPolicy -Identity <policy name>|fl AllowedStreamingMediaInput
To view the list of platforms that support this feature, see Microsoft Teams Premium - Overview for admins.