- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
speex 语音编码库的完整示例代码
这是一篇很早前发布在自己 baidu 博客上的文章,转载
过来
这是 speex-manual 里面的第一个例子。它分为两部分,第
一部分从音频设备读取声音然后编码保存成文件。
第二部分读取文件并解码,然后送入播放器播放。
注意的是其中对 packet 大小的处理。 编码器必须告诉解码器
编码时每一个包的长度才可以成功解码
This section shows sample code for encoding and
decoding speech using the Speex API. The commands
can be used to encode
and decode a ?le by calling:
% sampleenc in_file.sw | sampledec out_file.sw
where both ?les are raw (no header) ?les encoded at 16
bits per sample (in the machine natural endianness).
A.1 sampleenc.c
sampleenc takes a raw 16 bits/sample ?le, encodes it and
outputs a Speex stream to stdout. Note that the packing
used is not
compatible with that of speexenc/speexdec.
Listing A.1: Source code for sampleenc
1 #include lt;speex/speex.hgt;
2 #include lt;stdio.hgt;
3
4 /*The frame size in hardcoded for this sample code but it
doesn ’t have to be*/
5 #define FRAME_SIZE 160
6 int main(int argc, char **argv)
7 {
8 char *inFile;
9 FILE *fin;
10 short in[FRAME_SIZE];
11 float input[FRAME_SIZE];
12 char cbits[200];
13 int nbBytes;
14 /*Holds the state of the encoder*/
15 void *state;
16 /*Holds bits so they can be read and written to by the
Speex routines*/
17 SpeexBits bits;
18 int i, tmp;
19
20 /*Create a new encoder state in narrowband mode*/
21 state = speex_encoder_init(amp;speex_nb_mode);
22
23 /*Set the quality to 8 (15 kbps)*/
24 tmp=8;
25 speex_encoder_ctl(state, SPEEX_SET_QUALITY,
amp;tmp);
26
27 inFile = argv[1];
28 fin = fopen(inFile, r);
29
30 /*Initialization of the structure that holds the bits*/
31 speex_bits_init(amp;bits);
32 while (1)
33 {
34 /*Read a 16 bits/sample audio frame*/
35 fread(in, sizeof(short), FRAME_SIZE, fin);
36 if (feof(fin))
37 break;
38 /*Copy the 16 bits values to float so Speex can work on
them*/
36A Sample code
39 for (i=0;ilt;FRAME_SIZE;i++)
40 input[i]=in[i];
41
42 /*Flush all the bits in the
您可能关注的文档
最近下载
- 销售提成结算单.docx VIP
- 2022年江苏徐州海关缉私分局警务辅助人员招聘5人考试备考试题及答案解析.docx VIP
- 理解马克思(南京大学)中国大学MOOC 慕课 章节测验 答案.pdf VIP
- 2023年中央财经大学公共课《思想道德基础与法律修养》科目期末试卷B(有答案).docx VIP
- 《公路技术状况评定标准》.pdf VIP
- 操作系统原理与Linux实践教程(申丰山)课后习题答案解析.docx VIP
- 公司收购股权转让法律尽职调查报告律师专业版.pdf
- 国家人民卫生出版社有限公司招聘笔试题库2025.pdf
- 下载仪表设备维护检修规程汇编.doc VIP
- 负压封闭引流技术(VSD)护理PPT课件.pptx VIP
原创力文档


文档评论(0)