It would be convenient if it were possible to add not only sdp to video, but also to audio
for example:
const connectionConfig = {
maxVideoBitrate: 5000,
sdp: {
appendFmtp: {
video: `profile-level-id=4D0029;`,
audio: `stereo=1;maxaveragebitrate=128000;`
}
}
}
or for backward compatibility:
const connectionConfig = {
maxVideoBitrate: 5000,
sdp: {
appendFmtp: `profile-level-id=4D0029;`,
appendFmtpAudio: `stereo=1;maxaveragebitrate=128000;`
}
}
It would be convenient if it were possible to add not only sdp to video, but also to audio
for example:
or for backward compatibility: