Stream Real-time Video: RTMP

Receive video streams optimized for human consumption via RTMP.

Recall supports streaming video at 720p and 30fps via RTMP. This is particularly useful for broadcasting video for human consumption outside of the video conference itself, such as directly in your app.

To stream video to an RTMP endpoint, simply provide an RTMP or RTMPS URL in the real_time_media.rtmp_destination_url when calling Create Bot:

curl --request POST \
     --url https://us-east-1.recall.ai/api/v1/bot/ \
     --header 'Authorization: {RECALLAI_API_KEY}' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "real_time_media": {
    "rtmp_destination_url": "rtmps://your-app.com/api/..."
  }
}
'