admin管理员组文章数量:1350946
I'm trying to force my audio calls to mono-only, I'm willing to use PCMU, G.729, OPUS and SpeeX as my codecs for this calls.
Right now I'm using the following code to search for the chosen codec in my sdp message:
function maybePreferCodec(sdp, type, dir, codec) {
var str = type + ' ' + dir + ' codec';
if (codec === '') {
return sdp;
}
var sdpLines = sdp.split('\r\n');
// Search for m line.
var mLineIndex = findLine(sdpLines, 'm=', type);
if (mLineIndex === null) {
return sdp;
}
// If the codec is available, set it as the default in m line.
var codecIndex = findLine(sdpLines, 'a=rtpmap', codec);
console.log('codecIndex', codecIndex);
if (codecIndex) {
var payload = getCodecPayloadType(sdpLines[codecIndex]);
if (payload) {
sdpLines[mLineIndex] = setDefaultCodec(sdpLines[mLineIndex], payload);
}
}
sdp = sdpLines.join('\r\n');
return sdp;
}
The other functions can be found here:
.js__html
There are many other functions on the link but I don't know if they'll properly work on my selected codecs.
Thanks in advance!
I'm trying to force my audio calls to mono-only, I'm willing to use PCMU, G.729, OPUS and SpeeX as my codecs for this calls.
Right now I'm using the following code to search for the chosen codec in my sdp message:
function maybePreferCodec(sdp, type, dir, codec) {
var str = type + ' ' + dir + ' codec';
if (codec === '') {
return sdp;
}
var sdpLines = sdp.split('\r\n');
// Search for m line.
var mLineIndex = findLine(sdpLines, 'm=', type);
if (mLineIndex === null) {
return sdp;
}
// If the codec is available, set it as the default in m line.
var codecIndex = findLine(sdpLines, 'a=rtpmap', codec);
console.log('codecIndex', codecIndex);
if (codecIndex) {
var payload = getCodecPayloadType(sdpLines[codecIndex]);
if (payload) {
sdpLines[mLineIndex] = setDefaultCodec(sdpLines[mLineIndex], payload);
}
}
sdp = sdpLines.join('\r\n');
return sdp;
}
The other functions can be found here:
http://www.codeforge./read/252733/sdputils.js__html
There are many other functions on the link but I don't know if they'll properly work on my selected codecs.
Thanks in advance!
Share Improve this question asked Feb 8, 2017 at 16:57 Alejandro AlhamaAlejandro Alhama 551 silver badge6 bronze badges2 Answers
Reset to default 8For audio, the format of "a=rtpmap" lines is:
a=rtpmap:<payload type> <encoding name>/<clock rate>[/<number of channels>]
For example:
a=rtpmap:111 opus/48000/2
So, you can scan for those lines, and remove any codec with 2 channels. Note that to remove a codec, you'll also need to remove the payload type (in this case, 111) from the "m=" line, and remove "a=fmtp" lines for it. I believe sdputils.js has code to do this sort of thing.
Opus is a bit of a special case though, because it always appears as having 2 channels, which allows it to switch between mono and stereo in-band without doing a new offer/answer. So with Opus, stereo vs. mono preference is indicated by a "stereo" parameter which is set to 0 or 1:
a=fmtp:111 stereo=0
You can use https://github./beradrian/sdpparser and then modify the entire SDP payload as a JSON object. Disclaimer: I'm the author of sdpparser.
本文标签: javascriptHow to control monostereo in WebRTC audio callStack Overflow
版权声明:本文标题:javascript - How to control monostereo in WebRTC audio call? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743886311a2556121.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论