What parameters need to be configured to be able to start stream to custom rtmp link
api.executeCommand('startRecording', {
mode: string //recording mode, either `file` or `stream`.
dropboxToken: string, //dropbox oauth2 token.
shouldShare: boolean, //whether the recording should be shared with the participants or not. Only applies to certain jitsi meet deploys.
rtmpStreamKey: string, //the RTMP stream key.
rtmpBroadcastID: string, //the RTMP broadcast ID.
youtubeStreamKey: string, //the youtube stream key.
youtubeBroadcastID: string //the youtube broacast ID.
});
this is the documentation but when i set youtubeStreamKey with my “rtmp://custom-endpoint” jibri logs says that ffmpeg trying to start stream with link rtmp://a.rtmp.youtube.com/live2/{custom rtmp endpoint}
If i execute command with rtmpStreamKey only, error “missing youtube stream key” appears.