Real-time Video: RTMP
Currently RTMP only supports a single, mixed video/audio.
Provide an RTMP 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/..."
}
}
'
Your RTMP destination URL should have the following format:
rtmp://hostname[:port]/{APPLICATION-NAME}/{STREAM-KEY}
Updated 9 days ago