需要特定格式的 GSM 编解码器规范
- gsm编解码器的默认编码帧大小是多少?
- 默认解码帧大小是多少?
- 媒体的属性是什么?
- 编解码器 ID 是什么?
例如,G729 的相同问题的答案分别是 20、160、“fmtp:18annexb=no”和 18。我正在开发一款软件电话,我想向其中添加 gsm 编解码器。
有什么帮助吗?
- What is the default encoded frame size of gsm codec?
- What is the default decoded frame size?
- What are the media attreibutes?
- What is the codec id?
For example same questions for G729's answers are 20, 160, "fmtp:18 annexb=no" and 18 respectively. I am working on a softphone and I want to add the gsm codec to it.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是您正在寻找的内容,来自 RFC 3551(音频和视频会议的 RTP 配置文件)最小控制) 部分 6:
因此您的 SDP 主体看起来会去掉无聊的部分,如下所示:
仅用于 GSM 连接。
This could be what you're looking for, from RFC 3551 (RTP Profile for Audio and Video Conferences with Minimal Control) in section 6:
so your SDP body will look, with the boring bits cut away, like this:
for a GSM-only connection.
实际上SDP应该更好地看起来像这样:
v=0
o=alice 2890844526 2890844526 在 IP4 主机.atlanta.example.com
s=
c=IN IP4 主机.atlanta.example.com
t=0 0
m=音频 49170 RTP/AVP 3
a=rtpmap:3 GSM/8000/1
编码长度为
33字节
,解码长度为320字节,相当于160个PCM帧
。Actually SDP should better look like this:
v=0
o=alice 2890844526 2890844526 IN IP4 host.atlanta.example.com
s=
c=IN IP4 host.atlanta.example.com
t=0 0
m=audio 49170 RTP/AVP 3
a=rtpmap:3 GSM/8000/1
And encoded length is
33 in bytes
and decoded lenght is320 bytes which equals to 160 PCM frames
.