Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
APPLIES TO: Meetings
Webinars
Town halls
Some features described in this article require Teams 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)
RTMP ingest endpoints
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)
Manage whether organizers can use RTMP-In with the Teams admin center
- 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.
Manage whether organizers can use RTMP-In with PowerShell
To manage whether organizers can use RTMP-In, use the -AllowedStreamingMediaInput
parameter within the PowerShell CsTeamsMeetingPolicy cmdlet.
Turn on RTMP-In
To turn on RTMP-In for organizers with this policy, use the following script:
Set-CsTeamsMeetingPolicy -Identity <policy name> -AllowedStreamingMediaInput "RTMP"
Turn off RTMP-In
To turn off RTMP-In for organizers with this policy, use a null value with -AllowedStreamingMediaInput
. For example:
Set-CsTeamsMeetingPolicy -Identity Global -AllowedStreamingMediaInput ""
View the RTMP-In status for a policy
To view the current status of RTMP-In for a meeting policy, use the following script:
Get-CsTeamsMeetingPolicy -Identity <policy name>|fl AllowedStreamingMediaInput
Platform support
To view the list of platforms that support this feature, see Microsoft Teams Premium - Overview for admins.